Viewing 15 posts - 196 through 210 (of 326 total)
gsd1 (10/30/2012)
As Sean Lange suggested, I tried with temp table (instead of temp variable).
I faced these problems.
1. I have to build the sql statement. So...
October 30, 2012 at 8:38 am
gsd1 (10/29/2012)
Hello Friends.What is the best way of creating table variable dynamically?
Thanks & Regards,
that's a good one.. creating dynamic variable dynamically...:-P
you might be able to create the table variable dynamically...
October 30, 2012 at 3:17 am
anandhaksc (10/30/2012)
Hi,so,its like a Ternary operator in Java?
yes like ternary operator..
.or conditional operator in C (if i remember correctly that's what it called)...
October 30, 2012 at 2:55 am
sreenu_rvkl (10/30/2012)
When change datatype max then also get same error
I once face this issue while loading an image in binary format and saving it to the database ..
If the length...
October 30, 2012 at 2:44 am
ya convert it to what ??
it looks like datetime2 ...
October 30, 2012 at 2:39 am
oh , I got it wrong , I thought instead of null, it will give default 0 as output..
..
learned something though 😉
thanks for the question...
October 30, 2012 at 1:01 am
Jamsheer (10/24/2012)
Thanks for Good question.."Eid Mubarak" to all my SQL Friends.. 🙂
Eid mubara Jamsheer..
I knew of the PARSENAME ..there is a wonderful use of this for taking out the dot...
October 24, 2012 at 11:52 pm
gosh.. I almost overlooked the quoted null ..:w00t:
nice question....:Whistling:
October 16, 2012 at 10:50 pm
Eugene Elutin (10/16/2012)
santoshupadhayay87 (10/16/2012)
October 16, 2012 at 5:51 am
santoshupadhayay87 (10/16/2012)
October 16, 2012 at 5:20 am
Let me know if this helps..
CSV FILE : Test.csv
a,b
1,A
2,B
3,C
Then in the SSMS :
create table #test(a int,b varchar)
BULK INSERT #test1
FROM 'C:\Test.csv'
WITH
...
October 15, 2012 at 11:24 pm
Viewing 15 posts - 196 through 210 (of 326 total)