Upon executing this code:
select a.ccmpny, b.rdrout
from cust_table a join rdtl_table b on a.ccmpny + cast(a.ccust# as char) = b.rdcomp + cast(b.rdcust as char)
where a.ccmpny in ('93', '95') and a.ccycle <> 'cr'
group by a.ccmpny, b.rdrout
order by a.ccmpny, b.rdrout
I receive the following error.
Server: Msg 1101, Level 17, State 10, Line 2
Could not allocate new page for database 'TEMPDB'. There are no more pages available in filegroup DEFAULT. Space can be created by dropping objects, adding additional files, or allowing file growth.
My DBA increased the size of the database, but to no avail.
Do any of you has a solution for this problem?
Thank you in advance.
Dobe
select a.ccmpny, b.rdrout
from cust_table a join rdtl_table b on a.ccmpny + cast(a.ccust# as char) = b.rdcomp + cast(b.rdcust as char)
where a.ccmpny in ('93', '95') and a.ccycle <> 'cr'
group by a.ccmpny, b.rdrout
order by a.ccmpny, b.rdrout
I receive the following error.
Server: Msg 1101, Level 17, State 10, Line 2
Could not allocate new page for database 'TEMPDB'. There are no more pages available in filegroup DEFAULT. Space can be created by dropping objects, adding additional files, or allowing file growth.
My DBA increased the size of the database, but to no avail.
Do any of you has a solution for this problem?
Thank you in advance.
Dobe