Viewing 15 posts - 376 through 390 (of 1,048 total)
no, you can still join on these columns.
The probability of survival is inversely proportional to the angle of arrival.
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.
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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,...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
November 4, 2011 at 8:38 am
Tallboy (11/4/2011)
The probability of survival is inversely proportional to the angle of arrival.
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...
The probability of survival is inversely proportional to the angle of arrival.
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 %' "...
The probability of survival is inversely proportional to the angle of arrival.
November 4, 2011 at 7:34 am
Viewing 15 posts - 376 through 390 (of 1,048 total)