Viewing 15 posts - 976 through 990 (of 1,097 total)
Try running DBCC CHECKDB to see if you have any errors.
January 15, 2003 at 11:27 am
Yes, I've used it. I redirect event logs to my server to fire alerts and execute jobs and send email notifications.
Check for your network speed because you may have...
January 15, 2003 at 11:23 am
Try exec sp_serveroption 'Servername','Data Acess', True
GO
Select * from servername.dbname.ownername.tablename
January 15, 2003 at 11:13 am
Try also deattaching you db , and then attaching it again. There, through EM you can specify a new db owner
January 14, 2003 at 8:41 am
I Would recomend transactional replication. You can replicate identity values but to prevent errors or discontinued values, you must set the identity column like not for replication. Check BOL for...
January 13, 2003 at 10:41 am
I thinks that it has to be with permissions in the operating system
January 13, 2003 at 10:04 am
In sysindexes you have the first page of the datafile. The one that SQL uses to start scanning an index.
You can't know the pages an index has. With the undocumented...
January 13, 2003 at 9:54 am
if you have a slow network maybe you should change the packet size. Also check the client and server net library. In slow networks TCP/IP works better than Net Beui
...
November 28, 2002 at 10:11 am
Also check for the script in
http://www.sqlservercentral.com/scripts/scriptdetails.asp?scriptid=473
It scan all indexes in the db and report a status of fragmentation.
November 25, 2002 at 9:55 am
If SQL uses a table scan then the optimizer decided not to use the index. You could force sql to use the index with hints but i don't recommend it.
...
November 10, 2002 at 6:41 pm
Also check in BOL for the Full recovery mode of SQL 2000. Maybe you should consider it.
November 9, 2002 at 8:26 pm
A fild with no data in it is just a null value. I don't think you can.
November 9, 2002 at 8:23 pm
Also you could script the objects that you want to move and then imports the data of those objects.
November 4, 2002 at 9:08 pm
Viewing 15 posts - 976 through 990 (of 1,097 total)