Viewing 15 posts - 1 through 15 (of 33 total)
Another case
I have a big Table with 100+Gb data. I need to change one column datatype from varchar 200 to varchar max. I was trying with Alter command but it...
April 13, 2011 at 11:03 pm
Yes we have a clustered index on it.
July 29, 2010 at 6:58 am
DOB also has an Non clustered index on it.
July 29, 2010 at 6:41 am
It is a user database.
July 15, 2009 at 6:42 am
Put your Dynamic Query in two different variables and then
run it as
EXEC (@cmd + @cmd1)
October 16, 2008 at 4:12 am
Hi All,
I have tried this below sp. But it shows the Script of Length 256 only. Can anyone please
tell how to increase the Length.
if exists (select * from dbo.sysobjects where...
September 25, 2008 at 3:54 am
Can u please send me the link where the Source Code is available.
I had alread tried it but unable to find source code.
Thanks,
Amit Khanna
September 25, 2008 at 3:34 am
Hi,
I think there is not any application for such task.
Even the Coding standards are company specific.
Thanks,
Amit Khanna
September 15, 2008 at 5:19 am
Hi,
Please tell the data type of Start Date and End Date.
Thanks,
Amit Khanna
September 15, 2008 at 5:14 am
Try this one:
DECLARE @sql_handle-2 VARBINARY(20)
SELECT @sql_handle-2= SQL_HANDLE FROM MASTER.DBO.SYSPROCESSES
WHERE DBID=DB_ID('db name')
SELECT TEXT FROM ::FN_GET_SQL(@SQL_HANDLE)
Thanks,
Amit Khanna
September 12, 2008 at 12:56 am
Please check out the permissions on your login.
August 27, 2008 at 4:27 am
Please go through the below link.
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/d4c26311-d9f4-432c-953a-1c1042b33c97.htm
August 26, 2008 at 4:47 am
Bhuvnesh,
I guess you have not gone through the problem fully.
Thanks,
Amit Khanna
August 26, 2008 at 2:56 am
Change the definition of Position Column to
Position VARCHAR(8000) NOT NULL
This will work.
Thanks,
Amit Khanna
August 26, 2008 at 1:01 am
Viewing 15 posts - 1 through 15 (of 33 total)