Viewing 15 posts - 3,181 through 3,195 (of 7,191 total)
Yes, and check that there are no index hints in any of your code for any of the indexes you propose to drop.
John
May 19, 2015 at 9:36 am
Please will you check your INSERT statement? You're trying to insert two columns into a single-column table.
John
May 19, 2015 at 9:19 am
Something like this:
ISNUMERIC (Left (DESIGN_NO,1)) = 0 ? DESIGN_NO : ( ISNUMERIC (Left (DESIGN_NO,5)) = 1 ? Left (DESIGN_NO,5) : Left (DESIGN_NO,4) )
The syntax may not be 100% correct, but...
May 18, 2015 at 9:53 am
Create a table and insert the date value into it. Add an Execute SQL task to your package that interrogates the table for the date. Store the date...
May 18, 2015 at 8:07 am
I imagine so, yes, but I'm not sure. You should be able to open up the package and script out what it's going to do.
John
May 18, 2015 at 8:00 am
The ALTER INDEX statement that was the deadlock victim will roll back. What happens after that depends on the severity of the error and how your code handles it.
John
May 18, 2015 at 6:57 am
Since SSIS isn't designed to run interactively, I would recommend running this as a report in SSRS, so that users can pass in the required date as a parameter. ...
May 18, 2015 at 2:42 am
Without seeing your data, I'd be just guessing. But I think you need a splitter function. Search for that and see whether you find anything that helps.
John
May 13, 2015 at 8:47 am
Mark
It's not just performance - if columns are added to or removed from a table then your application may break.
But with regard to performance itself, get a copy of your...
May 13, 2015 at 8:45 am
Have a look at this. Make sure you do this on a test server.
John
April 21, 2015 at 7:13 am
Yes, as you acknowledge, you never quite know what you're getting when you use the GUI, which is a good reason to shy away from it in many circumstances. ...
April 21, 2015 at 5:59 am
OK, so for the operation to be allowed, you need City to be other than Sandnes, or you need P_ID to be other than 0. So just change the...
April 21, 2015 at 5:21 am
I think he's confused his requirement: he mentions "already inserted rows" and "already inserted columns" almost in the same breath. I think Gianluca's solution will work for him; alternatively...
April 20, 2015 at 3:12 am
Viewing 15 posts - 3,181 through 3,195 (of 7,191 total)