Viewing 10 posts - 1 through 10 (of 10 total)
I grok your question.
First, you've been around long enough for you to start...
May 13, 2018 at 1:32 pm
Phil Parkin - Sunday, May 13, 2018 8:12 AMThis is a requirement. What is your question?
I want to update parent_id of business_table???
this...
May 13, 2018 at 9:11 am
Updated. they are same some other columns are having null and data subsequently
November 17, 2016 at 3:45 am
Check if there are any filters on Dataset and report itself.
May 28, 2016 at 11:11 am
DELETE Top(100000) FROM [dbo].[EncounterSignOff]
FROM [dbo].[User] INNER JOIN [dbo].[EncounterSignOff] ON [User].[UserID] = [EncounterSignOff].[UserId]
WHERE [User].PracticeID = '55';
It works perfectly.
April 19, 2015 at 11:34 am
i hv return logic but i m not sure about it
-- Insert duplicate
;with CTE (id,name,age) as
(
Select id,name,age from stage
Intersect
Select id,name,age from master
)
INSERT INTO History
Select id,name,age from cte
-- New record
insert into...
April 16, 2015 at 12:43 pm
This nested Case is in Select list
February 19, 2015 at 4:50 am
June 19, 2014 at 4:59 am
Yes i want to fetch data 1 am to 1 Am yesterdays date
June 19, 2014 at 4:24 am
Thanks for replay still its taking lot of time. Is there any other way around ?
March 24, 2014 at 8:15 am
Viewing 10 posts - 1 through 10 (of 10 total)