Viewing 15 posts - 871 through 885 (of 1,988 total)
January 12, 2018 at 1:19 pm
January 11, 2018 at 10:42 am
January 11, 2018 at 10:19 am
I would give the very basic answer that it's how much data duplication exists(noun) or the practice of managing data elements to balance performance/data duplication/ease of use(verb). I couldn't give...
January 11, 2018 at 8:23 am
January 11, 2018 at 8:01 am
January 10, 2018 at 1:56 pm
What exactly are you trying to do? Run a SP on another server and use the results on on the current server?
January 10, 2018 at 12:31 pm
January 10, 2018 at 9:39 am
January 9, 2018 at 2:42 pm
January 9, 2018 at 1:00 pm
January 9, 2018 at 11:07 am
Well if all you're ever doing with the target table is truncating it and copying the source table into it just turn the identity off in the target table.
January 9, 2018 at 10:42 am
That should just be a case of doing some integer math.
DECLARE @test_number int
SET @test_number = 99990099
SELECT FLOOR(@test_number / 10000) AS YEAR, FLOOR(@test_number...
January 9, 2018 at 9:41 am
Viewing 15 posts - 871 through 885 (of 1,988 total)