Hi Friends/Gurus, In SQL server 2005 I use the script option directly from the object. But it appends the database name and user to it. Is there a way I can configure my sql management studio client so that it wont' include the DB name and user when I script something? For eg if I script a table it will say
INSERT INTO [DBNAME].dbo.[TableName](column1,column2)
My expectation is to get justINSERT INTO [TableName](column1,column2)
The reason is, we move the script from dev to uat and then production and we don't want the DB name in the script/stored procedure. The DB names in UAT/production are different from dev environmentThanks,Jay