I haven’t been using Xeround since a few days after that post, but I was curious so I googled and tried to figure out what I would do. Xeround does support renaming a table with the ALTER TABLE RENAME statement. What I’ve come up with so far is the following: A) create a new table with the desired schema and the name suffixed with _new, B) do a SELECT INTO from the old table to the new table C) rename the old table (add an _old) suffix, D) rename the new table to remove the suffix. After that the application would be accessing the new table.