I am importing data from a 15 GB Oracle database into SQL Server using DTS. It bombs while doing the last 4 tables saying " Could not allocate space for object <table_name> in database <database_name> because the 'Primary' filegroup is full.
I have everyhting setup for autoincrement of log and db size on the datbase setup. I am doing the DTS import after executing this SP to truncate log so I dont have the problem of the log getting full.
exec sp_dboption @dbname = '<db_name>',
@optname = 'trunc. log on chkpt.',
@optvalue = 'true'
My questions are
1) Is it good practise to run sp_dboption before the DTS operation of importing 15 GB of data from Oracle into SQL Server?
2) Why am I getting the Primary file group is ful error inspite of my database being set to autoincrement of size and log?
3)This process is running on 3.2 GHZ 75 GB harddrive with 1GB RAM. When I check the free space when I get this error there is only 9 MB fre space available. When I see in the DATA directory I see my db log at 30 GB. Why do I see a log when I have run SP_Dboption to truncate log at check point?
Please advise how I can go about doing this
Thanks
I have everyhting setup for autoincrement of log and db size on the datbase setup. I am doing the DTS import after executing this SP to truncate log so I dont have the problem of the log getting full.
exec sp_dboption @dbname = '<db_name>',
@optname = 'trunc. log on chkpt.',
@optvalue = 'true'
My questions are
1) Is it good practise to run sp_dboption before the DTS operation of importing 15 GB of data from Oracle into SQL Server?
2) Why am I getting the Primary file group is ful error inspite of my database being set to autoincrement of size and log?
3)This process is running on 3.2 GHZ 75 GB harddrive with 1GB RAM. When I check the free space when I get this error there is only 9 MB fre space available. When I see in the DATA directory I see my db log at 30 GB. Why do I see a log when I have run SP_Dboption to truncate log at check point?
Please advise how I can go about doing this
Thanks