Viewing 8 posts - 46 through 53 (of 53 total)
The DBCC SHRINKFILE(file,EMPTYFILE) is an essential step. You cannot remove a file unless you do this because this is what tells SQL to deallocate the pages in the file.
It...
May 23, 2002 at 8:07 am
[I'm obsessing on this because I have exactly the same problem.]
After using my script (see above) to list the tables on the filegroup I want to drop, I still get...
May 22, 2002 at 10:25 am
Add "WHERE xtype='U'" to the cursor for user tables only.
May 21, 2002 at 9:49 pm
Try this one...
set nocount on
create table #id (ndx int primary key identity,ob int)
create table #fg (ndx int primary key identity,fg varchar(255))
declare id_cursor cursor local read_only for
...
May 21, 2002 at 9:38 pm
Actually, maybe the trigger should be on syscomments?
May 20, 2002 at 5:53 pm
quote:
Hi,We are having some issues with people changing database objects (such as stored procs) and thus breaking the front-end application. What I...
May 20, 2002 at 5:51 pm
One "problem" with MSCS is that Microsoft will not support a "non-certified" configuration and that means that you're going to have to buy the vendor's "cluster package" if you want...
May 17, 2002 at 10:42 am
VERITAS Backup Exec sells an add-on product called "RAIDirector" which allows you to use multiple drives as a tape RAID array. You could try this to improve your througput.
I've never...
November 5, 2001 at 3:21 pm
Viewing 8 posts - 46 through 53 (of 53 total)