Viewing 15 posts - 376 through 390 (of 1,048 total)
no, you can still join on these columns.
November 16, 2011 at 1:51 pm
yes, if you specifically deny access to a key by a user, otherwise it can be used in the context of the stored procedure.
November 16, 2011 at 1:48 pm
I despise poorly written code and the reasons are many:
* usually consumes (wastes) precious resources (memory, CPU, I/O)
* exhibits poor concurrency
* poor scalability
* poor documentation
The typical argument I hear for...
November 16, 2011 at 1:42 pm
If you are granted execute persmission on the Stored Procedures , the keys can be used in them by the TSQL code in the SP but not directly.
Except for sysadmins,...
November 16, 2011 at 1:28 pm
Only grant access to the symetric keys to those users/roles that absolutely need to decrypt any column. In my opinion that would be the database administrator(s) only.
Grant execute only on...
November 16, 2011 at 11:54 am
I have never seen any benchmarks comparing these three. If it were me I would only use SQL native client, if only because of its more robust error reporting and...
November 8, 2011 at 9:12 am
Native Client is the most recent driver for the newest version of SQL server for those not using .NET data provider classes (legacy code).
In my experience SQLNCLI(10) is a...
November 8, 2011 at 6:36 am
A primary key is not needed for log tables or certain staging tables. Often I see people add an identity column to these tables anyway... whether it is needed or...
November 8, 2011 at 6:29 am
Tallboy (11/4/2011)
Going back to my example above it looks like I will have to add the task id's to the Client table to keep the whole ref integrity correct and...
November 4, 2011 at 10:38 am
L' Eomot Inversé (11/4/2011)
And yes, doing this is normal practise; but so, regrettably, is using NULL instead of a dummy client id for your own organisation, which says a...
November 4, 2011 at 9:14 am
Tallboy (11/4/2011)
There would be more than 1 task/organisation id to find as the task that the staff member is being paid for, this list of tasks could grow.
Few things remain...
November 4, 2011 at 8:38 am
Tallboy (11/4/2011)
November 4, 2011 at 8:22 am
Tallboy (11/4/2011)
Thats they standrad way of ading non client data to the tbl Client surely this breaks the data integrity of the whoel thing, whne I wan a count of...
November 4, 2011 at 8:15 am
This query is full of performance (scalability) issues. The where clause requires the decryption of virtually every encrypted column in your table then serached with "like '% something %' "...
November 4, 2011 at 7:34 am
Viewing 15 posts - 376 through 390 (of 1,048 total)