Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pmcmicha

    Creating an array from a method

    Seems the answer was to add static to the method.
  2. pmcmicha

    Creating an array from a method

    I am attempting to construct an array from a method, but I am receiving an error that the array must have an array size or array initializer. I thought the code below would do this, but it seems that C# is wanting more information up front, and I am not entirely sure what to give it. If I try...
  3. pmcmicha

    Connection issues with reservation software

    The location in question has a cable connection for their internet that serves a business and other users. The cable modem is connected to a RVS4000 Cisco Small Business Router. The router has been configured to separate the users from the business using VLANs. Everything on the user side...
  4. pmcmicha

    Wireless AP while segregating the LAN

    Here is the current setup of the system I work with: Internet comes in at one building where it is connected to a firewall and this goes to a point to point wireless device. That signal hits a second omnidirectional device where the signal is then transmitted to the final point to point device...
  5. pmcmicha

    Report Query

    I have a report in which it queries the database for information and runs IIf statement. This works without a problem, but when I go to create a new report and then try this same query, I get an #Error for the result. I tried a copy and paste of the statement, no luck. Looked up the #Error...
  6. pmcmicha

    Output Issue

    feherke and vacunita, Thanks for the responses, you were right in regards to the extension.
  7. pmcmicha

    Output Issue

    feherke, I was under the impression that php code could be embedded in html without a problem. 1) The file is being requested through a webserver. 2) I am using a hosting service. Yebohost. 3) Unknown. 4) Unix. 5) I am unable to login to the command line, but per the hosting provider, PHP is...
  8. pmcmicha

    Output Issue

    I am just starting with php, but I have been unable to find a solution. I have a simple html page with php. <html> <head> <style type="text/css"> @import url(file); </style> <title>Page</title> </head> <body> Text here. <hr> <?php echo "Hello World!"; ?> <hr> </body> </html> While...
  9. pmcmicha

    put password in script for ssh ...

    Why not do this instead? 1) Remove the group write permissions from the home directory. 2) Create a new dropoff directory for these archives. 3) Create the ssh keys as per the man page. 4) Script can now connect in a secure manner, the base home directory cannot be violated. As far as the...
  10. pmcmicha

    put password in script for ssh ...

    hokky, The server can still have a password. If you use ssh-keygen, this should solve your problem. If for some reason you cannot do this, even though it is more secure than putting a password inside a script, see below for an expect example. #!/usr/bin/expect spawn telnet expect "login: "...
  11. pmcmicha

    DB2 Tablespaces not matching

    I have two databases that exact mirrors of each other. All the tablespaces match, with the exception of the number of pages being used and the number of pages free. Database 1 reports having fewer free pages than Database 2. The tablespace state is fine, but I am unable to determine why this...
  12. pmcmicha

    Long tar extractions

    elgrandeperro, We have jobs that promote files to this permanent directory on a regular basis. Truss shows that the file is always removed and then replaced by tar during extraction. (Creating lots of I/O.) But what I cannot understand is why this problem does not always exist. Anytime they...
  13. pmcmicha

    Long tar extractions

    Issue: When unarchiving tar files on some of our servers, I am running into long extraction times for a paticular directory. There are about 1,000,000+ files in this directory all with 444 permission. This slice is about 200 GB. The servers are running Solaris 5.8 with 2 processers (@ 1200...
  14. pmcmicha

    db2 load w/ method option

    Recently the company I work for moved to supporting double byte characters in the UDB8.2 database. As the DB was already setup as (utf-8, codepage=1208) this was not much of an issue, but when we loaded our first test case, it failed. db2 "load from <DAT_FILE> of del modified by chardel~...
  15. pmcmicha

    Command line pattern matching

    I have some files that I want to pattern match on, but I cannot get it to work right. Test Files (0 byte touched files) Test_GroupUIDxxx_FILETYPE_SERVER_DATE_NO.tar Test_GroupUIDyyy_FILETYPE_SERVER_DATE_NO.tar Test_GroupUID_FILETYPE_SERVER_DATE_NO.tar...
  16. pmcmicha

    SQL command to replace value

    If the column that contains A is all alone then it is fairly easy: update TABLE1 set COL1='B' where COL1='A' If this is not the case, then I suggest trying a forum where SQL gurus reside.
  17. pmcmicha

    Problem with INDIRECT and Dynamic Lists

    I am attempting to reduce the amount of maintenance on a worksheet by making certain columns dynamic in regards to their named range. Then I wish to reference this from a couple of lists. Dynamic Named Range: TEST =INDIRECT("DATA!$A$2:$A"&ROW(OFFSET(DATA!$A$2,COUNTA(DATA!$A$2:$A$50)-1,0)))...
  18. pmcmicha

    Mso.dll crashing office 2003

    You may have a damaged user profile, you will need to login as the Administrator and correct the problem.
  19. pmcmicha

    uname output is &quot;-t&quot; in spite of HP-UX

    Not to sure about HP-UX since I don't have a machine handy, but it might be contained under /proc/version. If you have that file, do a cat on it and see what it says.
  20. pmcmicha

    Frusterating Problem

    Instead of using an excel file, why not create a view in the database that is accessed via a website? OS/software independent. Something to consider if this that important. Good luck.

Part and Inventory Search

Back
Top