Viewing 15 posts - 2,056 through 2,070 (of 26,488 total)
January 3, 2018 at 6:58 pm
January 3, 2018 at 5:39 pm
Maybe this will shed some light on the subject:
DECLARE @testnum DECIMAL(18,2);
SET @testnum = 9.6;
SELECT ROUND(9.6,0);
SELECT ROUND(@testnum,0);
SET @testnum = 99.6;
SELECT ROUND(99.6,0);
SELECT...
January 3, 2018 at 2:00 pm
Now using table aliases, which is what you should be using:
INSERT INTO
[Tbl_ComputerInventory]
(
[ISOCountryAbb3]
, [SiteNumber]
, [ComputerName]
,...
January 3, 2018 at 12:34 pm
Also, your code reformatted and column Fields5-10 treated as a single column:
INSERT INTO
[Tbl_ComputerInventory]
(
[ISOCountryAbb3]
, [SiteNumber]
, [ComputerName]
...
January 3, 2018 at 12:25 pm
January 3, 2018 at 11:05 am
January 3, 2018 at 11:04 am
January 3, 2018 at 11:03 am
Here is one for you all:
http://www.theregister.co.uk/2018/01/02/intel_cpu_design_flaw/
January 3, 2018 at 11:00 am
I think it depends. I have Jeff's delimited split functions in a DBAUtilities database and I can use them in other databases on my laptop. It would help if posted...
January 3, 2018 at 9:08 am
Message
Executed as user: XXXX\SYSTEM. ...ersion: 13.0.4001.0...
January 2, 2018 at 5:37 pm
January 2, 2018 at 3:11 pm
Viewing 15 posts - 2,056 through 2,070 (of 26,488 total)