Viewing 15 posts - 1,171 through 1,185 (of 1,396 total)
So "TimeDayId" is not a particularly accurate name for a DATE type column imo. My suggestion would be to rename the column to "DayDate" or something similar
January 31, 2020 at 7:16 pm
Not tested on Sql 2008 but it should work afaik.
--drop table if exists dbo.test_process_statuses;
--go
create table dbo.test_process_statuses(
ProcessKeyId ...
January 30, 2020 at 12:24 am
Nevermind
January 29, 2020 at 11:14 pm
Thanks Phil I'm a big fan of your articles. I completely agree JSON can be a key element of efficient application data access. As far as data validation goes tho... ...
January 27, 2020 at 2:24 pm
with
other_parts_cte as (
select
p.PartId, t.maskId, t.chemicalid
from
#temp t
...
January 26, 2020 at 2:39 pm
I need when user write any formate different from dd/mm/yyyy
like mm/dd/yyyy or yyyy/mm/dd
convert to dd/mm/yyyy
How to do that please ?
To insert into a column of type DATE in SQL...
January 25, 2020 at 1:58 pm
The 2nd item in the select list is not included in the GROUP BY clause. Shouldn't it be? The tables which are nested inside the STUFF function join to the...
January 24, 2020 at 10:13 pm
select substring(@text, len(@text)-11, 8);
January 24, 2020 at 8:52 pm
You marked your own answer as the answer? Nicely done!
declare
@text ...
January 24, 2020 at 7:35 pm
Nicely done Mark Cowne. My attempt avoids the inequality on date (which makes me nervous) but is otherwise the same.
with
t_rn_cte(person_from, person_to, kind, pctg_new, eff_date, row_num) as (
...
January 24, 2020 at 6:17 pm
Here's an article from SSC:
https://www.sqlservercentral.com/articles/8-ways-to-export-sql-results-to-a-text-file
If it were me I'd use BCP, the Bulk Copy Program that comes with SQL Server.
January 24, 2020 at 12:53 pm
What happens if you add TOP(1)? Will any row convert or does every row fail?
January 23, 2020 at 1:30 pm
drop function if exists dbo.test_name_chopper;
go
create function dbo.test_name_chopper(
@PREFX VARCHAR(10),
@DELIM VARCHAR(30),
@AD_STR VARCHAR(500))
returns table as
return
select
IIF(PATINDEX(@DELIM,@AD_STR collate Latin1_General_CS_AS)<=0,
...
January 22, 2020 at 4:08 pm
Well in my opinion just looking for a comma is risky. Trying to comma parse the entire string multiplies the risk! So that seems unnecessary imo. Here's a safer way...
January 22, 2020 at 3:20 pm
Viewing 15 posts - 1,171 through 1,185 (of 1,396 total)