Viewing 15 posts - 586 through 600 (of 1,048 total)
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...
April 20, 2011 at 2:59 pm
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...
April 15, 2011 at 1:27 pm
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...
April 15, 2011 at 12:29 pm
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.
April 14, 2011 at 8:27 am
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...
April 12, 2011 at 3:29 pm
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.
April 12, 2011 at 12:26 pm
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...
April 7, 2011 at 9:01 am
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...
April 7, 2011 at 8:32 am
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...
April 7, 2011 at 7:27 am
Jeff Moden (4/1/2011)
April 6, 2011 at 1:39 pm
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...
April 6, 2011 at 8:10 am
Henry_Lee (4/1/2011)
April 1, 2011 at 12:32 pm
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...
April 1, 2011 at 10:58 am
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...
April 1, 2011 at 10:40 am
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....
March 31, 2011 at 2:33 pm
Viewing 15 posts - 586 through 600 (of 1,048 total)