Viewing 15 posts - 46 through 60 (of 429 total)
Jeff Moden (11/20/2014)
NJDave (11/20/2014)
Today, a DBA in my group doesn't understand the reasoning and has experiencing storing the passwords for end-users.
Sounds mean but my suggestion is that anyone that doesn't...
November 20, 2014 at 10:03 am
We're current users. If you have any questions about their software (or any other similar products) I'd prefer to answer privately for a number of reasons.
November 14, 2014 at 8:52 pm
Jeff Moden (11/14/2014)
Is this, by any chance, for an "eDiscovery" system for use during litigation?
Well, I can guarantee you that no one hands over their Outlook data files because they're...
November 14, 2014 at 6:53 pm
Jeff Moden (11/14/2014)
Why not just create a couple of views that use OPENROWSET or OPENQUERY to create the same number of columns and conditionally flop a synonym between the views?
Hi...
November 14, 2014 at 11:52 am
Luis Cazares (11/13/2014)
I was expecting something like that. I don't have a similar procedure because I usually don't need it.
Do you have your own,...
November 13, 2014 at 1:36 pm
Luis Cazares (11/13/2014)
DECLARE @PrVers NVARCHAR(128)
, @PrVersNum DECIMAL(10,2)
, @command NVARCHAR(4000)
SET @PrVers = CAST(SERVERPROPERTY('ProductVersion') AS NVARCHAR(128));
SELECT @PrVersNum = SUBSTRING(@PrVers, 1,CHARINDEX('.', @PrVers) + 1...
November 13, 2014 at 1:13 pm
Eirikur Eiriksson (11/13/2014)
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @PrVers NVARCHAR(128)
, @PrVersNum DECIMAL(10,2)
, @StageTable NVARCHAR(1024) = N''
SET @PrVers = CAST(SERVERPROPERTY('ProductVersion') AS NVARCHAR(128));
SELECT @PrVersNum = SUBSTRING(@PrVers, 1,CHARINDEX('.', @PrVers) + 1 )
PRINT...
November 13, 2014 at 12:29 pm
Eirikur Eiriksson (11/13/2014)
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @PrVers NVARCHAR(128)
, @PrVersNum DECIMAL(10,2)
, @StageTable NVARCHAR(1024) = N''
SET @PrVers = CAST(SERVERPROPERTY('ProductVersion') AS NVARCHAR(128));
SELECT @PrVersNum ...
November 13, 2014 at 12:14 pm
Luis Cazares (11/13/2014)
Here's an example dropping the column to preserve the order and prevent confusing the Intellisense.
DECLARE @PrVers NVARCHAR(128)
,...
November 13, 2014 at 12:09 pm
Alvin Ramard (11/13/2014)
g.britton (11/13/2014)
DECLARE @sql nvarchar(4000) = N'create...
November 13, 2014 at 11:46 am
Eirikur Eiriksson (10/25/2014)
sqldriver (10/25/2014)
Eirikur Eiriksson (10/25/2014)
You are on the right track there, a simple solution would be to "UPPER" the values before hashing. SHA1 is quite a lot cheaper computationally...
October 25, 2014 at 2:13 pm
Eirikur Eiriksson (10/25/2014)
You are on the right track there, a simple solution would be to "UPPER" the values before hashing. SHA1 is quite a lot cheaper computationally than MD5 and...
October 25, 2014 at 9:46 am
Eirikur Eiriksson (10/25/2014)
October 25, 2014 at 7:31 am
ChrisM@home (10/24/2014)
sqldriver (10/24/2014)
ChrisM@Work (10/24/2014)
-- Changes MERGE JOIN to NESTED LOOPS, loses sort required for ROW_NUMBER()
Would you mind explaining some more about this part?
Thanks
Sure. Have a good look at the actual...
October 24, 2014 at 8:36 pm
ChrisM@Work (10/24/2014)
-- Changes MERGE JOIN to NESTED LOOPS, loses sort required for ROW_NUMBER()
Would you mind explaining some more about this part?
Thanks
October 24, 2014 at 11:34 am
Viewing 15 posts - 46 through 60 (of 429 total)