Viewing 15 posts - 1,336 through 1,350 (of 15,381 total)
Tac11 (8/11/2016)
Thanks Steve for your quick reply but I am getting this:Msg 137, Level 15, State 2, Line 2
Must declare the scalar variable "@id".
That would be because @id is an...
August 11, 2016 at 9:09 am
Excellent job posting ddl and sample data!!! I wish everyone would put that much effort into their posts.
You can accomplish this fairly easily using replace.
set @query = 'SELECT modeltrim_oemcode,category_name_natlang,standard_equipment_name_natlang, '...
August 11, 2016 at 9:03 am
Nope. Maybe I am being think but I don't get it. What are you comparing the store md5 results to? And not sure how that is demonstrating the issue you...
August 10, 2016 at 1:50 pm
Ncage (8/10/2016)
Steve Jones - SSC Editor (8/10/2016)
I'd think that...
August 10, 2016 at 12:44 pm
Brandie Tarvin (8/10/2016)
SQLRNNR (8/9/2016)
Brandie Tarvin (8/9/2016)
I am experiencing that sinking feeling one gets when one realizes an instance of SQL was installed without a sysadmin account.
To be fair, I don't...
August 10, 2016 at 12:04 pm
Ncage (8/10/2016)
August 10, 2016 at 9:21 am
Is there a question here? Or is this supposed to be informational?
August 10, 2016 at 8:58 am
No discussion about nested transactions would be complete without a reminder that they are really a myth and do not do what it seems like a real nested transaction should....
August 9, 2016 at 8:05 am
J Livingston SQL (8/8/2016)
August 8, 2016 at 2:01 pm
Boris Pazin (8/4/2016)
Sean Lange (8/4/2016)
August 4, 2016 at 9:14 am
I can't speak for everybody but seeing a few of the tables definitions would go a LONG way in understanding what it is you are trying to accomplish here. I...
August 4, 2016 at 7:08 am
Ronnie Jones (8/3/2016)
I need to determine when a user last accessed a table in a SQL Server 2012 environment.
I have a few scripts that will tell me when...
August 3, 2016 at 12:48 pm
Lynn Pettis (8/3/2016)
Jack Corbett (8/3/2016)
Lynn Pettis (8/3/2016)
August 3, 2016 at 9:40 am
scottcabral (8/3/2016)
Execution Plan attached.
The actual plan wold be better but at 4 hours you probably can't generate one. 😉
It looks like tmpLCRollupList is a heap. That means there is no...
August 3, 2016 at 7:53 am
Let's start with a little formatting so this is more legible.
SELECT lc.DownLoad
,lc.AccountNum
,lc.PolicyNum
--, splitLC.SplitPolicyNumLmt
,splitLC.SplitPolicyNumLmt
,splitLC.SplitPolicyNumCA
,splitLC.SplitPolicyNumReins
,lc.LCDetailGK
,splitLC.PolicyInsuredLocGK
,lc.CbiId
,lc.LCAmtUSD
,lc.LCAplbtyCode
,lc.LCTypeCode
,lc.PerLocInd
,lc.PolicyLevelInd
,lc.LCQualifierTypeCode
,lc.LCFrequencyCode
,0 AS ProcessInd
FROM AIRGBS.vLCExtract AS lc
INNER JOIN AIRGBS.SplitLCLimits AS splitLC ON splitLC.AccountNum = lc.AccountNum
AND splitLC.PolicyNum = lc.PolicyNum
AND splitLC.DownLoad...
August 3, 2016 at 7:30 am
Viewing 15 posts - 1,336 through 1,350 (of 15,381 total)