Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
help related to sql query

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
mfguy

New User


Joined: 31 Jul 2003
Posts: 4

PostPosted: Tue Aug 19, 2003 2:43 pm    Post subject: help related to sql query
Reply with quote

Hi All,
would anyone please give me the query for the below requirements
1.Need to change all the nullable values for column department with value 'abc' for a table.Here the column department is nullable.
2.I have a table with three columns a1,a2,a3.Here a1 is the primary key.The requirement is such that I have to add one more column a4 to this table and make this column a4 as the primary key instead of a1.How should I proceed with this requirement.Please give me the steps.
All sorts of help appreciated.
Thanks
mfguy
Back to top
View user's profile Send private message
References
PostPosted: Tue Aug 19, 2003 2:43 pm    Post subject: Re: help related to sql query Reply with quote

mdtendulkar

Active User


Joined: 29 Jul 2003
Posts: 257
Location: USA

PostPosted: Tue Aug 19, 2003 3:54 pm    Post subject:
Reply with quote

Hello mfguy,

1)

UPDATE DEPTTBL SET DEPARTMENT = 'ABC' WHERE DEPARTMENT IS NULL


2)

follow the procedure below:
Code:

      a) drop the primary key constraint
      b) add a column
      c) based on conditions, make each row value unique and then add the
          primary key constraint.


This is possible only when the data added to the column is distinct.

Plz correct me if i am wrong anywhere,

Hope this will help you.

Regards

Mayuresh Tendulkar
Back to top
View user's profile Send private message
mcmillan

Site Admin


Joined: 18 May 2003
Posts: 872
Location: India

PostPosted: Wed Aug 20, 2003 8:02 am    Post subject: Re
Reply with quote

Dear tendulkar,

You are not wrong... Good work. Keep it up. But you may need to create an UNIQUE Index on column A4 before adding the Primary key. (if you are not using a Schema Processor).
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1