Viewing 12 posts - 181 through 193 (of 193 total)
In fact, there are certain conditions where your Primary Key most certainly should not be considered for your clustered index. If, for example, you are designing a backend to...
July 15, 2008 at 6:03 am
A decent overview with examples and links is in Earland Sommarskog's article here;
http://www.sommarskog.se/dynamic_sql.html#SQL_injection
There's a lot more out there covering in more detail, but IMO this is a good starting point...
July 14, 2008 at 7:18 am
It's a bit of a grim hack - but you could set up a VBA script task to check whether it's the first of the month, and raise a DTS...
June 30, 2008 at 7:28 am
Afraid you can't use TRY - CATCH in a T-SQL UDF.
June 27, 2008 at 7:13 am
Hi,
if you're looking for the equivalent of a sequence in Oracle, you would set up your ID column as an Identity column, for examply as an integer...
June 27, 2008 at 6:17 am
jvElecenter (6/27/2008)
The only difference between your statement and ours is in the dates where you equal to.
We need the info until that date.
it's a stored procedure which...
June 27, 2008 at 3:18 am
jvElecenter (6/25/2008)
We have a stored procedure like this :
SELECT @sql = 'SELECT * FROM dbo.[OPS Sepia$Sales Line] WHERE ([Document Type] = 1) AND...
June 26, 2008 at 10:49 am
Damian (6/26/2008)
this means after sql 2008 I have to re write all the old scripts if I have Where Clause?
Only if you're using the *= =* type syntax. Which...
June 26, 2008 at 9:34 am
Have you considered using Sharepoint for this?
June 26, 2008 at 9:03 am
Set format on cell(s) column(s) or row(s) to ##0.00##
June 26, 2008 at 8:05 am
Hi,
for the logging of individual rows containing errors, in your data transformation task use an OLE DB Destination Error Output connection (red arrow) from the destination for...
June 23, 2008 at 10:06 am
In general, don't.
Cursors are, in SQLServer (and relational database in general) terms, a hack - and a bad one. What you should be aiming to do (and...
April 23, 2008 at 3:20 am
Viewing 12 posts - 181 through 193 (of 193 total)