Viewing 15 posts - 57,076 through 57,090 (of 59,066 total)
Mark,
I'm thinking that you did not try the code. Use the table build code to build the table and the related indexes. Then do an execution plan on the code...
January 1, 2007 at 11:36 am
Can you "sticky" this to the SQLServerCentral home page (ie. "How to ask a question and what to do with the answer" section) and force newbies to do a read (wishful...
January 1, 2007 at 9:35 am
Make sure you run the code several times where indicated... you'll both be surprised... and remember the situation may change if a join is involved...
--Drop table MyHead
GO
--===== Create...
December 31, 2006 at 11:39 pm
Actually, since RedGate just procurred this site, try RedGate SQL Compare ![]()
December 28, 2006 at 4:22 pm
Yes, it will fail if your server isn't setup to "see" the path. The SQL Server "service" must be started as a power user that can "see" the UNC path...
December 28, 2006 at 7:33 am
IF you will always have 4 columns, then this will work nicely...
DECLARE @TestText VARCHAR(100)
SET @TestText = 'FIN - TIN - LIN - BIN'
SELECT PARSENAME(REPLACE(@TestText,' -...
December 27, 2006 at 1:44 pm
You bet, Sol,
Sorry for the apparent rambling
in my last post... was a bit late and I just started typing without much thought to...
December 26, 2006 at 6:43 am
James,
I did a search in BOL 2005 and on google... couldn't find reference to a FIRST or LAST function. Probably my problem since I don't use 2005, yet, but do...
December 25, 2006 at 9:32 pm
Kinda like when your car runs bad but you won't let the mechanic pop the hood, isn't it Sol? Heck, I don't even know what your "car" looks like...
December 25, 2006 at 12:55 pm
Yep... I realize that my response is a year late, but well done, Chris... Very nice intro to some of the performance measuring tools that are available in SQL Server.
Just...
December 25, 2006 at 12:03 pm
Whatever... it's still called a cross-post and will tick off some of the people trying to help because the problem is scattered across 3 posts instead of on a single...
December 24, 2006 at 10:07 am
Yeah... kinda... I normally setup a separate database for "staging tables" of large volumes of data being imported. I set the recovery mode to "Simple", as you suggest, and I...
December 23, 2006 at 11:00 am
There's no single approach that fits all situations. I've found that there are lots of different factors affecting such a decision... on 24/7 tables, I might use DBCC IndexDefrag because...
December 23, 2006 at 9:54 am
Just a note... doing a shrink file may actually kill your performance in the near future... it's going to grow again... it didn't get that big by accident. When it...
December 23, 2006 at 7:49 am
Viewing 15 posts - 57,076 through 57,090 (of 59,066 total)