Viewing 15 posts - 481 through 495 (of 928 total)
Don't worry about posting too much data to help us understand - that's something that rarely happens here.
You need to post some table definitions, test data and expected in order...
January 23, 2014 at 10:22 am
And here I was, working out how to skip a column because I've been sent a csv file with 16 columns intended for a table that has 15...
Thank you for...
January 23, 2014 at 7:54 am
This Technet article is a good starting point - http://technet.microsoft.com/en-us/library/ms190768(v=sql.90).aspx
January 21, 2014 at 1:34 am
You can use ROW_NUMBER() to add a sequence number to detect duplicates.
A basic example of it is here - http://sqlrambling.net/2013/11/04/row_number-basic-example/
January 10, 2014 at 3:20 am
Dynamic SQL is executed by using 'EXECUTE' - http://technet.microsoft.com/en-us/library/ms188332.aspx
or
SP_EXECUTESQL - http://technet.microsoft.com/en-us/library/ms188001.aspx
You'll find plenty of articles on these commands within SSC, come back if you have further questions on this.
January 9, 2014 at 2:09 am
Your CREATE DATABASE needs to be Dynamic SQL if you're going to pass parameters like that.
Also, if you're trying to create a Database Snapshot then the syntax is a little...
January 9, 2014 at 1:30 am
One of my brothers works for a large supermarket chain and is already sick of Easter - the Easter Eggs arrived into the warehouse on Christma Eve!
December 27, 2013 at 10:31 am
Google "sql server 2012 new features" and follow the links.
December 20, 2013 at 8:44 am
Couldn't agree more - how you handle the failure can become more important than the failure itself.
I've let my subscription to Adobe expire because of the way they handled their...
December 17, 2013 at 4:58 am
Have you tried searching for that error?
http://support.microsoft.com/kb/916760
"This problem is most likely to occur if you start the SQL Server 2005 installation from a folder on a network share or on...
December 16, 2013 at 2:50 am
That isn't a rollback in the normal DB sense - something is running that modifies that table.
Your best bet is probably a server-side trace, have a look at this series...
December 9, 2013 at 7:44 am
There are several very good examples in Technet: http://technet.microsoft.com/en-us/library/ms189461.aspx
Another example, using it within Row_Number: http://sqlrambling.net/2013/11/04/row_number-basic-example/
December 9, 2013 at 6:50 am
Testing. If I'm testing something against a test database, by using Snapshots I can restore the data back to the state it was in a few seconds rather than the...
December 9, 2013 at 1:15 am
SQLPass 2014 paid.
And this time I won't go to the Cheesecake Factory and order the heaviest slice of cheesecake that they make:sick:
One of my enduring memories of Seattle, unfortunately.
December 6, 2013 at 7:56 am
You've posted this in the SQL 2008 forum but you're referring to SQl 2000 - which is it?
Time was only intoduced in the 2008 version, it is not valid in...
December 5, 2013 at 4:25 am
Viewing 15 posts - 481 through 495 (of 928 total)