开发者

Can't change data type on MS Access 2007

I have a huge database (800MB) which consists of a field called 'Date Last Modified' at the moment this field is entered as a text data type but need to change it to a Date/Time field to carry out some queries.

I have another exact same database but with only 35MB of data inside it and when I change the data type it works fine, but when I开发者_StackOverflow社区 try to change data type on big database it gives me an error:

Micorosoft Office Access can't change the data type.

There isn't enough disk space or memory

After doing some research some sites mentioned of changing the registry file (MaxLocksPerFile) tried that as well, but no luck :-(

Can anyone help please?


As John W. Vinson says here, the problem you're running into is that Access wants to hold a copy of the table while it makes the changes, and that causes it to exceed the maximum allowable size of an Access file. Compacting and repairing might help get the file under the size limit, but it didn't work for me.

If, like me, you have a lot of complex relationships and reports on the old table that you don't want to have to redo, try this variation on @user292452's solution instead:

  1. Copy the table (i.e. 'YourTable') then paste Structure Only back into your database with a different name (i.e. 'YourTable_new').
  2. Copy YourTable again, and paste-append the data to YourTable_new. (To paste-append, first paste, and select Append Data to Existing Table.)
  3. You may want to make a copy of your Access database at this point, just in case something goes wrong with the next part.
  4. Delete all data in YourTable using a delete query---select all fields, using the asterisk, and then run with default settings.
  5. Now you can change the fields in YourTable as needed and save again.
  6. Paste-append the data from YourTable_new to YourTable, and check that there were no errors from type conversion, length, etc.
  7. Delete YourTable_new.


One relatively tedious (but straightforward) solution would be to break the big database up into smaller databases, do the conversion on the smaller databases, and then recombine them.

This has an added benefit that if, by some chance, the text is an invalid date in one chunk, it will be easier to find (because of the smaller chunk sizes).

Assuming you have some kind of integer key on the table that ranges from 1 to (say) 10000000, you can just do queries like

SELECT *
INTO newTable1
FROM yourtable
WHERE yourkey >= 0 AND yourkey < 1000000

SELECT *
INTO newTable2
FROM yourtable
WHERE yourkey >= 1000000 AND yourkey < 2000000

etc.

Make sure to enter and run these queries seperately, since it seems that Access will give you a syntax error if you try to run more than one at a time.

If your keys are something else, you can do the same kind of thing, but you'll have to be a bit more tricky about your WHERE clauses.

Of course, a final thing to consider, if you can swing it, is to migrate to a different database that has a little more power. I'm guessing you have reasons that this isn't easy, but with the amount of data you're talking about, you'll probably be running into other problems as well as you continue to use Access.

EDIT

Since you are still having some troubles, here is some more detail in the hopes that you'll see something that I didn't describe well enough before:

Here, you can see that I've created a table "OutputIDrive" similar to what you're describing. I have an ID tag, though I only have three entries.

Can't change data type on MS Access 2007

Here, I've created a query, gone into SQL mode, and entered the appropriate SQL statement. In my case, because my query only grabs value >= 0 and < 2, we'll just get one row...the one with ID = 1.

Can't change data type on MS Access 2007

When I click the run button, I get a popup that tells/warns me what's going to happen...it's going to put a row into a new table. That's good...that's what we're looking for. I click "OK".

Can't change data type on MS Access 2007

Now our new table has been created, and when I click on it, we can see that our one line of data with ID = 1 has been copied over to this new table.

Can't change data type on MS Access 2007

Now you should be able to just modify the table name and the number values in your SQL query, and run it again.

Hopefully this will help you with whatever tripped you up.

EDIT 2:

Aha! This is the trick. You have to enter and run the SQL statements one at a time in Access. If you try to put multiple statements in and run them, you'll get that error. So run the first one, then erase it and run the second one, etc. and you should be fine. I think that will do it! I've edited the above to make it clearer.


Adapted from Karl Donaubauer's answer on an MSDN post:

  • Switch to immediate window (Ctl + G)
  • Execute the following statement:

    DBEngine.SetOption dbMaxLocksPerFile, 200000


Microsoft has a KnowledgeBase article that addresses this problem directly and describes the cause:

The page locks required for the transaction exceed the MaxLocksPerFile value, which defaults to 9500 locks. The MaxLocksPerFile setting is stored in the Windows registry.

The KnowledgeBase article says it applies to Access 2002 and 2003, but it worked for me when changing a field in an .mdb from Access 2013.


It's entirely possible that in a database of that size, you've got text data that won't convert to a valid Date/Time.

I would suggest (and you may hate me for this) that you export all those prospective date values from "Big" and go through them (perhaps in Excel) to see which ones are not formatted the way you'd expect.


Assuming that the error message is accurate, you're running up against a disk or memory limitation. Assuming that you have more than a couple of gigabytes free on your disk drive, my best guess is that rebuilding the table would put the database (including work space) over the 2 gigabyte per file limit in Access.

If that's the case you'll need to:

  1. Unload the data into some convenient format and load it back in to an empty database with an already existing table definition.

  2. Move a subset of the data into a smaller table, change the data type in the smaller table, compact and repair the database, and repeat until all the data is converted.

If the error message is NOT correct (which is possible), the most likely cause is a bad or out-of-range date in your text-date column.


  1. Copy the table (i.e. 'YourTable') then paste just its structure back into your database with a different name (i.e. 'YourTable_new').

  2. Change the fields in the new table to what you want and save it.

  3. Create an append query and copy all the data from your old table into the new one.

Hopefully Access will automatically convert the old text field directly to the correct value for the new Date/Time field. If not, you might have to clear out the old table and re-append all the data and use a string to date function to convert that one field when you do the append.

Also, if there is an autonumber field in the old table this might not work because there is no way to ensure that the old autonumber values will line up with the new autonumber values that get assigned.


You've been offered a bunch of different ways to get around the disk space error message.

Have you tried adding a new field to your existing table using Date data type and then updating the field with the value the existing string date field? If that works, you can then delete the old field and rename the new one to the old name. That would probably take up less temp space than doing a direct conversion from string to date on a single field.

If it still doesn't work, you may be able to do it with a sceond table with two columns, the first long integer (make it the primary key), the second, date. Then append the PK and string date field to this empty table. Then add a new date field to the existing table, and using a join, update the new field with the values from the two-column table.

This may run into the same problem. It depends on number of things internal to the Jet/ACE database engine over which we have no real control.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜