Viewing 15 posts - 16 through 30 (of 150 total)
The variable in the package will have the one you had hardcoded last time; however, the package will use the value from configuration table if it is implemented correctly.
July 28, 2011 at 8:31 pm
I guess assign number scores to each fruit and place according to your rule and add all the columns into new column or use CTE and use order by that...
July 28, 2011 at 7:08 pm
Jeff Moden (7/28/2011)
July 28, 2011 at 7:03 pm
Thanks a lot Jeff. This will help me save a lot of time. Thanks to Lovell as well as I can use his approach for names and other fields. I...
July 28, 2011 at 6:58 pm
BrainDonor (7/28/2011)
Ghanta (7/27/2011)
Anyone has Procedure to scramble data like addresses
Do you mean column encryption? http://msdn.microsoft.com/en-us/library/ms179331(v=SQL.100).aspx
Ghanta (7/27/2011)
July 28, 2011 at 12:04 pm
Yeah Lowell thanks. I was checking if someone has something generic for this.
July 28, 2011 at 7:49 am
Jeff Moden (7/28/2011)
Ghanta (7/27/2011)
Anyone has Procedure to scramble data like addresses, but the new data should not be any characters... address1 should look like address1 field and so on? Thanks!
Will...
July 28, 2011 at 7:39 am
Thanks a lot Lowell.
July 26, 2011 at 9:37 am
I think this trigger does what I am looking for-
create trigger IT1 on Customers
instead of insert
as
begin
insert into encr_Customers (name,SSN)
select name,
...
July 26, 2011 at 8:30 am
Thanks a lot for your response. So the user can do insert like this:
Insert into TableName(ID, SSN)
Values('1234', '999-111-2323') without even knowing SSN is encrypted and the Public Key using your...
July 26, 2011 at 8:24 am
Elliott Whitlow (7/14/2011)
July 25, 2011 at 3:47 pm
I was asking someone with experience using MS SQL Server Encryption (Asymmetric)... How secured is it? We do not have any policy in place, but moving towards it... Thanks guys...
July 14, 2011 at 1:46 pm
Thanks LutzM for your response. I was just looking for things I should look for in such cases when nothing has changed in the environment or data/indexes/query/parameters.
July 14, 2011 at 8:43 am
Viewing 15 posts - 16 through 30 (of 150 total)