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. wwwian

    External Procedures

    Try without the ; at the end of the line.
  2. wwwian

    Problems with installing JVM for Oracle 8i

    Or try this link: http://www.databasejournal.com/features/oracle/article.php/2197201
  3. wwwian

    how to trim all whitespace from a varchar

    trim(col) is only 8i and upwards of course
  4. wwwian

    INSERTing into O-R Schema

    Solution is INSERT INTO x VALUES (x_type(y_type('Z'))
  5. wwwian

    INSERTing into O-R Schema

    Using 8.1.7 and need to insert into the following schema (example) CREATE TYPE y_type AS OBJECT ( z VARCHAR2(1) ); / CREATE TYPE x_type AS OBJECT ( y y_type ); / CREATE TABLE x ( x x_type ); / Need to insert a value into z ! Any ideas ??????
  6. wwwian

    how to trim all whitespace from a varchar

    Or even use ltrim(rtrim(col)) !!
  7. wwwian

    Developer and personal

    You will need to specify the full database name <name>.<domain> at the connect gui
  8. wwwian

    Problems with installing JVM for Oracle 8i

    Try Metalink articles 156477.1 or 175472.1 - they are for 8.1.7 but will give you the general idea.
  9. wwwian

    Loading 2 tables from a .ctl (control) file

    Except.... You are TRUNCATING INTO the table twice !! [cry]
  10. wwwian

    Dropping packaged module

    Further: When you create a package, you should test the procedures on a stand-alone basis and then drop them before you make them part of a package. What ThomVF says is valid.
  11. wwwian

    Oracle and table variables, how well are they handled?

    Hi D, Welcome to the world of ANSI standards (not) As no-one has answered yet, the way it is done in Oracle is: CREATE TABLE @myTable ( f1 NUMBER, --NUMBER covers a multitude of types f2 VARCHAR2(256), f3 NUMBER ) / --execute statement!! INSERT INTO @myTable VALUES ( .. ); /...
  12. wwwian

    Help required in procedure

    Also (a bit nit-picky) but why is degrees in the FROM statement for merit_cursor - it isn't selected from or used in any WHERE statement ? Code a bit hard to read aswell, try using table aliases !! Otherwise, as pointed out before, your column name probably doesn't exist in the table therefore...

Part and Inventory Search

Back
Top