We are running runstats on a table with about 36 million records
Te log file size of the db is 100000, primary log files are 20 and secondary log files are also 20.
First we used the command
this resulted in sql964 ( The transaction log for the database is full).
After this we used the command
and increased the secondary log files to 50.
But with the same result.
In our last try we used the command
and increade the secondary log files to 100.
But also with the same result.
There is enough disk space.
Does anyone have an id how to succesfully execute the runstats?
Te log file size of the db is 100000, primary log files are 20 and secondary log files are also 20.
First we used the command
Code:
runstats on table xxx and indexes all
After this we used the command
Code:
runstats on table xxx
But with the same result.
In our last try we used the command
Code:
runstats on table xxx on columns (id)
But also with the same result.
There is enough disk space.
Does anyone have an id how to succesfully execute the runstats?