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 John Tel 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: lydiattc
  • Content: Threads
  • Order by date
  1. lydiattc

    How to restart from the top when reading a file

    hi, I'm new to C#. I need to read through a file twice, and I wonder if I can reset the pointer without close and reopen the file. Any help will be appreciated! Lydia
  2. lydiattc

    How to format an integer such as 1 to a string "001"

    Hi, I need to format a dymanic integer into a string with length of 3. If the integer is 1 then the string is 001, if the integer is 999 then the string is 999. I'm not sure how to accomplish this. Can anyone help? Thanks a lot! Lydia
  3. lydiattc

    EXP error 942 Table or view does not exit on server?

    Hi, I'm doing an export on the server, Oracle 9.2.0.1.0. However, I received an error message like this: Table or view does not exist, ORA-error-942. Any idea what went wrong? Thanks, Lydia
  4. lydiattc

    Real-time-based triggers or procedures

    Can I setup a procedure or a trigger in Oracle9i so that it happens on a certain time interval, e.g. every hour or every day? If I can, how should I do it? Thanks, Lydia
  5. lydiattc

    Run an EXE file as a service?

    Hi, I have created an EXE file and I need it to run as a service on Win2000 server. I've tried scheduled tasks, but somehow it doesn't run as service. It always stops after a while. I didn't set any stop point in the task configuration. Does anybody know why this is happening? Is there any...
  6. lydiattc

    Carriage return from ASP page has problem with Oracle stored procedure

    Hi, I have some text boxes on an ASP page and there may be carriage returns in the text boxes. I tested them with regular in-line SQL statements and they work fine. However, if I turn the SQL statements into Oracle stored procedures, it will give me an error saying "Invalid SQL...
  7. lydiattc

    How to find SID

    Hi, I'm working on a server, on which an Oracle instance was already installed without a tnsname.ora file or a listener.ora file. I copied these two files from one of my development machines to this server. And of course, they cannot work without giving them the correct SID and Global_DBName...
  8. lydiattc

    error in updating a date

    Hi, Hope this is an easy one for most of you. I got the following error. Can you help me fix it? SQL> UPDATE EU_Setpoints SET Last_Update ='1-Aug-2003 5:05:31 PM' 2 WHERE Tag_ID=1; UPDATE EU_Setpoints SET Last_Update ='1-Aug-2003 5:05:31 PM' * ERROR at...
  9. lydiattc

    Cannot use migrated integer data as an integer for calculation

    Hi, I just finished migration from MSSQL2K to Oracle 9.2.0.1. I'm using ASP to access the database for information. After migration, all my comparison and calculations in ASP pages stopped working because of type mismatch. Apearantly, all integers that are migrated into Oracle are not...
  10. lydiattc

    Oracle 9i installation problem (ociw32.dll access denied)

    Hi, I'm trying to install Oracle 9.2.0.1 on Windows2000 server. The first attempt was successful. When we had to change the machine name, we deinstalled Oracle, changed the machine name and attempted to install it for the second time. In the middle of running the second installation disk, it...
  11. lydiattc

    change owner to multiple objects at the same time?

    Hi, I'm working on a legacy database and I need to change the owner of all the objects to some new user. How do I do it in a one-step procedure? I've trie to use the following "EXEC sp_changeobjectowner (select name from sysobjects), 'new_user'" However, the query analyzer won't...
  12. lydiattc

    Question about using Oracle Migration Workbench

    Hi, I'm very new to OMWB. Just installed it a couple days ago and tried to migrate a MSSQL database to Oracle. After the first time I ran it, it seemed to be successful, but I couldn't see any tables in the destination database using OEM. When I tried to run it the second time (or any time...
  13. lydiattc

    How to change default Max Length of Column name?

    Hi, I need to change the default Max Length of column name from 30 to 50. I tried to change it in sys.col$ table, but I got an error message saying "object necessary for warmstarting database cannot be altered." Does anybody know how to change it? Thanks, Lydia
  14. lydiattc

    [Oracle][ODBC][Ora]ORA-00972:identifier is too long?

    Hi, I got this error message when I tried to connect to Oracle from a midware software, which transfers data from OPC servers to SQL databases. According to the documentation of the middleware, there shouldn't be any problem of connecting to Oracle once the ODBC DSN is set up correctly. Of...
  15. lydiattc

    Another migration question: stored procedures from MSSQL to ORACLE

    Hi, I have more than 50 stored procedures that need to export to Oracle from SQL. I noticed the difference in syntax between MSSQL and Oracle. Is there a way to export stored procedures from MSSQL to ORacle without creating them again in Oracle? Thanks, Lydia
  16. lydiattc

    how to create dependency after table was created

    Hi, I have a set of tables imported from SQL Server to Oracle. During the import process, somehow the dependencies got lost. How do I create the dependencies when tables have already been created? Thanks, Tianle
  17. lydiattc

    Why do I get "table or view no exist" error, after export from MS-SQL

    Hi, I have exported one table from MS SQL server to Oracle 9.2.0.1 on XP. The table creation was successful shown by the Export Wizard in SQL server. When I view the table in Oracle's Enterprise Manager Console, it's there with all the data. However, when I query from SQL*PLUS, it gives me a...

Part and Inventory Search

Back
Top