Viewing 15 posts - 31 through 45 (of 52 total)
Reply to: Lynn Pettis
Well to respond, I am trying to do incremental backups to save on backup space but also have log shipping to a secondary site just incase the...
March 28, 2012 at 11:14 am
If you switched to high safety mode, does it still occur?
I know high speed mode is nice but there could be a network issue that is causing the disconnect.
March 28, 2012 at 9:46 am
Great Article, I didn't know about the traceflag for standard edition.
February 28, 2012 at 8:54 am
@sqlknowitall Thanks for the information, I have it setup using the SQL Service AD account... figured it would have the most access; alias it didn't have enough and...
February 16, 2012 at 1:41 pm
Hey Bret,
In my experience with .Net CLR programming I have found using CLR SP/Functions to be very useful but with that being said I have also stuck to a...
July 19, 2011 at 1:15 am
I agree on readability, which is very important for maintaining code for developers.
One item I have found is that in certain situations referencing a CTE over and over again some...
December 10, 2009 at 7:33 am
Actually the CTE uses the table indexes quite nicely, just review the query plan and you will see it pulls the indexes from the table. (Most of the time) 😀
I...
December 8, 2009 at 7:26 am
I dunno about this answer, as http://www.microsoft.com/windowsserver2003/64bit/x64/datacenter.mspx has all of the points in your question and states 32 processors. Could the documentation be incorrect?
I don't like being wrong but...
November 16, 2009 at 7:59 am
I forgot to mention that the article is quite informative and I think with a little tuning I can run this with confidence.
October 20, 2009 at 7:55 am
The fixed code... I am not sure if it runs but I can create all the objects.
create table tblIndexUsageInfo
(
Sno int identity(1, 1)
,Dbname varchar(100)
,TableName varchar(100)
,IndexName varchar(300)
,Index_id int
,ConstraintType varchar(25)
,Type_desc varchar(100)
,IndexKeyColumn...
October 20, 2009 at 7:42 am
To break apart a concatenated string, please review http://beyondrelational.com/blogs/jacob/archive/2008/08/14/xquery-lab-19-how-to-parse-a-delimited-string.aspx; Jacob's articles have helped me out so much.
October 14, 2009 at 10:51 am
I've been using Solution 2, "FOR XML PATH" for a while now. I use substring to remove the first separator, I think I will look into using stuff.
I have...
October 14, 2009 at 7:40 am
Well I have learned something new today, I think I can go home now. 😀
Thanks for the information.
October 13, 2009 at 8:13 am
I get everything in your post... but what does the colon do?
-- Clear the temp table ...
ProcessNextServer:
DELETE #DRT_Update
October 13, 2009 at 7:39 am
Great post, I was wondering how to setup FILESTREAM without the need of Visual Studio.
One item I wasn't sure of was how is the file system security handled, since...
September 3, 2009 at 7:33 am
Viewing 15 posts - 31 through 45 (of 52 total)