Viewing 15 posts - 331 through 345 (of 684 total)
Andrew Hancox (2/27/2008)
February 27, 2008 at 3:40 am
wpp9786 (2/22/2008)
How can i...
February 22, 2008 at 8:25 am
shipleyv (2/18/2008)
February 18, 2008 at 1:55 pm
shipleyv (2/18/2008)
February 18, 2008 at 10:41 am
shipleyv (2/18/2008)
February 18, 2008 at 9:26 am
shipleyv (2/18/2008)
February 18, 2008 at 9:04 am
Sorry,
Made a mistake there, that's supposed to be:
set concat_null_yields_null OFF
SQLZ (2/15/2008)
Try this. At the top of your stored procedure, just after the AS clause put in:
set concat_null_yields_null on
Also, for...
February 15, 2008 at 7:26 am
Subba,
Try this. At the top of your stored procedure, just after the AS clause put in:
set concat_null_yields_null on
Also, for your IF statement, try:
if @DefImpact <> ''
begin
set @whereClause =...
February 15, 2008 at 7:22 am
As you've deduced, SQL Server dates are stored in the same way, so the only way to control how it is presented is to change the format of the date,...
February 15, 2008 at 5:08 am
Actually the output is in "odbc canonical with milliseconds" rather than US format.
If you want the date in another format (for display purposes) then you can use the CONVERT function,...
February 15, 2008 at 4:47 am
I don't believe you can alter an existing column and make it an IDENTITY. You can add an identity column to an existing table.
February 15, 2008 at 3:35 am
You'll need seperate SQL Server Enterprise licenses for the database and the reporting services. Here's the statement from MS:
"... the computer running Reporting Services requires a SQL Server license....
February 15, 2008 at 3:20 am
I've taken the two procedure examples you supplied and the stored procedure with the cursor runs faster than your example using the table variable. I had to change the...
February 15, 2008 at 2:56 am
Michael Earl (1/30/2008)
January 30, 2008 at 4:53 am
Viewing 15 posts - 331 through 345 (of 684 total)