Viewing 15 posts - 16 through 30 (of 135 total)
Hi experts Any help on this!!!
December 15, 2015 at 10:37 pm
tried this logic will it work
AND (
(
(
(Group = 'ARM' AND Type = 'XXX')
OR (Group = 'CMO' AND Type = 'JJJ')
OR (Group = 'MBS' AND Type =...
December 14, 2015 at 5:19 am
Ken McKelvey (12/11/2015)
As this is a database why not create:
SELECT A.EPD
FROM YourTable Y
LEFT JOIN #Entities E
ON Y.[Group] = E.[Group]
AND Y.[Type] = E.[Type]
CROSS...
December 13, 2015 at 11:31 pm
Thank you guys for the reply...yeah that date filter will be there...i have removed the comment.
So there is no way which part of predicate will execute at runtime first that...
December 4, 2015 at 3:13 am
Thanks Luis for the solution
September 9, 2015 at 11:01 pm
Luis Cazares (9/9/2015)
Why don't you simply display the results as text instead of a grid?
Thanks for the reply.. I am trying to generate automated script which contain
BEGIN TRANS
Insert stmt--...
September 9, 2015 at 8:04 am
Thanks Grant for the reply... had a discussion with the client they doesn't allowed to create linked server, what are the other options available can you provide any reference links.
September 6, 2015 at 5:59 am
Louis Hillebrand (8/31/2015)
Rearrange the input to a yymmdd string with two substrings.
Convert to date using CONVERT using style 12 (yymmdd)
DECLARE @D nvarchar(6)...
August 31, 2015 at 3:30 am
Shawn Melton (12/9/2014)
Lowell, I did try your change and...
December 9, 2014 at 10:24 pm
Lowell (12/9/2014)
you have
SELECT XEvent.query('(event/data/value/deadlock)[1]') AS DeadlockGraph
mine has this...no "deadlock" in the...
December 9, 2014 at 10:17 pm
Thanks roy let me check with this
April 23, 2014 at 10:40 pm
Roy thanks for the reply
let suppose I am using Always on with Availability group for DR.
Then how to replicate back the data to PROD
April 23, 2014 at 1:10 pm
You are quite welcome. Do you understand why this one works and yours didn't?
What i understand from the MSDN, the anchor query which returns the input EmployeeID(base result) then the...
November 9, 2013 at 1:39 am
Sean Lange (11/7/2013)
Something like this should work.
declare @EmployeeID int = 285;
with EmployeeTree as
(
select...
November 7, 2013 at 9:56 pm
Viewing 15 posts - 16 through 30 (of 135 total)