Viewing 15 posts - 16 through 30 (of 130 total)
I will chime in with support for do not use job failures to indicate a procedure or data problem. A job failure should be investigated by a DBA to...
August 3, 2012 at 4:16 pm
Same way you did the tables. In SSMS under the table you will see a folder 'Indexes' expand that then right click on the index and script it out.
August 2, 2012 at 3:51 pm
It was at a SQL saturday event:
/http://www.sqlsaturday.com/viewsession.aspx?sat=92&sessionid=5774/
I am unable to access his website here at work but I believe there are slides and demos available.
August 2, 2012 at 1:04 pm
If my memory is working I believe if you use dtexecui.exe you can choose all the options and the tool will provide the correct command line syntax to cut and...
August 1, 2012 at 3:32 pm
Rather than using an optimizer hint why not just change the table variable to a temp table and let the optimizer do its thing.
August 1, 2012 at 2:54 pm
I suspected it was due to load on the main database that is why I suggested pulling from a database snapshot instead of directly from the databases.
another way...
August 1, 2012 at 12:45 pm
In my opinion the best tool for extracting data in SQL server is SSIS, lots of flexibilty and good performance and has a lot of tools to help loading the...
August 1, 2012 at 11:41 am
Whew, I was on the edge of my seat while reading this. Wasn't sure if we were ever going to get here. 😀
July 3, 2012 at 12:24 pm
Use the SQL server configuration manager to specify the port SQL is listening on.
June 26, 2012 at 12:43 pm
Yes you can use SSIS to do this. Either use the dataflow to move the whole table then run T-SQL to merge the data into the destination table or...
June 25, 2012 at 5:18 pm
The main benefit with Merge is the single transaction for both update and insert. Helps guarantee that no change can slip in between the insert and update statements.
June 21, 2012 at 6:09 pm
ideally, you would create a database role then grant to that role the EXECUTE permission on the schema(s) that contain the stored procedures. Then add that role to any...
June 18, 2012 at 12:23 pm
Usually, the application takes care of it's own security and then connects to the database with a service account that has the necesary access.
June 13, 2012 at 4:20 pm
Is the entire dataflow configured inside a Sequence container?
June 7, 2012 at 2:58 pm
Viewing 15 posts - 16 through 30 (of 130 total)