If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Hi, when i try to alter table db2 would not let, because there are functions and procedures refering table. I have to drop the procedures/ functions and alter table and then redeploy procedures/ functions.
My procedures/ functions have specific name.
i am try to change column from Character 6 to charcter 10 this column is used in function and removing one column this column is not used any procedure or function
Hi, when i try to alter table db2 would not let, because there are functions and procedures refering table. I have to drop the procedures/ functions and alter table and then redeploy procedures/ functions.
My procedures/ functions have specific name.
Is there a better way ?
Thanks in Advance
In light of what you are trying to do, this is the only way to do it.
Thanks
one more question
i have column that is character type i want to convert it decimal
select CAST(mycol AS DECIMAL(8,4) ) from Admin.mytable
it gives error if column has character value like 'NONE', 'NA' etc, Is there a function to check if column is Not a number