Viewing 15 posts - 10,351 through 10,365 (of 59,065 total)
December 12, 2018 at 10:54 pm
December 12, 2018 at 9:00 pm
DECLARE @percentComplete float =...December 12, 2018 at 8:52 pm
December 12, 2018 at 8:00 pm
December 12, 2018 at 7:50 pm
December 12, 2018 at 7:17 pm
Adding a bit of a correction, it looks like the dupe-check goes a bit further. It also looks like the only time a particular group/invoice should be returned is if...
December 12, 2018 at 7:09 pm
December 12, 2018 at 6:51 pm
It appears to me that this is an attempt at the "simple" deduplication of data (Temp_Work is self joined) combined with a check for valid data (the <> 0 stuff). That...
December 12, 2018 at 6:24 pm
December 12, 2018 at 7:44 am
December 12, 2018 at 6:57 am
create table #tmp
(
number int
)
insert into #tmp...
December 12, 2018 at 6:46 am
After you've done that, automate the creation of a new file/filegroup for a new "next" month and the auto-magic rebuild of the partitioned view.
Another cool part is that, if...
December 11, 2018 at 10:07 pm
You're on the right track with separate files and file groups.
If the data is static after being loaded, then base your files and file groups so that...
December 11, 2018 at 10:04 pm
Viewing 15 posts - 10,351 through 10,365 (of 59,065 total)