Viewing 15 posts - 736 through 750 (of 1,048 total)
Here is where I must concur with Celko. Nulls should be avoided except when a null value has real meaning to the business logic. (ex: CancellationDate, or MiddleName )
The...
November 10, 2010 at 6:56 am
what happens when you just execute this statement:
SELECT @to AS Recipient, @copy AS Copyto, @subj AS Subject, @message AS Body
FROM dual
Might be a permissions issue.
November 10, 2010 at 6:48 am
We wrote our own encryption classes in .NET using the cryptographic objects/methods. This gave us the ability use our own key management, and be able to encrypt/decrypt data from (T-SQL)...
November 8, 2010 at 2:48 pm
"For the record, in defence of programmers, I have to say that while DBAs are expert at administering and maintaining database servers, few of them would have comparable skills in...
November 8, 2010 at 1:24 pm
did you run:
sp_dropserver 'oldServerName'
sp_addserver 'newServerName', 'local'
if not, please do that then bounce the service.
November 8, 2010 at 11:14 am
On 64bit OS, 16 bit installers will not work and 32 bit drivers will not work. But unless you need to use SQL native client for your application to work...
November 5, 2010 at 1:44 pm
The clients should continue to work as they did before. I say this with a slight caveat, because if the application is doing anything strange, or perhaps depending upon a...
November 5, 2010 at 12:51 pm
There are several products (GFI Faxmaker is one) that work with Exchange or any other SMTP server to provide fax capability. This technology is reliable and has all of the...
November 4, 2010 at 2:33 pm
You might want to consider database mail as a way of sending faxes. You have a lot of flexibility, even passing a query to the senddbmail method. It is...
November 4, 2010 at 2:17 pm
sheesh. Lighten up celko. lol
November 4, 2010 at 1:03 pm
Yeah, that methodology won't cut it. If the the volume of this syslog data is really high a C++ program running native is the way parse and pump this stuff...
November 3, 2010 at 9:03 am
Any non-clustered indexes need to be updated to point to the new data pages when page splits occur so it will take longer when other indexes are involved.
November 3, 2010 at 8:28 am
Null state of a column is determined by a bit in a null bitmap for each row. If there is no null bitmap, or an existing one is full a...
November 3, 2010 at 6:54 am
I would simply do this with a separate .net program. I have seen (and used) a third party syslog parser and loader program as well but it also did inserts...
November 2, 2010 at 11:21 am
I would concur with Craig's advice.
November 1, 2010 at 1:28 pm
Viewing 15 posts - 736 through 750 (of 1,048 total)