Viewing 15 posts - 7,801 through 7,815 (of 8,753 total)
mick burden (7/17/2014)
July 17, 2014 at 3:44 am
Quick thought on this problem, if the IP address is the unique key with a temporal attribute of Recorded Date (dte), there is no way of telling if an IP...
July 17, 2014 at 1:49 am
Jack Corbett (7/16/2014)
Eirikur Eiriksson (7/16/2014)
July 16, 2014 at 11:55 pm
JA quick code here, not a full solution, just to get you going;-)
😎
USE tempdb;
GO
;WITH EMP_TRAN AS
(SELECT EmpID, TransDate FROM (VALUES
('00001','1/1/2014')
,('00001','1/2/2014')
...
July 16, 2014 at 11:17 pm
This sample is kind of a walk through, add column, update with encrypted, mask the clear text etc..
😎
USE tempdb;
GO
CREATE TABLE dbo.Name_and_SSN
(Full_Name VARCHAR(50),
CLEAR_SSN VARCHAR(12));
INSERT INTO dbo.Name_and_SSN (Full_Name,CLEAR_SSN)
VALUES
('Egor Mcfuddle' ...
July 16, 2014 at 10:44 pm
Miles Neale (7/16/2014)
OCTom (7/16/2014)
crussell-931424 (7/16/2014)
July 16, 2014 at 2:25 pm
First thought would be a proper four part notation: [mylinkServerName].[Mydatabase].[my schema].[mytable]
😎
July 16, 2014 at 2:22 pm
Welsh Corgi (7/16/2014)
I started out by asking a basic question about encryption.
I am Grateful for the help and I got my answer. Then I asked about the next steps.
If I...
July 16, 2014 at 2:19 pm
Lynn Pettis (7/16/2014)
Eirikur Eiriksson (7/16/2014)
Lynn Pettis (7/16/2014)
TomThomson (7/16/2014)
Jack Corbett (7/16/2014)
Steve Jones - SSC Editor (7/16/2014)
GilaMonster (7/16/2014)
Jeff Moden (7/15/2014)
July 16, 2014 at 11:08 am
Lynn Pettis (7/16/2014)
TomThomson (7/16/2014)
Jack Corbett (7/16/2014)
Steve Jones - SSC Editor (7/16/2014)
GilaMonster (7/16/2014)
Jeff Moden (7/15/2014)
July 16, 2014 at 10:31 am
Welsh Corgi (7/16/2014)
How do I drop the DROP DATABASE ENCRYPTION KEY & DROP MASTER KEY ?I tried but I was unsuccessful.
Did you try the code from this post?
😎
July 16, 2014 at 10:23 am
TomThomson (7/16/2014)
Welsh Corgi (7/16/2014)
If you were to execute the code that I posted you will find that it does not not store a...
July 16, 2014 at 9:37 am
There are some errors in your code, mainly table an column references (non existing table and/or column)
Here is an example using code I pointed to earlier
😎
USE tempdb;
GO
CREATE TABLE dbo.Name_and_SSN
(Full_Name VARCHAR(50),
encodedSSN...
July 16, 2014 at 9:15 am
On the line of George Orwell, "one-size-fits-all as not all sizes are equal"
😎
July 16, 2014 at 7:14 am
Sean Pearce (7/16/2014)
File Version 2014.120.2000.8
Product Version 12.0.2000.8
Size 409 KB
As a workaround, and the method I used to prove my...
July 16, 2014 at 4:36 am
Viewing 15 posts - 7,801 through 7,815 (of 8,753 total)