Viewing 15 posts - 11,086 through 11,100 (of 13,877 total)
Surely another possibility is building a mapping table, if this is likely to be a repeated process?
Something like this:
select 'CITALOPRAM TABLETS' Pseudonym,
...
October 20, 2011 at 3:24 am
SQL_Surfer (10/20/2011)
October 20, 2011 at 2:28 am
Is the package stored in the file system or in SQL Server?
Either way, you're probably looking at some sort of restore, unless you have the package stored somewhere else.
October 20, 2011 at 2:15 am
Having said that I think making the last step an archive and/or rename of the processed file is the way to go. Then you know it hasn't been processed because...
October 18, 2011 at 10:32 am
Are you running BIDS on the same server as you have scheduled the job?
October 17, 2011 at 2:20 pm
Applying Lowell's suggested method to my real-world version of this problem worked splendidly. >300k records updated in less than a second.
Thanks again.
October 14, 2011 at 9:14 am
Lowell (10/14/2011)
i'm an ID-TEN-T;i looked at jsu tthe execution plan for the setup table variable...of course they are the same...once i scrolled down, i saw differences.
Haha. Thanks for the excellent...
October 14, 2011 at 7:02 am
vick12 (10/13/2011)
Thanks for your replies. Actually I am using SSRS to develop a report and I need to sort the data based on a sort input parameter the user...
October 13, 2011 at 6:41 am
Well, we don't know if this is the actual query. It could be a simplified version.
True, of course.
You are very much more accommodating than I would ever be, an...
October 13, 2011 at 4:16 am
I suspect (just a wild guess) that the query contains DISTINCT in the select list and, since the OP is selecting the converted date, can only ORDER BY the converted...
October 13, 2011 at 2:21 am
cyndi_kemp (10/12/2011)
October 12, 2011 at 8:38 am
SET @someval = ISNULL((SELECT Name FROM SOMETABLE WHERE ID=3),'')
OR
SELECT @someval = ISNULL(Name,'') FROM SOMETABLE WHERE ID=3
This assumes that the subquery returns no more than one row, which might not be...
October 12, 2011 at 7:20 am
Without more information, this is impossible to answer.
Please post the full text of the error message you are receiving.
October 12, 2011 at 7:16 am
Viewing 15 posts - 11,086 through 11,100 (of 13,877 total)