Viewing 15 posts - 4,531 through 4,545 (of 19,564 total)
Brandie Tarvin (5/31/2013)
SQLRNNR (5/31/2013)
Brandie Tarvin (5/30/2013)
WayneS (5/29/2013)
May 31, 2013 at 11:15 am
Alvin Ramard (5/30/2013)
Yep, still alive. Well, I think I am. 😀I was away from the SQL world for a while and I'm glad to be back!
Which world did you inhabit...
May 31, 2013 at 10:15 am
Brandie Tarvin (5/30/2013)
WayneS (5/29/2013)
May 31, 2013 at 10:13 am
jvkondapalli (5/29/2013)
I started anayzing the SQLs from the...
May 31, 2013 at 10:04 am
I will clean that code up a bit and blog about it in the near future.
May 29, 2013 at 6:03 pm
This is a rough query of what you will need
DECLARE @SetOptions TABLE (
OptionDescVARCHAR(64)
,OptionValueINT PRIMARY KEY CLUSTERED
,OptionNotesVARCHAR(256))
-- http://technet.microsoft.com/en-us/library/ms189472(v=sql.105).aspx
INSERT INTO @SetOptions(OptionDesc,OptionValue,OptionNotes)
VALUES ('ANSI_PADDING',1,'')
,('Parallel Plan',2,'')
,('FORCEPLAN',4,'')
,('CONCAT_NULL_YIELDS_NULL',8,'')
,('ANSI_WARNINGS',16,'')
,('ANSI_NULLS',32,'')
,('QUOTED_IDENTIFIER',64,'')
,('ANSI_NULL_DFLT_ON',128,'')
,('ANSI_NULL_DFLT_OFF',256,'')
,('NoBrowseTable',512,'Indicates that the plan does not use a work table...
May 29, 2013 at 5:58 pm
Evil Kraig F (5/29/2013)
The Dixie Flatline (5/29/2013)
If 42 is the answer (to life, the universe, and everything), what is the question?
How many mice did the cats eat before the mice...
May 29, 2013 at 5:04 pm
Chad Crawford (5/29/2013)
42
Is that in reference to a certain baseball number or to the number of posts remaining to hit 40k?
May 29, 2013 at 3:25 pm
Chad Crawford (5/29/2013)
SQLRNNR (5/29/2013)
Alvin Ramard (5/29/2013)
OMG!!!!!Don't you have anything better to do than wasting your time in here?
😎
Why yes, yes we do. We are going to take over...
May 29, 2013 at 11:19 am
Alvin Ramard (5/29/2013)
OMG!!!!!Don't you have anything better to do than wasting your time in here?
😎
Why yes, yes we do. We are going to take over the world today.
Nice to...
May 29, 2013 at 11:00 am
Hugo Kornelis (5/29/2013)
So then...
May 29, 2013 at 9:20 am
SQL_Surfer (5/29/2013)
May 29, 2013 at 9:18 am
Chad Crawford (5/29/2013)
If you go to Crucial.com, you can either enter your mfg/model or use their tool to scan your laptop and they will tell you exactly what type...
May 29, 2013 at 8:50 am
Grant Fritchey (5/29/2013)
Brandie Tarvin (5/29/2013)
Grant Fritchey (5/29/2013)
Brandie Tarvin (5/29/2013)
How much RAM would you recommend?All of it.
So I should add a million TB to my laptop? @=)
If you can, yes.
I've got...
May 29, 2013 at 8:41 am
dev1.bohol (5/27/2013)
Hi,Is the script applicable on SQL Server 2000, 2005 ?
Thanks
dev1
Which script are you referring to?
May 28, 2013 at 5:58 pm
Viewing 15 posts - 4,531 through 4,545 (of 19,564 total)