Viewing 15 posts - 406 through 420 (of 1,114 total)
Garadin,
If your goal is to make your procedures more easily readable and maintain proper formatting... why wouldn't you upcase all the key words rather than lower case them?
Whatever format...
October 8, 2008 at 9:14 am
Greg,
is there any other work around to do the same ?
October 8, 2008 at 9:06 am
Lynn,
Well 🙂
A team around 10 members developed my project three years back. They had written more than 400 stored procedures. They mixed upper case and lower case in each and...
October 8, 2008 at 8:58 am
Greg,
You are absolutely correct. I asked to change the report format so many times. But he is expecting the same report format.
October 8, 2008 at 8:48 am
Gila,
I dont want to change all the text into lower case.
Just i want to change upper case keywords into lower case.
say for example,
1)
SELECT eno
from emp
expected result:
select eno
from emp
2)
SELECT...
October 8, 2008 at 8:35 am
Greg,
Thanks a lot for your help & effort taken for providing me the solution. I really appreciate your effort and help.
But i think you have hardcoded the managerid's. But it...
October 8, 2008 at 8:25 am
Anybody want to share their idea apart from VSS method ?
October 8, 2008 at 8:21 am
Jeff,
Actually i have used your first method to sort the data.
SELECT/UNION ALL and and ORDER BY clause in the last select. It works fine.
Can you help me to get the...
October 8, 2008 at 6:31 am
Dugi,
Good idea 🙂
I have to change more than 400 stored procedure. So i am looking some common code to do it.
October 8, 2008 at 4:02 am
The way you did it is fine, Karthik... only change I would make is to change all the UNION's into UNION ALL for performance and data integrity reasons. UNION...
October 8, 2008 at 3:03 am
Greg, forgive me for posting wrong code.
Please find the correct code.
CREATE TABLE dbo.mgr_calc
(
sID ...
October 8, 2008 at 2:53 am
Oh..Sorry !
Please find the correct one.
CREATE TABLE dbo.mgr_calc
(
sID varchar(15)...
October 7, 2008 at 6:25 am
Anybody want to add some more points ?
October 7, 2008 at 1:14 am
Viewing 15 posts - 406 through 420 (of 1,114 total)