Viewing 15 posts - 1,051 through 1,065 (of 1,396 total)
Needs sample data or it's unlikely to work as intended the first time.
April 14, 2020 at 4:06 pm
alter procedure [dbo].[_BARank]
as
set nocount on;
set xact_abort on;
begin transaction
begin try
Declare
@executor ...
April 14, 2020 at 3:57 pm
delete tc
from
#TradeCode tc
where not exists
(select 1 from #MappingCodeValue mcv
where mcv.ChildCodeType=tc.CodeType
...
April 12, 2020 at 12:07 pm
This puts it all together in 2 styles.
/* Jeff's style */
SELECT Cust_num, Co_num
,Total ...
April 11, 2020 at 5:19 pm
Very very nice pre-aggregation! Now thaaaat's the way to do it.
April 11, 2020 at 4:44 pm
This is great article! I'm going to give it a try.
April 11, 2020 at 3:19 pm
select
Cust_num, Co_num,
sum(amount) Total,
sum(iif(floor(datediff(d,due_date,getdate())/30)=0,amount,0)) [1-30 Days],
sum(iif(floor(datediff(d,due_date,getdate())/30)=1,amount,0)) [31-60 Days],
sum(iif(floor(datediff(d,due_date,getdate())/30)=2,amount,0)) [61-90 Days],
sum(iif(floor(datediff(d,due_date,getdate())/30)>2,amount,0)) [>90 Days]
from EES_App.dbo.artran_all
group by Cust_num, Co_num;
April 11, 2020 at 11:22 am
I think this is horrible advice. The customer number is an identifier for a customer (I assume), and not a magnitude or quantity of some attribute. Therefore, according to...
April 11, 2020 at 11:18 am
Something like this maybe
;with
SiteInfo(SiteId, SiteName, JobId, Grade) as (
select 1, 'aaa', 1, 'a'
union all
select 1,...
April 10, 2020 at 7:30 pm
To see more about what Jonathan's suggesting maybe have a look at this page:
It could be looked at like there're 2 ways to "include" columns in an index: 1) as...
April 10, 2020 at 3:04 pm
drop table if exists #tblRecorddetails;
go
create table #tblRecorddetails(
Recordid int,
Userid ...
April 9, 2020 at 3:29 pm
drop table if exists #temp;
go
create table #temp (
userid int , rid varchar(10), value varchar(100));
insert #temp(userid,rid,value) values
(1,'D01','3'),
(1,'D01','4'),
(2,'C01','hey'),
(2,'C01','1');
with t_cte(userid,rid,value) as (
select
...
April 8, 2020 at 11:36 pm
Maybe this could work too
select
coalesce(ph.username, (select Message from itrm_itbf.temp.security))
from
ITRM_ITBF.[PMD].[PMD_HR] ph
join
ITRM_ITBF.[Dflt].[MANUAL_LSV_PERMISSIONS] mlp on ph.username=mlp.username
...
April 8, 2020 at 4:36 pm
Instead of returning the SSN (which is being sent to the procedure already) could you return COUNT(*)? Count always returns a value.
April 8, 2020 at 4:21 pm
It's data obfuscation project, thus no strict rules what value should be, rather it should be random. Each row should have its own value. When we are out of...
April 6, 2020 at 7:45 pm
Viewing 15 posts - 1,051 through 1,065 (of 1,396 total)