I am wondering if this is my system or if this is a larger issue. I select a view for example.
create view [dbo].EmployeeView
as
select
XE.xEmployeeID
,XE.FirstName
,XE.LastName
from
dbo.xEmployee as XE
if I try and format this it will not do anything.
If I comment out the create view part.
--create view [dbo].EmployeeView
--as
select
XE.xEmployeeID
,XE.FirstName
,XE.LastName
from
dbo.xEmployee as XE
It gets properly formatted.
Also just to note, is there any way for those suggested table names to be lower case?
Thanks
Adam
adam[dot]s[at]softworks[dot]ca
if I try and format this it will not do anything.
If I comment out the create view part.
It gets properly formatted.
Also just to note, is there any way for those suggested table names to be lower case?
Thanks
Adam
adam[dot]s[at]softworks[dot]ca