Migrating postgresql server as is [closed] - database

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I have to move a postgresql 8.4 server for the company I work from the existing server to a new one. After several attempts the problem that raises is that I cannot clone the database as is. There are several schemas included and user privileges which I would like to maintain since there is no one around from the old stuff to configure it properly.

If you are going from 8.4 on the old server to 8.4 on the new server and both servers have the architecture and operating system (e.g. both 32bit, both same Linux version) then you can copy the data directory after shutting down the old server.
Again: copying the data directory is only reliable if Postgres has been shut down and the environments are the same.

Related

Interaction SQL Server Developer edition with production environment [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
Could I read data from production environment by using SQL Server developer edition?
Maybe exist some licensing restrictions about that?
Technically, there is nothing to stop you. As far as I know is the Developer Edition just different in the not for production purposes statement. It is actually a Enterprise Edition.
If the license allows it? Presumably not if you use it for production purposes. If you use it as part of your development process, it probably is allowed.

How To Export-Import Database in Oracle 11g(Application Express Edition)? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I am beginner in Oracle 11g. I have created a database in oracle 11g(Application Express).
I want to export this database with all data(whole workspace) and import this to another computer where I already have installed Oracle.Is there any way to export-import the whole workspace in oracle 11g application express?
For a full database export/import use
exp user#DB FULL=Y FILE=PATH_TO_DUMPFILE
imp user#DB FULL=Y FILE=PATH_TO_DUMPFILE
The user must have EXP_FULL_DATABASE resp IMP_FULL_DATABASE role (or something equivalent, like DBA). DB is your database (e.g. XE, if you have expreess edition)

Restore same database multiple times [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have my local database called CBS and on the production server there is the same database. Sometimes I want to make a backup on production and want to restore it on my local machine. With SQL Server 2008 I had no problems but now I can't do that.
To restore the production database I changed the destination database from CBS to CBS_PROD. I also changed the file names of the destination database. After restore the CBS_PROD is OK but my former local CBS database is in state "Restoring...".
Please help.
Thanks
Andi
Try Executing this statement
RESTORE DATABASE DataBase_Name
WITH RECOVERY
GO
If you are using SSMS to restore the database make sure you select the following option in "Recovery State" Section.

How to move ClearCase license server from Solaris to Windows [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
We have ClearCase license server installed in Solaris machine which is a very old machine. So our IT department want to stop using this machine and asked us to move the ClearCase license server to somewhere else. So we have installed the Clear Case license server & license administrator in Windows machine. Now we need to move the already existing licenses(300 in number) from Solaris box to windows. Can we do so? what is the procedure to do that? One more thing is now we are supposed to use only 22 of that 300 licenses.
You can check out the procedure described in "How to move licenses to a new server".
You need to release and re-assign licenses through the Rational License Key Center you can log in there).
You will be able to assign only the number of licenses you need for the new license server.

Can anyone help me find a good host that supports MDF file? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
Can anyone help me find a good host that supports MDF file? I have a site that works perfectly in my desktop but when I uploaded it to Arvixe it wont work and I can't get a straight answer from them.
Please I need your help so bad. Thank you.
No. Only small operations will use MDF - serious hosts will isolate SQL servers on dedicated machines.
There is a transfer wizard available allowing data upload to a server database.
And you should look for SQL Server Express, not "mdf files". It is a server technology.

Resources