Viewing 15 posts - 6,556 through 6,570 (of 7,636 total)
Rerun Performance Monitor with the same counters that Gail listed, plus these addiitonal:
Memory\Available MBytes
Memory\Page Faults/sec
Memory\Page Reads/sec
Memory\Page Writes/sec
The following should have "*all instances" set:
PhysicallDisk(*)\% Idle Time
PhysicallDisk(*)\Disk Reads/sec
PhysicallDisk(*)\Disk Writes/sec
PhysicallDisk(*)\Avg Disk Queue Length
Processor(*)\%...
June 21, 2008 at 8:51 am
Jeff Moden (6/20/2008)
If I could find out how, I would in an instant. Anyone have a clue on how to get on that committee?
Yeah, I researched it some time...
June 21, 2008 at 6:55 am
Tony, Jeff, why don't you just join the committee? I don't think that its as hard as all that.
June 20, 2008 at 11:31 pm
jezemine (6/20/2008)
if you want to automate the generation of scripts from the cmd line, I wrote a tool to do it. it's open source on codeplex:
jezemine: I did...
June 20, 2008 at 10:45 pm
TheSQLGuru (6/20/2008)
rbarryyoung (6/20/2008)
TheSQLGuru (6/20/2008)
Maybe take a look at ApexSQL's Script product, or search the web for some SMO code that will script out objects for you.
Not necessary. As I...
June 20, 2008 at 6:43 pm
JRJ (6/20/2008)
June 20, 2008 at 5:11 pm
TheSQLGuru (6/20/2008)
Maybe take a look at ApexSQL's Script product, or search the web for some SMO code that will script out objects for you.
Not necessary. As I demonstrated above,...
June 20, 2008 at 5:04 pm
As promised here is the stored procedure that will list a procedure that you name, including the "DROP.. IF.." prefix:
ALTER Proc spScriptProc_DropIf( @proc as SYSNAME, @schemaName SYSNAME = N'dbo' )...
June 20, 2008 at 5:02 pm
Sherjon (6/20/2008)
June 20, 2008 at 11:31 am
Matt Miller (6/20/2008)
Jeff Moden (6/20/2008)
rbarryyoung (6/20/2008)
I just want to register my agreement with Jeff.Heh... ok, ok... I promise to never draw smiley faces on your helmet ever again 😛
I wouldn't...
June 20, 2008 at 9:02 am
I just want to register my agreement with Jeff. If this is truly a one-time thing and really only 7 items, then sure, go with this. But if...
June 20, 2008 at 8:25 am
Jeff: Good point about the UoM. Here is a corrected/improved version:
SELECT Metal, UoM
, min(Result) as [Min]
, max(Result) as [Max]
, count(Result) as [Samples]
, avg(Result) as [Mean]
, stdev(Result) as [Std....
June 20, 2008 at 8:14 am
Good point Kevin.
I have attached two screen shots that show how to get the Save Options that the OP had in SQL2000.
This is how you select the Script to New...
June 20, 2008 at 8:03 am
OK, I think that I know what the problem is here: When you script the procedure, do NOT script it directly to a file. That option does not...
June 20, 2008 at 7:56 am
Viewing 15 posts - 6,556 through 6,570 (of 7,636 total)