Viewing 5 posts - 1 through 5 (of 5 total)
Ninja's_RGR'us is absolutely correct (as he always is) in his syntax and use of CASE in a DELETE statement. However, it doesn't address the question of if you should...
April 12, 2011 at 9:46 am
Collation issues can be very simple or very complex. Collations are implemented at fairly granular levels of database objects, but are defaulted at higher levels (database / server level).
What's...
April 12, 2011 at 9:23 am
As was said above, there is no time in SQL without a date.
Because SQL uses DATETIME instead of having DATE and TIME as separate data types, you must consider two...
April 12, 2011 at 9:18 am
freddie-897605 (4/12/2011)
April 12, 2011 at 8:41 am
Consider creating a new UDF with your new optional parameter, then rewriting your original UDF to call that new UDF.
Example:
You had this:
dbo.CustomFunction1(parameter1, parameter2)
Create this:
dbo.CustomFunction2(parameter1, parameter2,...
February 3, 2011 at 11:10 am
Viewing 5 posts - 1 through 5 (of 5 total)