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

  • Users: Kavy
  • Order by date
  1. Kavy

    processes parameter

    Hi! Are u using Parallel Server, if yes, then check the parameter : PARALLEL_MAX_SERVERS. This parameter needs to be increased too. thx, Kavy
  2. Kavy

    Date information

    Hi ! This should work: select add_months(to_date(max(YourDate)), -6) from <table_name>; The other previous will give u error : invalid character. To avoid this error, convert the max(yourdate) into date first and then use the add_months function. thx, Kavy
  3. Kavy

    BUFFER OVERFLOW ERR.

    Increase the arraysize. set arraysize <n> where n be a number greater than 1000 thx, Kavy
  4. Kavy

    Connecting to Oracle 8i DB

    Give a try to this: 1)shutdown the database 2) at the o/s prompt (oracle's default directory), give the following without any soace anywhere: c:\...>oracle_sid=orcl 3) start the database 4) try connecting now.
  5. Kavy

    GLOBALS

    A global variable is automatically created when a variable is prefixed with the keyword &quot;global&quot;. So, when i say :global.g_empno :=:blk.empno; the global variable called &quot;g_empno&quot; is created and a value from the block &quot;blk&quot;, column &quot;empno&quot; is assigned to...
  6. Kavy

    Personal Oracle8i NET8 ODBC problems

    what is the error message u get?? Kavy
  7. Kavy

    Object Creation parameters

    Hi Prosenjit, firstly, one has to decide what kind of table it is. wether it is a lookup table(master table) or any custom table. Based in this we can go to the next question : What kind of data will be stored, ie. how often data will be written to the table(insert), how often updated and how...
  8. Kavy

    SQL worksheet horizontal scroll bar

    Hey! If u are talking about SQL*Plus, then goto Options Menu> Environment There, in the Scren buffer. Increase the size of Buffer length to anything beyond 1000(which is the default)

Part and Inventory Search

Back
Top