Viewing 15 posts - 181 through 195 (of 326 total)
Too many queries , too many aliases ; I started to loose patience ...
but it said 2 correct , and found that initially ...
saved the day ..
an easy one to...
November 25, 2012 at 10:50 pm
After reading the file table, I fell on varbinary(max) ..
need to read it again ..
thanks for the question..
November 19, 2012 at 10:08 pm
Lokesh Vij (11/8/2012)
Easy one for Friday 🙂As COALESCE always picks up the first not null value from LOV, it was easy to guess the answer.
It threw an error , didn't...
November 8, 2012 at 9:22 pm
Tava (11/7/2012)
SQL-Squid (11/7/2012)
Tava (11/6/2012)
I was told I can request the app designer to include a primary key in the feed I receive, if that does happen, the merge will...
November 7, 2012 at 9:39 pm
Jason-299789 (11/7/2012)
Create Table #test_merge_target (
Col1 varchar(10)
,Col2 varchar(10)
)
Create Table #test_merge_source (
Col1 varchar(10)
,Col2 varchar(10)
)
Insert into #test_merge_source
values ('Acol','test...
November 7, 2012 at 2:44 am
well, nice one ....got it right to start the morning ..
thanks for the question
November 5, 2012 at 9:01 pm
SQLMickey (11/1/2012)
November 2, 2012 at 2:36 am
28.kanikasoni (11/1/2012)
first time execution gives this error
Batch execution is terminated because of debugger request
second time execution gives this error
A transport-level error has occurred when sending the...
November 2, 2012 at 12:37 am
SQLMickey (11/1/2012)
November 2, 2012 at 12:35 am
SQLMickey (11/1/2012)
Instead of using INSERT INTO #tmp SELECT... FROM....., use SELECT...INTO #tmp FROM....Is there a reason you are using dynamic SQL instead of compiled stored procedure?
I don't think it will...
November 1, 2012 at 10:57 pm
28.kanikasoni (11/1/2012)
November 1, 2012 at 10:55 pm
I thought it's highly likely, since the data is not provided , that DatCreated and dateModifed could be repeated ; so basically, Combined with Id is perfect uniqueness considering the...
November 1, 2012 at 10:28 pm
Viewing 15 posts - 181 through 195 (of 326 total)