Viewing 15 posts - 16 through 30 (of 79 total)
We have Primary Key in Both source and target tables but how only this field help to identify the changes ?
October 16, 2017 at 5:04 am
Please help to my post
November 12, 2015 at 10:25 pm
Can anyone help to my previous post
November 11, 2015 at 8:35 pm
-- column KeyProductControlDisplay is Primary Key where as KeyProductControlDisplayParent tells the parent
-- Step 1 : Foreach group of Parent and Child Records I need to compare Child FormOrder column...
November 11, 2015 at 12:12 am
Output of new sample data should be
CREATE TABLE [dbo].[xyzabc12](
[KeyProductControlDisplay] [int] NOT NULL,
[KeyProductControlDisplayParent] [int] NULL,
[FOrmOrder] [nvarchar](85) NULL
) ON [PRIMARY]
GO
INSERT [dbo].[xyzabc12] ([KeyProductControlDisplay], [KeyProductControlDisplayParent], [FOrmOrder]) VALUES (526, NULL, N'All Deal...
November 10, 2015 at 8:39 am
but why this is not working if we have many values in the table
CREATE TABLE [dbo].[xyzabc11](
[KeyProductControlDisplay] [int] NOT NULL,
[KeyProductControlDisplayParent] [int] NULL,
[FOrmOrder] [nvarchar](85) NULL
) ON [PRIMARY]
GO
INSERT [dbo].[xyzabc11] ([KeyProductControlDisplay],...
November 10, 2015 at 8:16 am
I have mentioned detailed explanation about the requirement
1. AS i mentioned previously we have to build the output result(Outputtest1) set based on inputtest1 and inputtest2
2. inputtest1 this result set contains...
October 9, 2015 at 1:58 am
declare @startdate datetime = '2015-03-31 23:59:59.097';
declare @enddate datetime = '2015-04-01 00:00:00.000';
returns 2
Awesome simplified solution with SELECT DATEDIFF(Year, @startdate, @enddate) + 1 AS QUARTER_DIFFERENCE
September 4, 2015 at 5:48 am
some of the thing s looks really complicated to me using TOP 110001 and also using sys.all_columns table, do you suggest any alternative simple approach, because my lead asking...
September 3, 2015 at 4:30 am
I just want the difference count. i am not sure why you are returning all data
September 3, 2015 at 3:52 am
even after creating clustered or non clustered it is not giving considerable performance gain, So is there any possible solution to rewire the same query without changes the output.
July 30, 2015 at 8:52 am
Any one can you please respond with solution
June 29, 2015 at 5:27 am
Cast and ROUND functions are not working for the Dynamically created PIVOT COlumns
June 15, 2015 at 8:16 am
Yes that is Really Working.
But i need to do additional join with deliveries to get few more records as mentioned in my post.
July 21, 2014 at 2:50 am
Viewing 15 posts - 16 through 30 (of 79 total)