Hi all,
I have big table of 10 million records. When i add new column, it takes more than 6hrs. How can i reduce the time to add a new column in this? Is any other way to do this?
This is my query:
Thanks in advance...
I have big table of 10 million records. When i add new column, it takes more than 6hrs. How can i reduce the time to add a new column in this? Is any other way to do this?
This is my query:
Code:
alter table USAGE add USAGE_DETAILS_ID INT NOT NULL DEFAULT 0
Comment