Viewing 15 posts - 1,336 through 1,350 (of 5,103 total)
I do it with a "FULLSCAN" every time a I migrate a DB from 2k to 2k5
December 10, 2007 at 1:59 pm
By the way "1204" is OK; "1205" is overkill !!!!
December 10, 2007 at 1:56 pm
Without indexes your table could be *very* fragmented ... so clustered index will put it under control. The fact the a reboot "fixed" the problem is something to be really...
December 10, 2007 at 12:31 pm
sp_spaceused does *not* reports the actual values unless you update the ussage of the the database ( dbcc updateusage (0) ) because of that sp_spaceused gives you an extra parameter...
December 10, 2007 at 9:51 am
compatibility level does *NOT* introduces performance gain/losses basically compatibility "issues" or lack of them 😀
December 10, 2007 at 9:47 am
Note that pausing distribution agents is not exactly pausing "replication" is just pausing the subscriber activity; the publisher is still inserting in the distrigution database (logreader).
December 4, 2007 at 12:04 pm
rami.atedgi (12/4/2007)
My query is like this:
CREATE TABLE MFGINSTRUCTIONS
([APPROVEDAT] datetime ,[APPROVEDBY] varchar (15) ,
[CREATED_BY] varchar (15) ,[EXPDATE] datetime ,
[INSTRUCTIONCODE] int ...
December 4, 2007 at 11:56 am
Backup and then restore it with a different name ( and different filenames )
December 4, 2007 at 11:42 am
No matter how you slice it 42 million rows will KILL anything ( Client or Server). You should check is that is really all needed. All I can...
December 4, 2007 at 10:42 am
You don't have to be an SQL Server Ranger to know that there is something terribly wrong with 34 indexes in one table.
By the way a quick way to determine...
December 4, 2007 at 10:34 am
Deletes will definitely benefit "AS LONG AS" partitioned colums are specified on the WHERE clause, Inserts will take advantange of the partitioning too. Seriously doubt that Truncate will have any...
December 4, 2007 at 10:26 am
I guess the Question poster just went strictly by what was "written" in BOL 😉
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/sqlexprbol/html/279fe698-5107-4891-b669-b04217ee421e.htm
But the description clearly says:
Shared Memory
Lets you connect to an instance of SQL Server...
December 4, 2007 at 9:56 am
Sorry, I posted it on the wrong forum. I am using SQL Server 2000 and should have posted the query on that forum.
But Regardless the answer that an sql trace...
December 3, 2007 at 4:14 pm
U (12/3/2007)
noeld (12/3/2007)
U (12/3/2007)
December 3, 2007 at 4:02 pm
if you can make that job into a set of stored procedures you can publish the "EXECUTION" of the stored procedure and it will effectively bypass the distribution database activity.
December 3, 2007 at 3:57 pm
Viewing 15 posts - 1,336 through 1,350 (of 5,103 total)