Viewing 15 posts - 976 through 990 (of 1,396 total)
Declare @msg varchar(100)
DECLARE db_cursor CURSOR FOR
SELECT Name FROM Alldatabases
WHERE OBJECT_ID(Name + 'dbo.<tablename>') IS NOT NULL
ORDER BY Name
OPEN wh_cursor
In your post, you had 2 tables, Settings and Employee, so maybe...
June 25, 2020 at 2:48 pm
TRY/CATCH doesn't catch everything. In fact it won't catch most of the things you really want it to so I simply avoid it completely. Nothing worse than an unreliable...
June 25, 2020 at 2:46 pm
select
a.[name],
sum(iif(b.gender='M', 1, 0)) m_count,
sum(iif(b.gender='F', 1, 0)) f_count
from
#department a
join
#employee b on a.departmentID = b.departmentID
group by
...
June 25, 2020 at 1:50 pm
There's a lot going on in the code which could be looked at. Instead of EXEC(@qry) where the parameters are strung together it could be parameterized using sp_executesql. In terms...
June 18, 2020 at 5:09 pm
To get SQL Server to ignore and continue is possible from a script or procedure by executing another (or more...) stored procedure which contain try/catch where the error is output...
June 18, 2020 at 12:56 pm
Can you write it without the function?
In theory it should be possible but maybe not easily. The tvf is parameterized so I think to remove it would require splitting...
June 17, 2020 at 2:27 pm
The query could be without the cte
select
t1.id, cast(t1.startdate as date) startdate, cast(t1.enddate as date) enddate, cast(td.enddate as date) range_end_dt
from
dbo.test_1 t1
cross apply
...
June 17, 2020 at 1:27 pm
The OP wrote: "output is expected as if member is continuously enrolled without any gap in enrollment get min and max and if there is enrollment gap leave as is." ...
June 17, 2020 at 11:36 am
To resolve for arbitrary relationships in the data requires hierarchical recursion, no? The OP's question and Phil's too
drop table if exists dbo.test_1;
go
create table dbo.test_1(id int,startdate datetime ,enddate...
June 16, 2020 at 5:52 pm
drop table if exists dbo.test_T1;
go
create table dbo.test_T1(
ID1 varchar(8) not null,
ID2 varchar(8)...
June 11, 2020 at 12:15 pm
In 2016 there are some nice built in features to support time zone conversions
/* the list of time zones your instance supports */
select * from sys.time_zone_info;
declare
...
June 8, 2020 at 7:15 pm
this
declare @frDate date='2020-03-31';
with a_cte(DocType, Debit, Credit, Account, Mdate) as
(select 'TC', 10, 20, 123, '2020-03-30'
...
May 31, 2020 at 4:11 pm
In this i want to add condition if @frdate Month = 3 and Date = 31 ...
That's what the OP wrote but is it what they meant? 🙂 Idk
May 31, 2020 at 4:04 pm
Try adding this to your WHERE clause:
AND NOT (
...
May 31, 2020 at 3:40 pm
Viewing 15 posts - 976 through 990 (of 1,396 total)