Viewing 15 posts - 61 through 75 (of 107 total)
thanks for the clarificaiton
October 27, 2010 at 10:16 am
Could we use something like this ??
SELECT 'ALTER TABLE ' +
t.Table_Name +
...
October 27, 2010 at 9:28 am
Would something like this work for you
Select Concat ( firstName,LastName) OR Select firstName|| ' ' || LastName
Into A.Name
FRom Table A A Inner JOIN TableB B...
October 21, 2010 at 11:17 am
The tables are
(
empno NUMBER(5) NOT NULL,
ename VARCHAR2(15) NOT NULL,
job VARCHAR2(10),
mgr NUMBER(4),
hiredate DATE DEFAULT (sysdate),
...
October 21, 2010 at 9:21 am
sorry about the late response
this is the package i created to calculate net pay for a user and get an error as ORA-01422: exact fetch returns more than...
October 21, 2010 at 9:18 am
Inserting is easy its the cndtion check thats getting me
October 19, 2010 at 10:18 am
A Cursor could do it as well but i just dont know how we can loop thru the salgrade table and connect it to thtree tables, after that the insert...
October 19, 2010 at 9:22 am
can you please direct me to where i can find an example
October 19, 2010 at 9:09 am
can a simple block do it as well rather than a procedure ?
October 18, 2010 at 8:48 pm
sorry about the incomplete post here are rest of the tables and an insert statement
CREATE TABLE deductions (
name nvarchar(3) ,
grd_min decimal (9,2),
grd_maX decimal (9,2) )
CREATE TABLE...
October 18, 2010 at 7:57 pm
This is what i am trying to do
a store procedure that will insert rows to the user deduction table. Salary grade is determined by checking the salary grade table to...
October 18, 2010 at 3:35 pm
i can do that when i am on my SSMS but i have to send out a script to the client, is there any way i can turn the indexes...
September 22, 2010 at 10:59 am
Thanks again for the clarification this is what i tried
IF EXISTS(SELECT * from A where where AID ='4')
Begin
Print...
September 17, 2010 at 10:20 am
Well i am not getting it then if u can explain ti that would be awesome this is what i am trying to accomplish
Insert Into values ( 1,2,...
September 16, 2010 at 4:27 pm
I think that would be impossible ( what i asked for ) only scalar variables are allowed in an insert and no subqueries as i have to enter the query...
September 16, 2010 at 3:30 pm
Viewing 15 posts - 61 through 75 (of 107 total)