Viewing 15 posts - 106 through 120 (of 748 total)
Thanks Drew, your script failed as it also picks up records like:
DyKE; GaY; K!{%^r; K'r; K([[}-r; K>;[|?[r; K[)r; K[-[#,[r; K[:R; K[;$[r; K[R; K[r; K^r; K{#r; K{&[R; K{&[r; K{:}>r; K{;r; K{>r;...
August 4, 2015 at 11:44 am
Jeff Moden (7/31/2015)
halifaxdal (7/31/2015)
Thanks Scott, I understand now.Understand even more...
Thanks
July 31, 2015 at 7:48 pm
ScottPletcher (7/31/2015)
halifaxdal (7/31/2015)
July 31, 2015 at 2:41 pm
Can you explain '%[a-z]:%\%.%'? My first time to use it, thanks. Basically the sample data is sample only, the real data could be randomly and I have no idea what...
July 31, 2015 at 2:15 pm
ScottPletcher (7/31/2015)
SELECT
breach_content,
RIGHT(breach_content, CASE WHEN SUBSTRING(breach_content, LEN(breach_content) - 3, 1) = '.' THEN 3 ELSE 4...
July 31, 2015 at 2:09 pm
what I come out is something like the following script and I am really not satisfied with it, let alone it processes 3 letter extension only and I need to...
July 31, 2015 at 7:40 am
Thanks Drew, Eirikur, Scott
I have decided to take your suggestion and create another bridge to avoid using the painful concatenated values in a column.
July 15, 2015 at 11:26 am
drew.allen (7/15/2015)
July 15, 2015 at 10:39 am
drew.allen (7/15/2015)
July 15, 2015 at 10:33 am
The only thing left here now is the ORDER BY:
The following code throws me an error:
Column "Reporting_DailyDlpDetail.POLICY_NAME" is invalid in the ORDER BY clause because it is not contained in...
July 7, 2015 at 1:07 pm
cphite (7/7/2015)
The data in that table would be like:
Policy1, Policy_Name 11
Policy1, Policy_Name 12
Policy1, Policy_Name 13
Policy2, Policy_Name 21
Policy2, Policy_Name 22
...etc
Then I would do...
July 7, 2015 at 12:38 pm
ScottPletcher (7/7/2015)
You cannot safely use between. You need to use the >= and < (not <=, as in between) that I used earlier:
WHERE (INSERT_DETECT_TS...
July 7, 2015 at 12:37 pm
The new issue pops up on this task:
For a particular policy, the rolled up sub policies are different in the case of High and the rest.
i.e. If the policy =...
July 7, 2015 at 12:35 pm
I've worked it out:
Sum(CASE WHEN ACTUAL_SEVERITY = 1 and STATUS = 'New' THEN 1 ELSE 0 END) AS [New High],
and off course put Status and ACTUAL_SEVERITY in the Group By
Thanks...
July 7, 2015 at 12:18 pm
Alvin Ramard (7/7/2015)
July 7, 2015 at 11:55 am
Viewing 15 posts - 106 through 120 (of 748 total)