Viewing 15 posts - 286 through 300 (of 1,315 total)
Red Gate SQL Compare is a pretty good tool for this.
Visual Studio Team System Database Professional Edition is a great tool for all aspects of managing database projects, including deployment.
There...
November 6, 2009 at 8:04 am
I still don't see what's so complicated about the BACKUP and RESTORE commands. If you need some obscure option, you need to understand how to use it.
The maintenance plan...
November 2, 2009 at 11:17 am
Are BACKUP and RESTORE really that complicated? Compared to, for example, limitations on recursive common table expressions or all the tricks you can perform with MERGE and OUTPUT? ...
November 2, 2009 at 7:59 am
Linson.Daniel (11/1/2009)
November 2, 2009 at 5:36 am
The line breaks can be included in the literal strings, so you don't need to worry about which characters are used. You do have to put " ' +...
October 30, 2009 at 7:59 am
You don't need carriage return for a valid end-of-line sequence, only line feed. Drop the CHAR(13) and just use CHAR(10) and it works fine.
October 30, 2009 at 7:41 am
You could use an expression that evaluates the time of day and determines whether this is the correct time to execute the Send Email task. This expression could be...
September 15, 2009 at 12:27 pm
Lynn Pettis (9/11/2009)
I use CHAR(13) + CHAR(10) when I need to insert a sequence in a string.
Management Studio seems to be pretty forgiving on EOL sequences. You...
September 11, 2009 at 10:58 am
I liked the article, but since most of the discussion revolved around generating column lists I thought I'd add my two cents.
All of the obvious methods (drag-and-drop Columns from Object...
September 11, 2009 at 8:50 am
How on earth can you claim "no changes" is an action that was executed?
I'm really getting tired of questions that play word games.
August 21, 2009 at 8:32 am
From Nov 2008 Books Online:
DBCC CHECKALLOC checks the allocation of all pages in the database, regardless of the type of page or type of object to which they belong. It...
August 17, 2009 at 1:03 pm
I hesitated to answer because I was positive at least one of the answers was going to have some wacky interpretation.
DBCC CHECKDB does not fail when run against either master...
August 17, 2009 at 9:57 am
When you use "ORDER BY [name]" the execution plan shows it sorting the input rows and feeding them to the Compute Scalar steps to evaluate the expression, and it performs...
August 13, 2009 at 5:38 pm
No, the query has to be compiled and it will find out that the table doesn't exist before it runs the query and evaluates the WHERE clause.
You have to do...
August 13, 2009 at 3:25 pm
The error output should include the ErrorColumn value. This is not the name of the column, but the ID number for the column within the dataflow. You could...
August 13, 2009 at 11:20 am
Viewing 15 posts - 286 through 300 (of 1,315 total)