For some reason I had a database called "federation" which has caused some confusion.
The USE FEDERATION <fed_name> (<dist_id> = value) WITH RESET re-wires the connection to the federation member on the SERVER side. So technically from the client's side we're still connected to the original database. Thus USE <original_database> will have no effect. In order to get back to the original database, you have to execute USE FEDERATION ROOT WITH RESET.
Assumptions: We are having two databases say "A" and "B",and by default "A" is the database to which we are connected.Now follow the following steps.
Assumptions: We are having two databases say "A" and "B",and by default "A" is the database to which we are connected.Now follow the following steps.
Can't reproduce as outlined in your last comment. Is the same table available in both A and B databases? Can you please attach some screen shots?
Can't reproduce as outlined in your last comment. Is the same table available in both A and B databases? Can you please attach some screen shots?
Issue #8377 |
Closed |
Unreproducible |
Resolved |
Completion |
No due date |
Fixed Build dev-16 |
No time estimate |
For some reason I had a database called "federation" which has caused some confusion.
The USE FEDERATION <fed_name> (<dist_id> = value) WITH RESET re-wires the connection to the federation member on the SERVER side. So technically from the client's side we're still connected to the original database. Thus USE <original_database> will have no effect. In order to get back to the original database, you have to execute USE FEDERATION ROOT WITH RESET.