Viewing 15 posts - 871 through 885 (of 6,486 total)
I don't necessarily believe that the outsourcing wave has anything to do with political aspirations or is anything new in the business cycle. At all times a business is...
August 27, 2012 at 10:25 am
Jeff Moden (8/24/2012)
August 24, 2012 at 6:18 pm
Lowell (8/23/2012)
Ajdba (8/23/2012)
I am not sure why it is not liking EDWGEARS..GT_GEARS.VW_GEARS_REPORT_DATA conventions;
LinkedServerName.DatabaseName.SchemaName.TableName.
i doubt very much you have a schema name named GT_GEARS
it's much more likely that it should be...
August 23, 2012 at 12:58 pm
Based on the code you've posted - why would any of that be in a dynamic SQL statement. There's nothing requiring a dynamic structure in there, if you were...
August 23, 2012 at 10:39 am
You may also consider using table-valued parameters.
Pinal Dave has a good intro to how they are used:
http://blog.sqlauthority.com/2008/08/31/sql-server-table-valued-parameters-in-sql-server-2008/%5B/url%5D
August 22, 2012 at 5:51 pm
Use SSIS, with Ado.net sources and destinations. You will then be able to "redirect rows" on failure.
August 22, 2012 at 1:55 pm
You could simply expand your first attempt, assuming if only need to have the starting point fixed:
Insert into xx_ordid_tracker (poid, recptkey, ord_id)
(SELECT ord_oda_id, token, cast(ROW_NUMBER() over(PARTITION by ord_oda_id order...
August 20, 2012 at 11:49 am
create a batch using the exec utility.
August 17, 2012 at 2:15 pm
Unfortunately that is not deterministic. There is no guarantee that the "last record" would win, among other things because there is no such thing as physical ordering in SQL....
August 16, 2012 at 2:26 pm
Lynn Pettis (8/14/2012)
rVadim (8/14/2012)
August 15, 2012 at 10:39 am
patrickmcginnis59 (8/14/2012)
Matt Miller (#4) (8/14/2012)
If this is the kind of programming you're attempting to test - it's not set-based so there would be no reason to do such thing on...
August 14, 2012 at 2:54 pm
patrickmcginnis59 (8/14/2012)
August 14, 2012 at 1:56 pm
Charmer (8/14/2012)
Matt Miller (#4) (8/14/2012)[/b
How much of a drag does the ROW_NUMBER() aspect put on query execution? It sounds like you already have a fairly hefty process.
i am not...
August 14, 2012 at 12:02 pm
Charmer (8/14/2012)
Lynn Pettis (8/14/2012)
Charmer (8/14/2012)
Lynn Pettis (8/14/2012)
Have you tried tuning your SQL query?Yes, Lynn...my SQL query has no other way....this is it...:(
Not sure what you mean by "has no other...
August 14, 2012 at 10:48 am
I think it's more a "waiting on you". You've asked a generic question, and Lowell gave you an approximate answer. The question would be : what can you...
August 13, 2012 at 6:35 pm
Viewing 15 posts - 871 through 885 (of 6,486 total)