Forum Replies Created

Viewing 15 posts - 571 through 585 (of 938 total)

  • RE: A Special Announcement from Andy, Brian, and Steve

    Great news guys!  Congrats!  May you guys find continued success in everything you do!

  • RE: Nightmares

    Hehe.  I was interviewing with the CEO of a manufacturing company for an IT Manager position when an employee came in to tell us every client on the network had simultaneously...

  • RE: The $10,000 Cert

    That would address Microsoft's business decision for creating such a program; however, it does not seem to justify the business decision that individuals and corporations must make in investing in this program. ...

  • RE: The $10,000 Cert

    No offense taken, just wanted to point out the value that this community adds to Microsoft and their product offerings, generally at little to no cost to Microsoft.  Communities like...

  • RE: The $10,000 Cert

    By "this community" is it safe to assume that you're talking about:

    - All these developers who use SQL Server, .NET, Windows, and nearly every other product Microsoft puts out.  The old...

  • RE: The $10,000 Cert

    A bit is a bit, and a byte has been 8 bits since sometime in the late 1970s when they did away with 10-bit, 12-bit, and other strange byte sizes (Anyone else...

  • RE: SQL 2000 DBA Toolkit Part 1

    Thanks.

    There was a question about how to access the functions from a database other than the master database, but I didn't have a chance to respond previously.  Just use 3-part...

  • RE: SQL 2005 Symmetric Encryption

    Hi eengler,

    You're right, it's good programming practice to explicitly cast your results to the proper type.  You should also specify a target size for the cast data type or SQL...

  • RE: Gotcha! SQL Aggregate Functions and NULL

    Thank you Priyaranjan, I appreciate the feedback!

  • RE: Updated SQL Injection

    To "escape" single quotes in SQL Server, you have to double them up meaning you put two single quotes back-to-back:

    SELECT * FROM [Login] where [User] = 'Frances'' test of...

  • RE: Sound Matching and a Phonetic Toolkit

    Yes, unfortunately the SQL Server SOUNDEX() function stops encoding a name when it encounters a non-alphabetic character.  So "DE LA POINTE", "DE LA SOUL", etc. will all encode to "D000". ...

  • RE: Sound Matching and a Phonetic Toolkit

    The code was changed to reflect the NYSIIS "standard" a little better after the article was published (see this discussion board for details).  The "H" in Johanson and Johannsen is...

  • RE: SQL 2000 DBA Toolkit Part 1

    This package doesn't have any asymmetric encryption routines.  All of the encryption algorithms implemented are symmetric encryption algorithms.  (See Windows Help file for more info).  If I were going to implement...

  • RE: Gotcha! SQL Aggregate Functions and NULL

    The only time (that I know of) that SQL returns NULLs with SUM() is if there are no rows to SUM.  This is the case if: 1) There are no...

  • RE: SQL 2000 DBA Toolkit Part 1

    Yes, the encryption is tied to the local machine via the CryptoAPI.  This is by design.

Viewing 15 posts - 571 through 585 (of 938 total)