Viewing 15 posts - 1,186 through 1,200 (of 1,396 total)
Give it a try and see! 🙂 Yes it should work like:
select
substring(@test, 4, charindex(N',OU=' collate Latin1_General_CS_AS, st.some_column, 4)-4) some_name
from
some_table st;
January 22, 2020 at 2:15 pm
The safest way to do this imo is to look for the first occurrence of ',OU=' in a case-sensitive way.
declare @testnvarchar(max)=N'CN=Some Person,OU=Sales,OU=Some Company - SK,OU=Companies - Some...
January 22, 2020 at 2:07 pm
Maybe successively cross apply with partial joins? Something like:
with
matrix_1(month_nbr, x_group, [1], [2], [3]) as (
select 1, 'grp a', 1, 1, 1
...
January 21, 2020 at 11:34 pm
Yes, union all works well. Or you could insert into @Temptable twice. It's not clear whether the information in the inserted 'Invoice' should contain all of "same informations (ID,DKey,SKey)..." because...
January 21, 2020 at 1:08 pm
The whole retry loop could be removed in my opinion. This is a basic upsert. The variables used for flow of control are deterministic so the retry is not really...
January 20, 2020 at 3:13 pm
with
hotel_cte(customer_id, type_of_event, event_dt) as (
select 1, 'check in', '2019-12-30'
union all
select 1, 'check out', '2020-01-14'
union all
select 2, 'check in', '2020-01-14'
union all
select 2, 'check out', '2020-01-22'
union all
select 3, 'check...
January 18, 2020 at 3:56 pm
Final answer, shamelessly borrowing from Jonathan, still without CROSS APPLY. Also, Jonathan's answer with sample data cte included (copy/paste/run).
/* borrowed */
with
LifeCycleMaster_cte(Revision_ID, ZPartID, LastCheckDate) as (
select 12, 10,...
January 18, 2020 at 2:26 pm
Well I was close. Should've summarized from the beginning. I thought about CROSS APPLY but it seems fussy when there's no TVF because there's still the old ways. The DISTINCT...
January 18, 2020 at 1:19 pm
with
LifeCycleMaster_cte(Revision_ID, ZPartID, LastCheckDate) as (
select 12, 10, '12/12/2015'
union all
select 15, 120, '12/01/2014'
union all
select 15, 130, '05/05/2016'
union all
select 20, 170, '09/03/2013'
union all
select 20, 200, '09/05/2016'
union all
select 20, 300,...
January 18, 2020 at 3:21 am
One way to simplify things could be to resolve the hierarchical adjacency between airports, countries, and areas using a table. The ServicLevel case logic could also be replaced by a...
January 15, 2020 at 4:31 pm
1) two tables store range data related to two different activities, but for simplicity, I have removed other cols.
Currently there's no way to join rows from table t...
January 13, 2020 at 2:11 pm
How is the data model originally populated? The examples provided set IDENTITY_INSERT ON. Are the examples representative of how inserts into the Child db tables occur in actual usage cases? ...
January 13, 2020 at 12:10 am
How does table t join to table t1? Are the rows intended to be in sequential 1-to-1 correspondence? If yes, why not create only 1 table instead of 2?
January 12, 2020 at 2:52 pm
Is it required to read the file using ADF? There are a few ways to do it with just Sql Server (and without ADF). The Json could be read from...
January 10, 2020 at 3:24 pm
Here's my attempt. Because you're expecting a lot of rows from this query I wouldn't bother with outer applying top(1)'s. Rather it might make sense to break the cte into...
January 5, 2020 at 11:59 pm
Viewing 15 posts - 1,186 through 1,200 (of 1,396 total)