Viewing 10 posts - 121 through 130 (of 130 total)
Thank you very much guys- I really admired all of your comments and suggessions.
November 4, 2008 at 8:55 pm
I ran the missing indexes script and I do not see any indexes are missing. what will be the problem you think?
October 29, 2008 at 10:24 am
Thank you somuch! I really appreciate your help.
October 21, 2008 at 4:36 pm
I am not asking for the process. All I am asking is when you move the nonclustered indexes to other disk array do you need the schema change or for...
October 21, 2008 at 10:15 am
Try this
SELECT
CASE WHEN CITY LIKE 'B%' THEN CITY ELSE '' END as 'CITY1',
CASE WHEN CITY LIKE 'L%' THEN CITY ELSE '' END as 'CITY2',
CASE...
October 17, 2008 at 7:53 am
Shree,
You can use CASE command to display the rows into colums; for example;
CREATE TABLE [dbo].[fscity](
[state] [nchar](10) NULL,
[city] [nchar](10) NULL
) ON [PRIMARY]
I inserted couple of cities and used this command;
SELECT ...
October 17, 2008 at 7:52 am
Thanks for the quick reply. I will test the script and let you know if I encountered any problems or if I need any further help. Thanks again guys!
October 14, 2008 at 8:06 am
I need to rebuild the indexes on database level for nonclustered indexes in order to move them to primary file.
October 13, 2008 at 7:24 am
Can you please send the scripts? Thanks
October 12, 2008 at 12:54 pm
I loved the script. I wish the author or some cold post the reverse process like moving non-clustered indexes from secondary to primary with clustered indexes.
October 10, 2008 at 2:59 pm
Viewing 10 posts - 121 through 130 (of 130 total)