Viewing 10 posts - 1 through 10 (of 10 total)
I've had less coffee this morning than is probably prudent, but it seems to me there's no script in the article. 🙂
August 9, 2011 at 10:29 am
Not sure if it's just a typo when posting on the forum but the double equals in this line doesn't look right:
$dbLogFile = = new-object -typename Microsoft.SqlServer.Management.Smo.LogFile -argumentlist $dbObject, $loglogname
I...
December 1, 2009 at 6:28 pm
Nope, aliases don't work either.
May 13, 2009 at 12:59 pm
Yes it is.
As I said, I can connect to a whole bunch of other SQL2K5 servers, it's just this cluster in particular that I'm having trouble with.
May 13, 2009 at 12:43 pm
We use simple names for the actual server names:
SQL01
SQL02
And a descriptive name for the cluster group:
SQLCLUST
With a "v" to visually distinguish the virtual names:
VSQL01
VSQL02
May 13, 2009 at 12:39 pm
It seems like all the function calls are a bit overkill IMO, unless I'm missing how they handle some edge-case.
A simple
ORDER BY len(column), column usually works for me for...
April 9, 2009 at 10:52 am
Books Online says "This statement must be executed as a separate batch." so I'm guessing you can't do what you're hoping for.
This would work however:
DECLARE @sql NVARCHAR(255)
SET
March 30, 2009 at 12:44 pm
Quick and dirty from what you've got already is to use your existing query as a subquery.
SELECT
company,
year,
sum(q1amt) 'Q1',
...
March 10, 2009 at 2:42 pm
Yeah, setting the isolation level in each proc is what I've been doing. I was hoping there was a better way.
Oh well, thanks for the confirmation.
March 4, 2009 at 1:55 pm
This sounds like it's better asked at the myLittleAdmin forums: http://forum.mylittleadmin.com/
I'm wholly unfamiliar with MyLittleAdmin, but I would (wildly) guess the lack of those icons means you lack...
March 4, 2009 at 1:31 pm
Viewing 10 posts - 1 through 10 (of 10 total)