Viewing 15 posts - 106 through 120 (of 294 total)
jcrawf02 (5/23/2008)
David Jackson (5/22/2008)
DECLARE @rebuildMe varchar(2000), @iteration int
SET @rebuildMe = ''
SELECT @rebuildMe = @rebuildMe + cast(n as varchar(10)) + '...
May 23, 2008 at 10:56 am
Using your test data, what would you expect this to return?
DECLARE @rebuildMe varchar(2000), @iteration int
SET @rebuildMe = ''
SELECT @rebuildMe = @rebuildMe + cast(n as varchar(10)) + ' '
...
May 22, 2008 at 11:17 am
This is horrible.
SET NoCount on
declare @cmd VARCHAR(8000)
SET @Cmd = 'EXEC master..xp_cmdshell '''
SET @Cmd = @Cmd + 'SQLCMD /L'''
--or for 2000 servers
-- SET...
May 19, 2008 at 11:29 am
Grand 🙂
I'd like to thank you for taking the time to post a much clearer explanation of what's going on than mine. :blush: 😀
Dave J
May 16, 2008 at 7:31 am
Glad to help 🙂
It is now using your indexes, which it couldn't do before as it has to convert every value to see if it matched your criteria.
Declare @AsOfDate...
May 16, 2008 at 1:54 am
MattieNH (5/1/2008)
May 14, 2008 at 10:24 am
What can I say, excellent article, again! Prompted me to put a link to here[/url] on my site, just to make sure I don't lose these...
Well done Jeff. 🙂
Dave...
May 8, 2008 at 8:00 am
Wayne,
I spotted another one this morning
http://www.theage.com.au/articles/2008/04/21/1208742844690.html
You can download it here[/url]! :w00t:
Dave J
April 25, 2008 at 3:51 am
I know I'm like a week late, but hey, I've been busy. 🙂
This reminded me of this.
http://www.cs.unm.edu/~dlchao/flake/doom/
Definitely want one for SQL. Each room is a different db? CPU Hogs...
April 7, 2008 at 10:36 am
You have two options, do an initial insert and then update newly inserted row, or capture what you want to insert into variables and insert in one hit. The...
March 27, 2008 at 3:58 pm
I recall seeing an awfully nice auditing solution from Pop Rivett. Hang on, I'll go look...
Yep, still there.
See
http://www.simple-talk.com/sql/database-administration/pop-rivetts-sql-server-faq-no.5-pop-on-the-audit-trail/%5B/url%5D
for the article I was thinking about. Now it...
March 27, 2008 at 3:29 pm
mtassin (3/14/2008)
Well Brainbench makes me feel better...
I am not going to do the 2005 test until I've actually used the product in anger, but here are the results I did...
March 17, 2008 at 12:38 pm
Jeff Moden (3/4/2008)
Search for ^l (circumflex small-"L") and replace it with ^p (circumflex small-"P")....
March 10, 2008 at 6:36 am
Jeff Moden (3/5/2008)
That's pretty much true, Matt... I'm amazed at what people think a DBA is supposed to do...
I kid you not, this mail was circulated around my...
March 5, 2008 at 10:21 am
wrap it in a code tag.
The editor may eat this but I'll try
Select col from...
March 4, 2008 at 7:34 am
Viewing 15 posts - 106 through 120 (of 294 total)