Advertisement

1 - 10 of 130 containing alltags:("10.0") (0 seconds)
I have to only get dates where the day is less than the 16th day of the month. I think its like hire_date < day(16)
Zones: Oracle 10.x, PL / SQLDate Answered: 02/02/2008 Grade: A Views: 0
Please take a look at my .profile /**** .profile *******/ PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.:/usr/local/                                                       ...
Zones: Oracle 10.x, Unix, DatabasesDate Answered: 06/06/2008 Grade: B Views: 129
I have a column which is called "GPname which already has some data in it. It is a varchar, Some of it has '-' in it. For eg: H-C corporation. I need to make it as HC corporation Please sugg...
Zones: SQL Syntax, OracleDate Answered: 09/29/2008 Grade: A Views: 0
I have the following information in the control file currently. LOAD DATA                                                                       APPEND INTO TABLE MYTABLE FIELDS TERMINATED B...
Zones: Oracle, SQL SyntaxDate Answered: 10/01/2008 Grade: A Views: 0
COLUMN1        COLUMN2 8983888          2 8983888             1 8983888             5 Need to sort this first 8983888            1 8983888         2 8983888            5 then I need to sequence COLUMN2 ...
Zones: PL / SQL, Oracle 10.x, SQL SyntaxDate Answered: 10/03/2008 Grade: B Views: 18
How to spool the output of an sql query into a CSV file? select * from table1 group by column1; And the select statement should not print anything to the System Out. How to do that?
Zones: Oracle 10.x, SQL Syntax, PL / SQLDate Answered: 10/24/2008 Grade: A Views: 177
I need to write a function such that it will have an insert statement and this function should return the number of rows inserted into the table. How to do that? My table name is my_table and ...
Zones: PL / SQL, OracleDate Answered: 10/03/2008 Grade: B Views: 92
I have a requirement where COL1  COL2 101      1 101      5 101      2 102      3 102      5 first it needs to ordered according to col1 & col2 COL1  COL2 101      1 101      2 1...
Zones: Oracle, SQL Syntax, PL / SQLDate Answered: 10/13/2008 Grade: A Views: 0
How to pass a variable name 'SA' into the SQL below? create or replace FUNCTION Func_ClaimLineFix(schema1 in VARCHAR) RETURN VARCHAR IS VAR VARCHAR(10); SQLTXT VARCHAR(1000); BEGIN ...
Zones: PL / SQL, Oracle, SQL SyntaxDate Answered: 10/15/2008 Grade: A Views: 12
If there is an exception in Oracle procedure, will it roll back or do i have to roll back explicitly? create or replace PROCEDURE Proc()   IS BEGIN   UPDATE STMT;   EXCEPTION  ...
Zones: PL / SQL, Oracle 10.x, SQL SyntaxDate Answered: 10/20/2008 Grade: B Views: 29