Viewing 4 posts - 1 through 4 (of 4 total)
Well,
If you built up a temporary table in a stored procedure, formatted exactly as you require, then returned that, then you would not have any problems with storing the same...
April 23, 2003 at 2:55 am
Just a couple of questions:
I presume you actually want:
1 2 3 4 1
4 5 6 null 1
7 8 null null 2
in...
April 22, 2003 at 3:10 am
You could have a view based on the data, using the following expressions:
For proper case on first name and last:
UPPER(SUBSTRING(first_name, 1, 1)) + SUBSTRING(first_name, 2, 255) AS first_name
For upper case...
April 22, 2003 at 3:05 am
Thanks guys - When I run the execution plan on the SP, it tells me it is going to use a clustered index scan - which sounds OK to me....
April 22, 2003 at 2:44 am
Viewing 4 posts - 1 through 4 (of 4 total)