Viewing 15 posts - 481 through 495 (of 927 total)
Phil Parkin (8/5/2014)
twin.devil (8/5/2014)
so this means your CSV is multiline if im not mistaken ?When would you have a non-multiline CSV? Wouldn't that just be column headings without data?
what is...
August 5, 2014 at 8:49 am
August 5, 2014 at 8:46 am
so this means your CSV is multiline if im not mistaken ?
August 5, 2014 at 4:05 am
Phil Factor (8/4/2014)
August 4, 2014 at 1:52 am
Nice question, surprisingly too many people still fall for it if you ask them in a interview 😀
Thanks for sharing Phil.
August 4, 2014 at 12:34 am
Following is another way of doing this
Declare @tblPersonTask Table
(
DayNmchar(3),
Personvarchar(20),
Tasksmallint
)
insert into @tblPersonTask
select 'sun', 'Jhon', 1 union all
select 'sun', 'Smith', 1 union all
select 'sun', 'Dan', 2 union all
select 'mon', 'Smith', 2...
August 1, 2014 at 12:06 am
ChrisM@home (7/25/2014)
-- remote query
SELECT "Tbl1005"."RNC" "Col1960","Tbl1005"."RBS" "Col1961","Tbl1005"."Sector"...
July 25, 2014 at 4:05 am
can you share the complete query ? just for using the Linked Server in the query. what is the response time of the single select statement from that linked server?
July 25, 2014 at 2:10 am
prabhu.st (7/25/2014)
July 25, 2014 at 2:01 am
1st you cannot do it in Merge statement. However, to get a fair bit of idea what Merge can do check this[/url]
your logic is really simple. try to work...
July 24, 2014 at 1:02 am
Viewing 15 posts - 481 through 495 (of 927 total)