Viewing 15 posts - 526 through 540 (of 928 total)
When you use the Wizard, have a look at the SQL code it creates ('Script Actions to a New Query Window'), and you'll see that it specifies the file sizes...
January 30, 2013 at 8:25 am
jasona.work (1/30/2013)
Now, you want a topic that would *really* generate some responses, start a Star Trek vs Star Wars topic,
Babylon 5 or nothing.
January 30, 2013 at 8:06 am
They have no idea what a never-ending thread really is...
January 30, 2013 at 1:13 am
I got this question right, but only because there isn't enough information to make an choice about one over the other.
The true answer should be "Either is a candidate at...
January 24, 2013 at 1:08 am
Any Log activity while the backup executes is also backed up. This effectively means that when you restore the backup the log might be rolled forward, processing these transactions.
January 15, 2013 at 9:37 am
SELECT INTO creates the target table, and the only exception along the lines that you are after is with the IDENTITY column.
You could leave the Rowversion column out, as already...
January 15, 2013 at 4:48 am
I have frequently had to script out Stored Procs that use dynamic SQL, and the joys of altering the number of quotes defies description.
Using the 'Generate Scripts' option within SSMS...
January 3, 2013 at 4:10 am
CU5 is available - http://support.microsoft.com/kb/2777772
December 21, 2012 at 3:41 am
The best resource is actually here, on SSC: http://www.sqlservercentral.com/articles/trace+flags/70131/. Otherwise you end up hunting in several areas to gather a comprehensive list.
December 13, 2012 at 1:35 am
In the dynamic query you are actually joining three string of character together and then using the EXEC command, which is designed to execute a command stored within a string...
December 6, 2012 at 5:41 am
Because the first query is running:
IN (1,2,3)
and the second query is running:
IN(@SampleArray)
which is the equivalent of IN('1,2,3') because it is a varchar. Please note the '' characters around the numbers.
SQL...
December 6, 2012 at 4:50 am
What split function are you referring to? Is it this - http://www.sqlservercentral.com/articles/Tally+Table/72993/ ?
December 6, 2012 at 4:11 am
In the first query, print @SQL1 after the execution and have a look at what code that is actually running, then you'll see the difference between the two queries.
December 6, 2012 at 4:04 am
Lokesh Vij (10/25/2012)
I think PARSENAME result will remain same for SS2005, SS2008, SS2008 R2 and SS2012!
Indeed it does.
October 25, 2012 at 1:20 am
There are many paths to becoming a DBA and you see several of these routes when reading SSC regularly, so don't worry that your path might not be 'correct'.
Over the...
October 24, 2012 at 7:31 am
Viewing 15 posts - 526 through 540 (of 928 total)