Viewing 15 posts - 181 through 195 (of 279 total)
PRINT is buffered, you can use instead:
RAISERROR ('Message', 1, 1) WITH NOWAIT
March 15, 2013 at 8:54 am
You can encrypt
@cleartext
A variable of type nvarchar, char, varchar, binary, varbinary, or nchar containing the cleartext.
Maximum size is 8,000 bytes.
ENCRYPTBYPASSPHRASE return varbinary value
March 15, 2013 at 3:56 am
And what are in the first line of Summary.txt file?
Should be:
Overall summary:
Final result: ....
March 14, 2013 at 1:08 pm
winmansoft (3/14/2013)
a) What is the exact difference between encryptbypassphrase and encrypting using symmetric key which is protected by a password(while...
March 14, 2013 at 11:25 am
You can protect keys by using a password.
Check this "SQL Server Encryption To Block DBAs Data Access" http://www.mssqltips.com/sqlservertip/2840/sql-server-encryption-to-block-dbas-data-access/
March 14, 2013 at 9:11 am
Maybee, before calling MS look at logs from update? Post logs, maybe someone then will be able to help.
March 14, 2013 at 9:04 am
You can start from here http://download.microsoft.com/download/5/B/D/5BD13FFA-5E34-4AE1-9AA0-C6E6951B8FC8/SQL%20Server%202008%20R2%20High%20Availability%20Architecture%20White%20Paper.docx
March 12, 2013 at 1:34 am
Like george sibbald said, you have a space in the DB name, options are:
- change the db name
- don't make a subdirectory for this db in maintance plan
March 11, 2013 at 2:12 am
Yes, as long as the DB is online, you have enough rights, the certificate is protected by DMK not by a password (which you don't know) you can backup it...
March 5, 2013 at 12:09 pm
Move a TDE Protected Database to Another SQL Server http://technet.microsoft.com/en-us/library/ff773063%28v=sql.105%29.aspx
March 5, 2013 at 9:59 am
And don't forget to check if the DB don't have an enterprise features before downgrade http://www.sqlskills.com/blogs/paul/sql-server-2008-does-my-database-contain-enterprise-only-features/
March 5, 2013 at 1:00 am
But if you have it online, you as a sysadmin still can backup the SMK and DMK and provide new password without knowing the old one to protect the backups...
March 5, 2013 at 12:48 am
"Access is denied" check if account, on which running sql server have sufficient rights
March 3, 2013 at 1:27 pm
Restore from another backup file.
March 2, 2013 at 5:09 am
Do you have enough space for this db? If yes try this, maybe the backup is damaged.
RESTORE VERIFYONLY FROM DISK= N'd:\test\test.bak'
March 2, 2013 at 4:08 am
Viewing 15 posts - 181 through 195 (of 279 total)