Viewing 15 posts - 7,801 through 7,815 (of 8,760 total)
SQLRNNR (7/17/2014)
Eirikur Eiriksson (7/17/2014)
Grant Fritchey (7/17/2014)
Threadizens!Make sure we talk if you're Telford this week. The Red Gat Army is travelling up there this afternoon.
Would that be this bunch?
😎
That looks eerily...
July 17, 2014 at 8:20 am
Koen Verbeeck (7/17/2014)
Eirikur Eiriksson (7/17/2014)
Grant Fritchey (7/17/2014)
Threadizens!Make sure we talk if you're Telford this week. The Red Gat Army is travelling up there this afternoon.
Would that be this bunch?
😎
Where is...
July 17, 2014 at 6:46 am
Grant Fritchey (7/17/2014)
Threadizens!Make sure we talk if you're Telford this week. The Red Gat Army is travelling up there this afternoon.
Would that be this bunch?
😎
July 17, 2014 at 6:19 am
Quick thought, I would, if possible, use SSIS to pass the file name and path to an OPENROWSET on the SQL Server.
😎
July 17, 2014 at 6:12 am
Quick thought, have you looked into EXECUTE AS
😎
July 17, 2014 at 5:46 am
Joy Smith San (7/17/2014)
Currently we have a database in SQL Server 2005.
Decided to move that DB into a new VM where we need to install sql server 2008 R2.
We...
July 17, 2014 at 3:52 am
Quick suggestion
😎
DECLARE @COMMENT NVARCHAR(200) = N'Work (210) 401-6838 for debtor(1) ''Guzman, Tarrasa'' status changed from Good to Bad';
SELECT REPLACE(@COMMENT,N'-',N'') AS CLEAN_COMMENT
Result
CLEAN_COMMENT
-----------------------------------------------------------------------------------
Work (210) 4016838 for debtor(1) 'Guzman, Tarrasa' status changed from...
July 17, 2014 at 3:48 am
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
Viewing 15 posts - 7,801 through 7,815 (of 8,760 total)