Uppercase data-types formatting
Posted: Fri 30 May 2014 09:06
Hello all, I was wondering if I was able to get some assistance on one of the formatting options available and that is to uppercase SQL data-types. I have set this to be uppercase but for some odd reason when I add this statement it doesn't uppercase the data-type int or the keyword as? Any ideas why this is? Perhaps there is another option I need to activate?
Thanks, O.
Code: Select all
CREATE PROCEDURE [dbo].[uspCreateSomething]
@OrderId int
as
SET NOCOUNT ON
INSERT INTO [dbo].[Orderallocation]
(
Orderid
)
VALUES
(
@OrderId
)
SET NOCOUNT OFF
GO