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 Chris Miller 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: *

  • Users: manutektips
  • Order by date
  1. manutektips

    List files only in a directory

    Hi, Thanks for the information. Does "grep" function work in windows
  2. manutektips

    List files only in a directory

    Hi, How do I list the files ( and not directories) in a given path. I want to run a loop where I want to process file by file. I want to read the content of one file, check something, close the file, move on to next file until all the files are processed in that given directory. Please help
  3. manutektips

    How to make Not null field to Null

    Yes, The error message is : ORA-01451: column to be modified to NULL cannot be modified to NULL
  4. manutektips

    How to make Not null field to Null

    Hi, I have a field in a table which is NOT NULL now and the table has data. I tried to Alter the table to make this field NULL, but could not. Can anyone suggest a way to acheive this?
  5. manutektips

    Response.AppendHeader problem

    Hi, I have a problem with opening a gif image. The code is below: MyFileStream = New FileStream (strTreeFilePath,FileMode.Open) FileSize = MyFileStream.Length Dim Buffer(CInt(FileSize)) As Byte MyFileStream.Read(Buffer, 0, CInt(FileSize))...
  6. manutektips

    Call oracle prodecure from ms access 97

    Hi, I have an oracle prodecure which has 6 input parameters and 1 output parameter. The definition of the procedure is : CREATE OR REPLACE PROCEDURE terr_insert ( terrid IN NUMBER DEFAULT NULL, terrversion IN NUMBER DEFAULT NULL, terr IN VARCHAR2...
  7. manutektips

    ASP application - IIS Internal server error 500

    Hi, I am getting Internal server error when I tried to access ASP based application. The server is windows 2003. When I checked the event viewer, I could see the following message. Error: ASP will not serve requests because it could not perform the first request initialization.. Can somebody...
  8. manutektips

    MS access 97 to Oracle db connection

    Hi, I have an ms access 97 application which has linked tables to Oracle database. This ms access 97 application should run at a batch job in the night. Whenever it runs, when it tries to connect to the oracle database, the application prompts for the password. Though I have stored the userid...
  9. manutektips

    ODBC error

    Hi, I am getting this error when I tried to connect to Oracle 9i database from an asp application. The error is "Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_ENV failed ". The connection string I am using is...
  10. manutektips

    SQL server over flow error

    HI, I have a table where the PK of the table is defined as int datatype. It has now reached a stage where the PK value has reached 2147483647 and it is giving overflow error. Can you please suggest a way how to over come this. How to modify the datatype of this field so that it can accomodate...
  11. manutektips

    Changing user defined datatype definition

    HI, Is it possible to change the definition of a user defined datatype in SQL server 2000. I have defined a datatype called demail of varchar(50) and I want to change it to varchar(100). Please note that this datatype has been referrenced in many tables. Please suggest.

Part and Inventory Search

Back
Top