Viewing 15 posts - 631 through 645 (of 927 total)
Koen Verbeeck (4/15/2014)
shafirmubarak (4/15/2014)
I would like to import as it is. I dont want to ignore the rows which has null GUID.
It's acutally child records which...
April 15, 2014 at 7:37 am
what exactly you want to do with GUID column having null value?
Want to keep in the original table?
OR
want to Ignore this data
OR
Want to place a new GUID?
April 15, 2014 at 5:45 am
free_mascot (4/11/2014)
Refer following link:
In addition to Free_Moscot
there the three part series from Perry Whittle
April 11, 2014 at 1:41 am
Thanks lrasner, your question have just awakened me 😀
Excellent QotD, Thanks for sharing
April 11, 2014 at 1:20 am
nice Lynn 🙂
April 11, 2014 at 12:19 am
Hugo Kornelis (4/10/2014)
April 11, 2014 at 12:16 am
Then add my hols and weekends to get the new end date it just feels like this might be an endless cycle to get the eventual end date.
What exactly you...
April 11, 2014 at 12:14 am
try this
Declare @start_dte as datetime = '01-Apr-2014'
, @end_dte as datetime = '30-Apr-2014'
Declare @WeekDayTable Table ( colWeekDayID tinyint
, ColWeekDayName varchar(20)
, ColIsWeekEnd bit
)
Declare @HolidayTable Table...
April 10, 2014 at 6:41 am
All you need to is to unpivot your table 1st.
then use the logic which been shared earlier.
To unpivot you can do this
;With cLuke_PS2
AS
(
SELECT [Ward or Team Name], [Date],...
April 10, 2014 at 3:40 am
Koen Verbeeck (4/8/2014)
Always nice to see how Microsoft differs from other vendors (or how other vendors differ from Microsoft :-D) when it comes to terminating a simple line.
Always nice...
April 9, 2014 at 1:35 am
Something like this
Declare @RemoveNumeric as varchar(30) = '12112this is what i want'
Declare @n table ( number int )
insert into @n
Select top 10 ROW_NUMBER() Over ( ORder by object_id) -...
April 3, 2014 at 5:53 am
All i have understand is this, Description Field contains ETL Data.
If users want to change data , then Application is shows edited data Otherwise ETL data.
your actual question would...
April 3, 2014 at 5:44 am
Viewing 15 posts - 631 through 645 (of 927 total)