Viewing 9 posts - 1 through 9 (of 9 total)
I used to do same in SQL server itself
December 29, 2014 at 12:00 am
Can you please share that modified code or share what you have changed!!!!!!!!!
Thanks
April 23, 2013 at 7:28 am
Sorry! I am not able to open the given link.
February 10, 2013 at 10:21 pm
Thanks for reply.
I know this its taking size 1 default.. But my doubt is .. I assign the values to that variable so it contains memory as per values. I...
October 4, 2012 at 1:58 am
In this senario we can create multiple indexes . Creating multiple index with diffrent combination of columns is nothing but providing more option to the optimizer to plan better and...
October 4, 2012 at 12:12 am
Following example will give idea that default size of the varchar and char in convert/cast has 30
DECLARE @myVariable AS varchar(40);
SET @myVariable = 'This string is longer than thirty characters';
SELECT CAST(@myVariable...
October 3, 2012 at 11:35 pm
Here we can see the default size is 30 for the varchar and the char datatype.
DECLARE @myVariable AS varchar(40);
SET @myVariable = 'This string is longer than thirty characters';
SELECT CAST(@myVariable AS...
October 3, 2012 at 11:31 pm
Viewing 9 posts - 1 through 9 (of 9 total)