Viewing 15 posts - 1 through 15 (of 149 total)
I was able to do hardcode the column and transpose rows to column; however, couldn't do it dynamically... will keep trying.
December 5, 2011 at 2:01 pm
Thanks bt for your response... I will take a look at those.
December 5, 2011 at 11:49 am
You want the user that should be able to select the data using (the SP) from front-end but not be able to view decrypted data and view nulls instead rite?
Laura...
December 2, 2011 at 3:00 pm
Laura how about creating a View?
If the users who do not have access to Select Procs that decrypts the data do a select using Query Analyzer, they should not be...
December 1, 2011 at 2:06 pm
Only grant access to the symetric keys to those users/roles that absolutely need to decrypt any column.
Grant execute only on the stored procedures that are required to retrieve specific...
November 29, 2011 at 11:13 pm
Thanks a lot for your response.
August 8, 2011 at 2:20 pm
try this laura:
http://sqlserverpedia.com/blog/sql-server-bloggers/sql-server-encryption-for-express-or-standard/
August 1, 2011 at 8:55 pm
when you load the data or when application loads the data you would know what language correct.. Use that for the new col and when querying they can use that...
July 29, 2011 at 1:40 pm
Optimize the query and u should be fine. Do not use cast, trimming, substring, order if u dnt need to.
July 29, 2011 at 1:32 pm
may be he is dynamically creating the table and using that table for other steps...
July 29, 2011 at 1:29 pm
or add another column which will have code for language like 1 for english...
July 29, 2011 at 1:26 pm
CREATE PROC ...
AS
BEGIN
DECLARE @strSQL varchar(4000)
SET @strSQL = 'CREATE TRIGGER....'
exec (@strSQL)
END
July 29, 2011 at 1:19 pm
http://www.mssqltips.com/tip.asp?tip=1405
Check this...
July 28, 2011 at 8:57 pm
graham.paramore (7/28/2011)
Thank you Ghanta. So "implemented correctly" is the key - anything obvious I have missed?
Did you create the Environmental Variable?
July 28, 2011 at 8:40 pm
Viewing 15 posts - 1 through 15 (of 149 total)