Forum Replies Created

Viewing 15 posts - 586 through 600 (of 1,048 total)

  • RE: does physical dll file needed after we have create assembly based on it?

    Excellent point. I had noticed that but for some reason never took it to the next level. It makes sense since every other database object can be [re]created in the...

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

  • RE: ENCRYPTION/DECRYPTION - SQLSERVER 2005

    All encryption is binary. It appears that particular encrypted data is encoded using BASE64 encoding which can be stored in a varchar() column.

    I'm surprised you don;t have resources in your...

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

  • RE: Documentation for a Project

    it will be very difficult to answer your question with anything other than generalities:

    First you need to provide an overview of the system, what it does and the purpose and...

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

  • RE: Create a new field in between two other existing fields

    The ordering of the columns as they appear in a table definition script is cosmetic, they are organized internally in a way that is best for SQL.

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

  • RE: What privileges should a DBA have in a windows server enviroment?

    I think DBA should have sysadmin rights on the SQL Servers at the very least. There are too many things you need to [re]configure on the server, like folders for...

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

  • RE: does physical dll file needed after we have create assembly based on it?

    As long as you are not using the assembly from any other .net application(s) on that server you do not need to worry about the dll file.

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

  • RE: dual six core processor TSQL

    Sure Jeff, my name is Scott. I've been a participant here for a while so no need for obscurity anymore.

    I have appreciated many of your excellent posts over that time...

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

  • RE: dual six core processor TSQL

    Jeff Moden (4/7/2011)


    sturner (4/7/2011)


    The query optimizer is an impressive piece of logic, but in my opinion it is still not a match for an experience SQL database designer/programmer.

    I couldn't have...

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

  • RE: dual six core processor TSQL

    Jeff Moden (4/7/2011)


    There are times when such parallelism actually makes things slower. Seriously. The time to split the "stream" and reassemble it for final output can sometimes be...

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

  • RE: When to do column only encryption?

    Jeff Moden (4/1/2011)


    I've also seen folks that do it just the opposite. Encrypt the item you're trying to find and look that up in the encrypted column. Makes...

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

  • RE: SQL Server is fast but...

    Slowness at application startup is caused by allocation and initialization of various resources. Some will be memory and process related, some network and some authentication, depending upon many factors and...

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

  • RE: Encryption - what am I guarding against?

    Henry_Lee (4/1/2011)


    However, on the other hand, according to BOL, the Database Master Key is stored in the database, so I wonder if the password can somehow be extracted from the...

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

  • RE: Encryption - what am I guarding against?

    Encryption is only as good as the key management mechanisms and how the other security on the server is implemented. They are all layers of protection and need to be...

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

  • RE: Encryption - what am I guarding against?

    Think in terms of granting execute permission to s stored procedure by some basic web user (app).

    The user does not have access to certificates and keys directly, only granted...

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

  • RE: replacing hardware/keeping the machine name

    after renaming the Windows box be sure to run:

    sp_dropserver 'OLD_SERVER_NAME'

    sp_addserver 'NEW_SERVER_NAME', 'local'

    then stop and restart service.

    When we upgrade a productions server we rename and change the IP addresses....

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

Viewing 15 posts - 586 through 600 (of 1,048 total)