Viewing 10 posts - 1 through 10 (of 10 total)
This is totally depend on the future choice, if a person want to become a technical manager/consultant should go for MCA else may go for MBA IT.
April 15, 2011 at 6:16 am
This link may help you:
http://bytes.com/topic/sql-server/answers/531936-how-convert-rows-into-columns
February 10, 2011 at 12:05 am
You are right, i was having the doubt on the same but i cross verified the same.
February 1, 2011 at 1:46 am
nvarchar(max) can store upto 2GB
February 1, 2011 at 12:31 am
This is also a good way to find User defined data/table types.
February 1, 2011 at 12:28 am
Reply is:
How the SP insert all those row to the database, and return rowcount? -> SP will insert a single row at a point of time and it returns rowcount...
February 1, 2011 at 12:25 am
Hi Dave, You are right that "it is giving you the error is because you are trying to assign multiple values to a single row." But if this is the...
January 31, 2011 at 8:55 pm
Hi,
You can see the user defined table types (UDTT) under database in which the UDTT is executed, for full path please follow the below instructions:
Goto your database -> Programmability...
January 30, 2011 at 11:06 pm
Hi,
Please use below query, surely it will work for you... 🙂
update test set country_sub = (substring(country,1,4)) from test t where t.country like '%ENGLAND%' AND t.country = country
January 30, 2011 at 10:20 pm
Viewing 10 posts - 1 through 10 (of 10 total)