Viewing 15 posts - 226 through 240 (of 279 total)
Eduardo Olivera (1/28/2013)
January 28, 2013 at 6:10 am
kpwimberger (1/25/2013)
Thanks to you both for your input. Giving the database role CONTROL permission on the cert, and REFERENCE permission on the key, worked perfectly. We are good to go.
But...
January 28, 2013 at 3:53 am
According to what I found on the internet and tests, the lowest permission is CONTROL on a certificate and only REFERENCES on a symetric key. Then user can't drop or...
January 23, 2013 at 3:00 am
If the DB is in full recovery mode, then you could try use software that analyze transaction log eg. http://www.red-gate.com/products/dba/sql-log-rescue/
January 23, 2013 at 12:43 am
Ed Wagner (1/21/2013)
January 21, 2013 at 6:15 am
robert.nesta123 (1/21/2013)
...but when I filter on REG.
....
You can't filter on REG in this way, because it is encrypted, you can filter only on a decrypted value so:
CONVERT(nvarchar(200),DECRYPTBYKEY(REG)) like '%DY%'
January 21, 2013 at 5:52 am
kpwimberger (1/18/2013)
USE AdventureWorks;
OPEN SYMMETRIC KEY TestSymmetricKey
...
January 21, 2013 at 12:59 am
Empty set add a grand total.
January 20, 2013 at 12:29 pm
kpwimberger (1/17/2013)
But doesn't this mean I need the password inside EVERY proc I write that touches an encrypted column? isn't this adding insecurity into the system? What if the password...
January 18, 2013 at 1:25 am
Yes, if the DB must be online your only option is to increase size of the temdb. Then check what consume space eg:
maybe the tempdb size should be larger.
January 15, 2013 at 2:15 pm
MSSQL_NOOB (1/15/2013)
Anyone with any comments on how do I archive the database? Since MSSQL doesn't support UNC path for MDF - getting error "the...
January 15, 2013 at 2:02 pm
http://msdn.microsoft.com/en-us/library/ms189463.aspx
" PERCENT
Indicates that the query returns only the first expression percent of rows from the result set. Fractional values are rounded up to the next integer...
January 15, 2013 at 1:02 am
Use joins http://msdn.microsoft.com/en-us/library/ms189835.aspx section "C. Using joins and subqueries to data in one table to delete rows in another table"
delete from othertable
from othertable o join user u on u.uid=o.uid...
January 12, 2013 at 2:35 pm
I'm glad I could help 🙂
January 7, 2013 at 7:29 am
Yes, but database must have Case Sensitive collation.
January 6, 2013 at 2:36 pm
Viewing 15 posts - 226 through 240 (of 279 total)