Viewing 4 posts - 1 through 4 (of 4 total)
Jeff,
I stand corrected. Old dogs and new tricks.
create table #tmp
(
number int
)
insert into #tmp (number) values (1)
insert into #tmp (number)...
December 12, 2018 at 5:06 am
I have used subreports to cause page breaks before. Don't know if that can help you or not.
December 11, 2018 at 7:56 am
Problem is that your temp table #price is local. It will not be in scope for the dynamic SQL. If you changed it to a global temp table then you...
December 11, 2018 at 7:54 am
2 CPU's with 8 cores each. 192 GB RAM. tempDB has 20 data files each 5 GB in size. Both the data and log files for tempDB are on their...
December 10, 2018 at 12:11 pm
Viewing 4 posts - 1 through 4 (of 4 total)