Viewing 15 posts - 7,921 through 7,935 (of 8,760 total)
skilly2 (6/27/2014)
June 27, 2014 at 1:11 pm
Thank you for the nice sample and well formed question!
You are slightly over-complicating the query, check the parenthesis in the where clause.
😎
SELECT
AR.InternalAuditRequirementID
,AR.AuditTeamID
FROM tblInternalAuditRequirement AR
LEFT OUTER JOIN tblInternalAuditAssignment AA
ON AR.InternalAuditRequirementID...
June 27, 2014 at 7:25 am
Evil Kraig F (6/26/2014)
June 26, 2014 at 5:13 pm
My 2 cents on this, GUI generated code is not always forward compatible, I.e. the semicolon termination is missing.
😎
June 25, 2014 at 5:40 pm
TomThomson (6/24/2014)
Luis Cazares (6/24/2014)
June 25, 2014 at 5:12 am
Quick question, why the nolock hint?
😎
June 25, 2014 at 4:38 am
Doctor Who 2 (6/21/2014)
June 22, 2014 at 2:04 am
geo123abram (6/21/2014)
June 22, 2014 at 12:52 am
Sachin Nandanwar (6/22/2014)
Eirikur Eiriksson (6/21/2014)
Sachin Nandanwar (6/21/2014)
What should happen in case of trailing zero's ? Example 1000,9990 or zero's that are neither leading or trailing ex : 1001
Those would...
June 22, 2014 at 12:09 am
Don't think there is a need for a cursor
😎
UPDATE E
SET E.ActiveRoles = dbo.udf_GetRoles(P.pkPerson)
FROM dbo.tEmployee E
INNER JOIN P
ON E.pkPerson = P.pkPerson;
The correct cursor code
DECLARE @pkPerson...
June 22, 2014 at 12:04 am
Sachin Nandanwar (6/21/2014)
What should happen in case of trailing zero's ? Example 1000,9990 or zero's that are neither leading or trailing ex : 1001
Those would then certainly be valid...
June 21, 2014 at 11:51 pm
deepu chan (6/21/2014)
create table #temp
(
valid_id int not null,
valid_no varchar(50)
)
10001
20002
30011
40012
i need to select the valid no without '0' lie 1,2,11,12, how do i?
someone please clarify me...
June 21, 2014 at 11:37 pm
sstomp (6/20/2014)
OLE DB provider "SQLNCLI10" for linked server...
June 21, 2014 at 4:50 pm
EdVassie (6/18/2014)
Grant has covered the main things.Definitely do this as a side by side upgrade. An In-Place upgrade is mainly for folks who like playing Russian Roulette.
Prefer...
June 21, 2014 at 4:41 pm
Viewing 15 posts - 7,921 through 7,935 (of 8,760 total)