Viewing 15 posts - 121 through 135 (of 10,144 total)
If you're talking about SQL Server column-level encryption then no, it won't work. Encrypting a single value, say a credit card number, will result in any one of a very...
March 7, 2019 at 6:09 am
March 7, 2019 at 4:48 am
March 7, 2019 at 3:44 am
March 7, 2019 at 3:24 am
March 6, 2019 at 8:58 am
March 6, 2019 at 6:35 am
Today's SSC Featured Contents includes a section on capturing live execution plans using Extended Events.
March 6, 2019 at 5:28 am
March 6, 2019 at 2:17 am
We have a table which have high data insert with a status flag...
March 4, 2019 at 4:45 am
You might wish to disambiguate your WHERE clause before pursuing this further:
WHERE
t2.uitdnst_dt is null
AND t5.OPDRGVR_NR <> '23929'
AND t5.OPDRGVR_NR <> '23843'
OR t2.uitdnst_dt...
February 22, 2019 at 6:16 am
SELECT
t.*,
--q = COUNT(DISTINCT t.Colour) OVER(PARTITION BY [order]),
x.*
FROM #testing t
CROSS APPLY (SELECT n = COUNT(DISTINCT Colour)
FROM #testing ti WHERE ti.[order] =...
February 19, 2019 at 8:21 am
I received a call this morning (2019-02-15) at approximately...
February 15, 2019 at 4:33 am
February 14, 2019 at 5:01 am
SELECT *
INTO #BalanceFlowTypes
FROM (VALUES
('31', 'Disbursement Debit'),
February 8, 2019 at 8:30 am
January 31, 2019 at 7:04 am
Viewing 15 posts - 121 through 135 (of 10,144 total)