Viewing 15 posts - 451 through 465 (of 14,953 total)
cooljagadeesh (12/3/2012)
how to create source control
http://www.bing.com/search?q=source+control+sql+server
or
December 3, 2012 at 6:34 am
I keep copies of any script I might need again in SkyDrive.
DropBox, so far as I know, requires an application to be installed locally before you can access...
December 3, 2012 at 6:32 am
Use source control for object changes in your database.
If you can't use source control, use a DDL trigger to track the changes.
But source control is really the correct solution.
December 3, 2012 at 6:13 am
Against small datasets, Nested Loop Joins are often the most efficient. SQL Server pretty much assumes table variables will have 1 row in them. Since it doesn't maintain...
December 3, 2012 at 6:12 am
There's no need to convert Like to = if it doesn't include any wildcards. Just use Like. SQL Server will treat it as an equality test if the...
December 3, 2012 at 6:03 am
pdanes (11/30/2012)
November 30, 2012 at 8:31 am
Most of the French alphabet is supported by Char/Varchar.
It gets complex, and the documentation is seriously (a) vague, and (b) incomplete.
November 29, 2012 at 1:46 pm
Good. Just keep in mind that, if the table variable has more than about 10 rows, it's probably slowing your query down, and you might want to replace it...
November 29, 2012 at 1:36 pm
Temporary files used by Reporting Services. Basically, don't mess with it unless you're willing to rebuild the server from scratch, because you could easily mess up things needed for...
November 29, 2012 at 1:34 pm
There is a row version value stored by the system, in order to deal with snapshots, but it's not something you have access to.
If you need to track that kind...
November 29, 2012 at 10:03 am
November 29, 2012 at 6:47 am
Yep. Test server is the way to go.
November 29, 2012 at 6:46 am
Is the data already in XML format, or is it relational (tables+columns+rows)? Can't quite tell from the post.
November 28, 2012 at 9:15 am
XML is handled by the application if you want it to be anything more than just text with funny punctuation.
SSRS isn't built to present XML as a graphical plan. ...
November 28, 2012 at 6:55 am
Can you replace the table variable with a temp table and see what that does?
November 28, 2012 at 6:51 am
Viewing 15 posts - 451 through 465 (of 14,953 total)