Viewing 15 posts - 2,536 through 2,550 (of 4,820 total)
June 19, 2017 at 9:00 am
June 16, 2017 at 2:22 pm
June 16, 2017 at 10:46 am
We'll need more than that information to have any idea why the counts are off. We need to know what a single record in the IM_V_Defects table represents, plus...
June 14, 2017 at 1:41 pm
So, why exactly do you need help? Are you getting incorrect results? an error? We don't have any sample data for you, so we've got almost nothing to go on...
June 13, 2017 at 1:19 pm
Perhaps the better question to ask is where, exactly, these # characters are actually appearing. Many products will do that to a field when the value has either a numeric...
June 7, 2017 at 1:31 pm
In either case, unless "do some work here" is for all practical purposes trivial and not in any way time consumptive, I'd keep the updates as separate transactions, and I'd...
June 6, 2017 at 11:03 am
In the Windows world, text files are not generally the same as in the Unix world, as they are generally terminated with CR/LF, which is 0D0A hex, as opposed to...
June 6, 2017 at 10:53 am
Give me a reason to use the new data type when I can't use date functions with it natively, or can't get DATEDIFF in particular to work with it at...
June 2, 2017 at 9:20 am
Try this:
DECLARE @Table1 AS TABLE (
ID int,
[Type] varchar(20),
Date1 date
);
INSERT INTO @Table1 (ID, [Type], Date1)
SELECT 1, 'Initial', '01/05/2015' UNION ALL
SELECT 1, 'Periodic',...
June 2, 2017 at 9:14 am
Views and Full Text Search, are not exactly a good mix. The only way I can see that working is if the search criteria are fixed and known in advance,...
May 25, 2017 at 6:40 am
Just an fyi... the number of rows you'll have is just over 350 million. Large, yes. Gigantor, not really. This is typically the kind of thing that is best served...
May 17, 2017 at 9:29 am
May 17, 2017 at 9:12 am
And while I'm thinking about it, you'll need to realize that you won't have a terribly good looking report if someone chooses 1,000 km increments, or worse yet, 500 km...
May 17, 2017 at 9:03 am
Viewing 15 posts - 2,536 through 2,550 (of 4,820 total)