Viewing 15 posts - 916 through 930 (of 3,011 total)
This will do what you want, although I would suggest protecting the certificate private key with the database master key instead of a password, since the password has to be...
April 12, 2011 at 10:34 pm
Create a table showing the offset to UTC time for different time ranges, and then query that table to get the correct UTC offset to convert the local time to...
April 12, 2011 at 1:47 pm
There are fairly simple steps that you can use to eliminate the vast majority of SQL Injection attacks:
Always Use Parameters. Even if you don't use Stored Procedures.
http://weblogs.sqlteam.com/jeffs/archive/2006/07/21/10728.aspx
April 12, 2011 at 11:41 am
Replace this:
SUM(trxquantity) / SUM(trxcount)
with this:
SUM(trxquantity) / NULLIF(SUM(trxcount),0)
April 12, 2011 at 7:59 am
sturner (4/6/2011)
Jeff Moden (4/1/2011)
April 7, 2011 at 9:25 am
My preference would be to find a different vendor.
I consider a vendor who requires sysadmin (or other server role) or dbo access for the normal application login to be incompetent....
April 4, 2011 at 1:56 pm
Does anyone know how to force a 2005 or 2008 maintenance plan backup to use the WITH CHECKSUM option of the backup command?
I have not been able to find the...
April 4, 2011 at 12:43 pm
select MonthName = datename(month,'200602'+'01')
Results:
MonthName
------------------------------
February
April 1, 2011 at 5:39 pm
Steve Jones - SSC Editor (4/1/2011)
Michael Valentine Jones (3/31/2011)
Think of it as a chance to start over without the burden of all that legacy...
April 1, 2011 at 11:36 am
Usually, you only encrypt one or two columns in a database, like a credit card number, and when you encrypt column level data, you only encrypt it when you add...
April 1, 2011 at 11:28 am
Jeff Moden (3/31/2011)
Grant Fritchey (3/31/2011)
Michael Valentine Jones (3/31/2011)
Grant Fritchey (3/31/2011)
You can use a table valued parameter as an output parameter. But what are you trying to do?
I believe that is...
March 31, 2011 at 10:24 pm
repent_kog_is_near (3/31/2011)
March 31, 2011 at 5:45 pm
Grant Fritchey (3/31/2011)
You can use a table valued parameter as an output parameter. But what are you trying to do?
I believe that is only available in SQL 2008 and later...
March 31, 2011 at 4:06 pm
Don't think of it as a failure.
Think of it as a chance to start over without the burden of all that legacy data.
March 31, 2011 at 3:41 pm
As a rule, I give no weight, positive or negative, to certifications when I look at a resume.
March 31, 2011 at 3:30 pm
Viewing 15 posts - 916 through 930 (of 3,011 total)