Viewing 15 posts - 781 through 795 (of 1,248 total)
FreeHansje (1/21/2008)
January 22, 2008 at 1:08 pm
Did you run DBCC CHECKDB?
January 22, 2008 at 1:03 pm
I may need to run sp_addlinkedserver before uring your query command.
January 20, 2008 at 8:05 pm
I am not sure I fully understand your question. To apply service pack or hot fixes on a cluster, sometimes, we only need to apply it on an active node....
January 20, 2008 at 7:58 pm
Before applying the last log file, we need to have the clause, WITH NORECOVERY clause.
RESTORE LOG MyNwind FROM MyNwind_log1 WITH NORECOVERY
While applying the last log, we may have,
RESTORE LOG MyNwind...
January 19, 2008 at 5:50 pm
sysaltfiles has a little bit more information, createlsn and droplsn, which are related to the data allocation.
January 19, 2008 at 5:38 pm
Did you apply your hot fix from the active node?
January 19, 2008 at 5:30 pm
January 18, 2008 at 9:18 am
It should be included. Did you search it on your PC? It should be in the folder, \SQL Server 2000 Personal Edition\x86\bin, by default.
Many people have the same problem as...
January 18, 2008 at 8:48 am
What percentage of this difference? Is it because of rounding up?
January 17, 2008 at 3:13 pm
You may try this.
SELECT OBJECT_NAME(rkeyid) ReferencedTable FROM sysreferences WHERE fkeyid = OBJECT_ID('ORDER DETAILS')
January 17, 2008 at 3:11 pm
Here is a link discussing your issue. May it help.
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1978072&SiteID=1
January 17, 2008 at 2:53 pm
If you are talking about index fragmentation, you can use
DBCC REINDEX
DBCC INDEXDEFRAG
If you you are talking about the disk fragmentation, you need to do it on OS level using defrag,...
January 17, 2008 at 2:30 pm
Viewing 15 posts - 781 through 795 (of 1,248 total)