Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 allignment in sql sever management studio express

Author  Topic 

rajasekhar857
Constraint Violating Yak Guru

396 Posts

Posted - 2009-05-07 : 05:56:09
hi,
is there any option available to allign table columns and datatypes in a sequential format in sql server management studio express 2005
like ex:
CREATE TABLE [dbo].[EMREPrescribePatientPharmacy] (
[PATIENT_PHARMACY_ID] [numeric](20, 0) NOT NULL ,
[PATIENT_ID] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[EPRESCRIBE_PHARMACY_ID] [numeric](20, 0) NOT NULL ,
[DISPLAY_SEQUENCE] [numeric](20, 0) NOT NULL
) ON [PRIMARY]
GO
   

- Advertisement -