Forum Replies Created

Viewing 15 posts - 736 through 750 (of 1,048 total)

  • RE: 2 questions... first x > '' vs x <> ''

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: SELECT ... FOR XML returns NULL in 2008 but works OK in 2005

    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.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Alternative encryption solutions to builtin SQL 2008 enterprise?

    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)...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: SQL 101 for application programmers

    "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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: SQL Server 2008 rename, jobs not running

    did you run:

    sp_dropserver 'oldServerName'

    sp_addserver 'newServerName', 'local'

    if not, please do that then bounce the service.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: VB6 application with SQL Server 2008

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: VB6 application with SQL Server 2008

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Is xp_cmdshell the only option?

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Is xp_cmdshell the only option?

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: code to select highest in each of several catagories

    sheesh. Lighten up celko. lol

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Most efficient parsing of Juniper syslogs in SQL?

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Clustered Index question

    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.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Clustered Index question

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Most efficient parsing of Juniper syslogs in SQL?

    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...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Most efficent way to merge data into SQL Server database from ODBC source

    I would concur with Craig's advice.

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 736 through 750 (of 1,048 total)