Viewing 15 posts - 481 through 495 (of 1,539 total)
SecondaryFile is the logical name of the 2nd file in the primary filegroup which you want to remove.
September 4, 2009 at 6:43 am
nitin jain (9/4/2009)
thanx pradeep,both mdf files having same primary filegroup
nitin
In this case you can use emplyfile parameter in dbcc shrinkfile
Use Mydb
dbcc shrinkfile(SecondaryFile, emptyfile)
--2nd file has been emptied, now remove that...
September 4, 2009 at 6:42 am
nitin jain (9/4/2009)
i hav one database backup file which contain 2 mdf and 2 ldf file. now i want to restore it with 1 mdf & 1 ldf file,...
September 4, 2009 at 5:40 am
If the management doesn't listen to technical voices, nothing much can be done. You got to continue with the DT software... It looks like copying the entire file system/or select...
September 4, 2009 at 5:21 am
Henrico Bekker (9/4/2009)
the app doing the replication couldn't tell the difference between a mdf or a mp3 😛
it's replication is amost real time,...
September 4, 2009 at 5:06 am
Henrico Bekker (9/4/2009)
Scenario:
For our DR site, we are using Double Take for Replication between sites.
File replication.
Now some weeks ago, with a DR Test replication some how...
September 4, 2009 at 4:51 am
Refer Books Online. There are many articles on net as well. You may want to search them too.
September 3, 2009 at 10:59 pm
Poor performance could be due to poorly written queries. The following two articles by Gail will help you track down such queries which you can fine tune.
September 3, 2009 at 10:22 pm
IF @frag = 30.0
SET @command = N'ALTER INDEX ' + @indexname + N' ON ' + @schemaname + N'.' + @objectname + N' REBUILD';
You are checking in these lines whether...
August 29, 2009 at 7:53 am
No. It doesn't.
August 29, 2009 at 2:37 am
When a clustered index is created on a heap, the heap is arranged based on the key so the table size should remain more or less same.
In non-clustered index,...
August 28, 2009 at 11:25 pm
When you perform constant insert/delete in a table, the associated indexes become fragmented. The process of removing this fragmentation so that index pages become contigous is called defragmentation.
You'll find ample...
August 26, 2009 at 2:07 am
bommaka.nagarjun (8/26/2009)
Could any one give me brief introduction about the SQL Server architecture as oracle has? I
It's a vast topic. I suggest you start with Book Online.
August 26, 2009 at 2:01 am
Once you have created the login, you can provide specific privilages for databases to each developer.
August 26, 2009 at 1:20 am
If you provide specific privilages to the group, all users will have same privilages.
Instead, Add each NT ID as a Login and provide rights to access a specific database(make that...
August 26, 2009 at 1:14 am
Viewing 15 posts - 481 through 495 (of 1,539 total)