Hi,
Can any one describe me and help to resolve one issue we are facing when we run the following SQL statements?
1. Select * from ABC; (This takes 1 to minutes to return with data. ABC table contains about 150,000 records with one column of XML data. Even if there are o rows in the table it takes 1 minute)
2. Select * from ABC where status = 0; (When we run this statement it takes miliseconds as status is indexed column. )
What to do in this case to optimize the output of the first statement without where clause?
Thanks,