Viewing 15 posts - 1,546 through 1,560 (of 26,488 total)
So, how do you report SPAM posts? There used to be a button for reporting such things.
And yes, the spam is back again.
May 21, 2018 at 5:33 pm
May 21, 2018 at 1:40 pm
May 21, 2018 at 12:58 pm
May 21, 2018 at 12:45 pm
;WITH TabData (Code, Date, Type)
AS
(
SELECT
Code, Date,...
May 21, 2018 at 12:37 pm
I will leave it at this; ARRRGGGHHH.
May 21, 2018 at 11:57 am
May 21, 2018 at 11:51 am
May 21, 2018 at 11:42 am
Hope this helps:
DECLARE @tabData TABLE
(
[Code] varchar(7),
[Date] date,
[Type] varchar(20)
);
INSERT INTO @tabData([Code], [Date], [Type])
SELECT '0242589', '2018-04-20', 'HOLHRSAPR'
May 21, 2018 at 11:11 am
May 21, 2018 at 10:29 am
May 18, 2018 at 3:29 pm
May 18, 2018 at 10:57 am
I would stay away from cursors unless you really need to use them. I find that most of the time cursors are good when you need to accomplish maintenance tasks. ...
May 18, 2018 at 10:31 am
May not be a SQL issue but an issue with the VM and/or the host. Have you had the sys admins check things on their end?
May 18, 2018 at 7:59 am
May 18, 2018 at 7:37 am
Viewing 15 posts - 1,546 through 1,560 (of 26,488 total)