Viewing 15 posts - 736 through 750 (of 8,731 total)
January 9, 2018 at 1:29 pm
That's probably because you need to handle the character as part of a unicode string. It's not the same to have '_--' than to have N'_--'. You should also use...
January 9, 2018 at 1:06 pm
Unless anyone has a better idea.
DECLARE @data TABLE(
id int,
grp int
);
INSERT INTO @data
VALUES ( 100,1), ( 101,1), ( 102,1), (...
January 9, 2018 at 11:14 am
I realize your last reply is 2 years past but I'm revisiting this and...
January 9, 2018 at 10:09 am
If you're looking for valid dates and you're using SQL Server 2014, you could simply try to convert them.
SELECT TRY_CONVERT( date, CONVERT( char(8), SomeDateInteger), 112)
January 9, 2018 at 9:51 am
What about removing the temp table from the code?
LOAD *;
SQL
SELECT de.pate_tempor,
de.prod_codigo,
concepto = Convert(char(50),'FOB Fruta Exportacion'),...
January 9, 2018 at 7:14 am
Drop the "var", just use char(8).
January 8, 2018 at 10:30 am
GilaMonster - Monday, January 8, 2018 9:53 AMChange it via the machine's Control Panel
Thank you. But it didn't work. I have no...
January 8, 2018 at 10:26 am
January 8, 2018 at 6:51 am
I have the list of hours part allowed :
08:00:00:00.000
10:00:00:00.000
12:00:00:00.000
14:00:00:00.000
16:00:00:00.000
18:00:00:00.000
I want to fix datetime in my...
January 5, 2018 at 1:58 pm
I have an application with a list of agenda.
One person can assign meetings to someone...
January 5, 2018 at 1:32 pm
Why do you have IDs that are that long? If an ID is 1509 characters long, it might have lost its purpose.
Instead of going for Full Text Search, which...
January 5, 2018 at 7:41 am
Here's a different way. It might be better or worse, so you should test.
WITH CTE AS(
SELECT class, COUNT(item_id) Item_count
FROM jc_item_class
...
January 4, 2018 at 1:48 pm
January 4, 2018 at 11:45 am
January 4, 2018 at 10:56 am
Viewing 15 posts - 736 through 750 (of 8,731 total)