We have a server that was upgraded last year from SQL Server 2005 32 bit to SQL Server 2012 64 bit (both Standard Edition). A new array has been added to the server to allow the creation of a new filegroup that would split the largest and most used tables across the primary and secondary filegroup. I am in the process of starting to move the tables that get assigned to the secondary file group. The table has around 150 GB of disk space used. It is a heap so the clustered index is only used to move the table to secondary file group and then dropped. The statement where I'm getting the mesages is:
CREATE CLUSTERED INDEX [xcTempMove]
ON [dbo].[table_name] (
[PkID] ASC
)WITH ( FILLFACTOR = 90 ) ON [SECONDARY]
The error messages (because I am not getting a single one) are the following:
Msg 0, Level 11, State 0, Line 0
A severe error has occurred on current command. The results, if any, should be discarded.
Msg 0, Level 20, State 0, Line 0
A severe error has occurred on current command. The results, if any, should be discarded.
Event Viewer and SQL logs only show that the SPID was terminated by the host but there is no other information. The session is disconnected.
I would appreciate any assistance that leads to solving this issue.
Eduardo Olivera