Viewing 15 posts - 16 through 30 (of 41 total)
I noticed that part 3 of this series is published here http://www.sqlservercentral.com/articles/Stairway+Series/69927/, but still listed as "coming soon." Thought you might want to update this. I...
May 25, 2010 at 10:49 am
I must not have checked one of them then... I think I may have visually skipped over the autoshrink operation one. Makes more sense than a machine/web error.
May 12, 2009 at 1:58 pm
That's odd, I checked these two answers:
A DBCC SHRINKDATABASE statement is executed., An autoshrink operation occurs. , A DBCC SHRINKFILE statement referencing a log file is executed.
And it told...
May 12, 2009 at 8:48 am
If you simly save the package rather than executing it in the Import Design Wizard, then open the dtsx file with Visual Studio or the Business Intelligence Development Studio, then...
August 16, 2008 at 2:36 pm
Good article, but may I suggest having someone go through and edit it for proper spelling, grammar and clarity? I noticed that the same phrases were repeated one after...
July 26, 2008 at 1:52 pm
A couple of things left out here are CLR assemblies, User Defined Datatypes, and the Service Broker. It's a good practice to ensure the proper dll versions for the...
May 12, 2008 at 7:48 pm
Thanks, I guess I could do a local build of the dev database on my box and set up remote sp debugging on it (we don't want to open things...
March 12, 2008 at 11:37 am
Oh and I really didn't know for certain where the error was happening; I was just making an assumption.
March 11, 2008 at 3:19 pm
I get it. I knew it had to be something small that I was overlooking. Thanks!
March 11, 2008 at 3:09 pm
Just checking to make sure I receive any replies to this thread via email.
March 11, 2008 at 1:53 pm
I think PATH is really a great alternative to doing some simple nesting versus EXPLICIT. I'd like to see an article on PATH vs EXPLICIT to see where PATH...
June 20, 2007 at 3:07 pm
Aaron Ingold is right... Use this as a template...
DECLARE @t tinyint
SET @t = 1
IF (@t = 1)
begin
BEGIN try
SELECT @t
END try
BEGIN catch
PRINT error_message()
END catch
end
April 30, 2007 at 1:15 pm
I never did experience this again, so I am sorry I don't have an answer for you. I wasn't sure what even caused this to begin with other than...
March 27, 2007 at 3:42 pm
I have this occurring on a Server Standard 2003 x64 box with Developers 64 bit SQL 2005 sp 1. I wonder if this is fixed in SP2?
March 5, 2007 at 12:14 pm
Thank you for posting that link; it's a very good summary of the DbE changes between 2000 and 2005. This would seem to explain the problem, but here are...
October 18, 2006 at 11:39 am
Viewing 15 posts - 16 through 30 (of 41 total)