Viewing 11 posts - 1 through 11 (of 11 total)
Temporary data has only two columns -
ID - int.
CODE - varchar(40).
CODE is used in join condition.
January 7, 2011 at 12:08 pm
Thank You all for your opinion and insight. It turned out that there was a function call in where clause which was slowing down the query. I removed the function...
January 6, 2011 at 6:01 pm
The view has many columns which are not used in the query. I tried creating index on the view but received a message saying:
Cannot create index because it uses a...
January 5, 2011 at 11:53 am
Did you backup and restore using T-SQL or SSMS Wizard? If using the wizard, then during restore ensure on 'Options' tab, in 'Restore As' grid, the name of the .mdf...
January 2, 2011 at 8:33 am
In SQL Server 2008 management studio, DDL & DML can be scripted using the wizard like this:
http://www.kodyaz.com/articles/sql-server-script-data-with-generate-script-wizard.aspx
This is the fastest way to script DDL and data.
Thank You.
December 31, 2010 at 5:19 pm
I need to alter definition of two columns in a table and its being done like this :
ALTER TABLE dbo.JURISDICTION_FIELD
ALTER COLUMN FIELD_CODE NVARCHAR(60) NOT NULL;
ALTER TABLE dbo.JURISDICTION_FIELD
ALTER COLUMN [DESCRIPTION]...
December 30, 2010 at 8:28 am
Thanks for you reply. Yes, the script was being run on the server, which does not leave room for network connectivity issues.
December 21, 2010 at 10:08 am
Viewing 11 posts - 1 through 11 (of 11 total)