Viewing 15 posts - 1,021 through 1,035 (of 4,087 total)
August 17, 2018 at 9:04 am
Personally, my preferred method is to convert the string to VARBINARY, particularly since the grid view won't properly display many of the whitespace characters, so it can be difficult to...
August 17, 2018 at 8:51 am
August 17, 2018 at 8:28 am
It's most likely a leading tab instead of a leading space. LTRIM/RTRIM will only remove spaces.
Drew
August 17, 2018 at 7:57 am
August 16, 2018 at 12:40 pm
I think that you might be making an unwarranted...
August 16, 2018 at 12:36 pm
Assuming that you really are looking for a T-SQL version, I believe that this gives you what you are looking for.
SELECT
facility_id,
record_date,
...
August 16, 2018 at 11:50 am
August 15, 2018 at 8:12 am
In very broad terms, you have three options for fields in the SELECT clause of a query with a GROUP BY clause.
August 15, 2018 at 8:08 am
I'm reminded of another bad day. One department at a former employer was using unlicensed software and a disgruntled former employee reported them for software piracy. The president mandated that...
August 14, 2018 at 7:33 am
August 14, 2018 at 7:19 am
August 13, 2018 at 1:21 pm
IIF (TableD.AgentSupervisorID Is Null, OADDR.AgentAddress, HADDR.AgentAddress) As...
August 13, 2018 at 8:27 am
This wasn't the worst day, but it exemplifies the environment in one of the longest running worst times in my work life. I was working at a university, and we...
August 10, 2018 at 9:21 am
Viewing 15 posts - 1,021 through 1,035 (of 4,087 total)