I got a copy of a client's database and having done an object transfer so as to make it work on my server I discovered that only one stored procedure was copied. I scripted their sp's and tried to run these but was confronted with a massive list of
"Msg 1105, Level 17, State 1
Can't allocate space for object 'sysprocedures' in database 'XXX' because the 'system' segment is full. If you ran out of space in Syslogs, dump the transaction log. Otherwise, use ALTER DATABASE or sp_extendsegment to increase the size of the segment.
I tried DUMP TRANSACTION 'database' with no_log, but this had no effect. I also increased the size of the log and data files but that did not help either.
What am I doing wrong?
"Msg 1105, Level 17, State 1
Can't allocate space for object 'sysprocedures' in database 'XXX' because the 'system' segment is full. If you ran out of space in Syslogs, dump the transaction log. Otherwise, use ALTER DATABASE or sp_extendsegment to increase the size of the segment.
I tried DUMP TRANSACTION 'database' with no_log, but this had no effect. I also increased the size of the log and data files but that did not help either.
What am I doing wrong?