Viewing 15 posts - 1 through 15 (of 30 total)
Sree,
Simplest and most straightforward way is to create a new filegroup on the new drive, script all your current indexes, drop the indexes and recreate them on the new...
Thanks, and don't forget to Chuckle
October 13, 2006 at 10:15 am
Regarding the post that talked about mainframe file dumps that used column width as the delimiter vs csv, pipes, tabs etc. I run across this a lot because the folks...
Thanks, and don't forget to Chuckle
January 13, 2006 at 10:50 am
Can we take it a step further, i.e., an article that explains what to do with the results obtained - from both a query rewrite and a hardware POV?
I ran...
Thanks, and don't forget to Chuckle
December 23, 2005 at 5:57 am
As a quick check, move the file(s) to the default location
\SERVER1\C$\Program Files\Microsoft SQL Server\MSSQL\ReplData\unc\SERVER1_MBDB_MBDB_PUBLICATION\
and try it again.
Slower check, run through the properties and set it up so the...
Thanks, and don't forget to Chuckle
June 22, 2004 at 8:24 am
this will return only the nb_email as the result set (I can't test) :
ALTER PROCEDURE MYPROC(@idSite int, @Type varchar(4)) AS
DECLARE @strReq varchar(1000)
SET @strReq = 'SELECT COUNT(*) AS nb_email
FROM...
Thanks, and don't forget to Chuckle
June 22, 2004 at 7:32 am
Talat,
Are you doing 'real' merge or dynamic snapshots? Dynamic snapshots can improve performance.
If that doesn't help try this from BOL :
You can limit the number of merge processes running simultaneously by...
Thanks, and don't forget to Chuckle
June 22, 2004 at 6:40 am
Perico,
I don't know what this part of the select is supposed to do:
, @nb-2 = COUNT(*)
but it certainly isn't going to get you an output parameter. You...
Thanks, and don't forget to Chuckle
June 22, 2004 at 6:18 am
Dan,
This:
case when ([service date] = 0) then...
Thanks, and don't forget to Chuckle
June 22, 2004 at 5:44 am
Try LogPI - it's advertised on the SqlCentral web site all over the place, does this and more.
Thanks, and don't forget to Chuckle
June 2, 2004 at 7:35 am
Indexing aside - and I suspect indexing is not the point here as you did not discuss any WHERE clauses -
Casey had it right in his reply; it is...
Thanks, and don't forget to Chuckle
May 27, 2004 at 9:08 am
Could you be clearer when you say table size - do you mean amount of storage space, or rows in the table?
If storage space, I have found that even bulk...
Thanks, and don't forget to Chuckle
May 27, 2004 at 8:52 am
Another good thing to keep in mind is that if you are using the string to exec anything that has a sysname's or table names etc.. then make variable that...
Thanks, and don't forget to Chuckle
May 17, 2004 at 7:47 am
Then it's not a simple solution, you'll need to go to xml to format the results sets that cleanly since you will not know how many rows you are getting....
Thanks, and don't forget to Chuckle
April 30, 2004 at 11:16 am
have you looked at 'with rollup' or 'with cube'? When you say each page you mean each paper page, or each subsection/grouping of the report?
Thanks, and don't forget to Chuckle
April 30, 2004 at 8:43 am
In the job (each one) add a new step "Insert into reportdb.dbo.FailedJobHistory (Job, DayFailed, etc..) values 'JobName', getdate(), etc.. (of course use you own db name, table, columns etc, you...
Thanks, and don't forget to Chuckle
April 30, 2004 at 8:40 am
Viewing 15 posts - 1 through 15 (of 30 total)