Viewing 15 posts - 121 through 135 (of 153 total)
https://www.simple-talk.com/sql/performance/execution-plan-basics/
I think, this is help for you.
July 2, 2013 at 12:27 am
can you elaborate your question?.
July 2, 2013 at 12:24 am
Hi Sturner,
Thanks for your reply.
Table already existed and having 86 millions data so already table have primary key with clustered index on ID column , so not possible to remove...
July 1, 2013 at 11:30 pm
Waiting for your answers ...
thanks
July 1, 2013 at 4:46 am
Any reply pls.....?
June 27, 2013 at 7:10 am
Hi All,
Can any one explain on it?
June 26, 2013 at 4:55 am
I have taken "TestPartition" Database backup (In that db , 5 table are partitioned with 10 file-groups(.ndf files)) then I executed below command
RESTORE FILELISTONLY FROM disk='D:\DB\Backup\TestPartition.bak'
It is showing only mdf...
June 25, 2013 at 11:39 pm
It seems ... you dont have permission for creating .mdf and .ldf files in C drive(C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\AdventureWorksDW.mdf').
So login with administrator or change the mdf and ldf...
June 21, 2013 at 1:02 am
By using this below scripts.It showing data from each partition
--Getting each partitin record count
SELECT $PARTITION.testfn1(LMD) AS Partition,
COUNT(*) AS [COUNT] FROM tblPart2
GROUP BY $PARTITION.testfn1(LMD)
ORDER BY Partition ;
OutPut
PartitionCOUNT
1 ...
June 19, 2013 at 5:02 am
I executed this one also, Partition not removed .
ALTER TABLE [dbo].[tblPart2] DROP CONSTRAINT [PK_tblPart2]
GO
ALTER TABLE [dbo].[tblPart2] ADD CONSTRAINT [PK_tblPart2] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE =...
June 19, 2013 at 3:20 am
I rebuild the clustered index. Event though , partition is not removed. I used the below script for rebuilding the index.
ALTER INDEX [PK_tblpart2] ON [dbo].[tblpart2] REBUILD WITH...
June 19, 2013 at 2:50 am
you mean, Rebuilding the index or table,
I have no idea, how to rebuild "Table" and verified in msdn for re-building the table , I didn't get any information on...
June 19, 2013 at 1:26 am
For removing the partition: I had dropped the non clustered index on partitioned column and created non clustered index with primary file group. even though partitioned is not...
June 19, 2013 at 12:53 am
For removing the partition: I had dropped the non clustered index on partitioned column and created non clustered index with primary file group. even though partitioned is not...
June 19, 2013 at 12:50 am
Viewing 15 posts - 121 through 135 (of 153 total)