Viewing 15 posts - 1,126 through 1,140 (of 1,360 total)
I think the trick is that we're all in the same boat, so stating why you oppose something but knowing that the final decision might be somewhere else is...
February 3, 2020 at 3:39 pm
I'm not sure I agree on this one - cooperation leads to learning. rather than fight them we can mentor them
Now I work in marketing... the only thing...
February 3, 2020 at 2:19 pm
In the FROM clause of the "main query" the table dbo.ShtStock had been LEFT JOINED to based on the ShtStockId. I changed that to be the dbo.NZ(...) function. The "main...
February 2, 2020 at 12:49 pm
I don't think it's as much an attitude issue as it is a domain knowledge issue. I wouldn't try to tell .Net developers how to write C# code, but...
February 1, 2020 at 2:38 pm
Maybe the obscured error message contains some clues
February 1, 2020 at 1:19 pm
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
Viewing 15 posts - 1,126 through 1,140 (of 1,360 total)