473,471 Members | 1,744 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

After Backup I loose connection to TOOLSDB

I am running V8 fp 4a on a W2K Server.
I generated a script from CC to backup up my database and got the
following:
CONNECT TO EDPACKD;
QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS;
CONNECT RESET;
BACKUP DATABASE EDPACKD TO "C:\SQLLIB\" WITH 1 BUFFERS BUFFER 1024
PARALLELISM 1 WITHOUT PROMPTING;
CONNECT TO EDPACKD;
UNQUIESCE DATABASE;
CONNECT RESET;

This runs fine and I get the backup. The problem is that I loose my
ability to pull up the Task Center and also to connect to the TOOLSDB.
When I try to connect I get SQL1391N "The database is already in use
by another Instance". The database I am backing up and the toolsdb are
both in the same instance is that the problem? Any ideas would be
greatly appreciated.

Thank you
Nov 12 '05 #1
8 3435
jlb
Hi Steve,
We are experiencing the same problem. We have IBM looking at it. Did you
find the problem?

Nov 12 '05 #2
jlb
Hi Steve,
We are experiencing the same problem. We have IBM looking at it. Did you
find the problem?

Nov 12 '05 #3
I think everyone on W2K has that problem. I opened a PMR and was told
it was related to the QUIESCE DATABASE statement and would be fixed in
FP6. For now, don't use QUIESCE...

On 3 Apr 2004 07:56:49 -0800, ra*******@yahoo.com (Steven) wrote:
I am running V8 fp 4a on a W2K Server.
I generated a script from CC to backup up my database and got the
following:
CONNECT TO EDPACKD;
QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS;
CONNECT RESET;
BACKUP DATABASE EDPACKD TO "C:\SQLLIB\" WITH 1 BUFFERS BUFFER 1024
PARALLELISM 1 WITHOUT PROMPTING;
CONNECT TO EDPACKD;
UNQUIESCE DATABASE;
CONNECT RESET;

This runs fine and I get the backup. The problem is that I loose my
ability to pull up the Task Center and also to connect to the TOOLSDB.
When I try to connect I get SQL1391N "The database is already in use
by another Instance". The database I am backing up and the toolsdb are
both in the same instance is that the problem? Any ideas would be
greatly appreciated.

Thank you


Nov 12 '05 #4
I think everyone on W2K has that problem. I opened a PMR and was told
it was related to the QUIESCE DATABASE statement and would be fixed in
FP6. For now, don't use QUIESCE...

On 3 Apr 2004 07:56:49 -0800, ra*******@yahoo.com (Steven) wrote:
I am running V8 fp 4a on a W2K Server.
I generated a script from CC to backup up my database and got the
following:
CONNECT TO EDPACKD;
QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS;
CONNECT RESET;
BACKUP DATABASE EDPACKD TO "C:\SQLLIB\" WITH 1 BUFFERS BUFFER 1024
PARALLELISM 1 WITHOUT PROMPTING;
CONNECT TO EDPACKD;
UNQUIESCE DATABASE;
CONNECT RESET;

This runs fine and I get the backup. The problem is that I loose my
ability to pull up the Task Center and also to connect to the TOOLSDB.
When I try to connect I get SQL1391N "The database is already in use
by another Instance". The database I am backing up and the toolsdb are
both in the same instance is that the problem? Any ideas would be
greatly appreciated.

Thank you


Nov 12 '05 #5
kurt.wood@NO**@M.state.mn.us (Remove the obvious for replies) wrote in message news:<40**************@news.state.mn.us>...
I think everyone on W2K has that problem. I opened a PMR and was told
it was related to the QUIESCE DATABASE statement and would be fixed in
FP6. For now, don't use QUIESCE...


This is a problem if you have the toolsdb in the same instance that
the database you want to back up is in. You can't do a force
applications all or you kill the script trying for the backup. Do you
have a script that is running to perform the backup through task
center?
Nov 12 '05 #6
kurt.wood@NO**@M.state.mn.us (Remove the obvious for replies) wrote in message news:<40**************@news.state.mn.us>...
I think everyone on W2K has that problem. I opened a PMR and was told
it was related to the QUIESCE DATABASE statement and would be fixed in
FP6. For now, don't use QUIESCE...


This is a problem if you have the toolsdb in the same instance that
the database you want to back up is in. You can't do a force
applications all or you kill the script trying for the backup. Do you
have a script that is running to perform the backup through task
center?
Nov 12 '05 #7
I am running the TOOLSDB in the same instance as my production DB's.
Here is the script I use (it does a bit more than just backups
though!) :

! SC \\MDA_IMS STOP "ArcIMS Tasker 4.0" %
! SC \\MDA_IMS STOP "ArcIMS Monitor 4.0" %
! SC \\MDA_IMS STOP "ArcIMS Application Server 4.0" %

! SC STOP esri_sde %

FORCE APPLICATION ALL %
;CONNECT TO WEBDATA %
;QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS %
;CONNECT RESET %
BACKUP DATABASE WEBDATA TO "F:\mdaback\" WITH 5 BUFFERS BUFFER 1024
PARALLELISM 1 WITHOUT PROMPTING %
;CONNECT TO WEBDATA %
;UNQUIESCE DATABASE %
;CONNECT RESET %

;CONNECT TO MDA_PROD %
;QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS %
;CONNECT RESET %
BACKUP DATABASE MDA_PROD TO "F:\mdaback\" WITH 5 BUFFERS BUFFER 1024
PARALLELISM 1 WITHOUT PROMPTING %
;CONNECT TO MDA_PROD %
;UNQUIESCE DATABASE %
;CONNECT RESET %

! SC START esri_sde %
! D:\Sleep\sleep.exe 30000 %

! SC \\MDA_IMS START "ArcIMS Application Server 4.0" %
! SC \\MDA_IMS START "ArcIMS Monitor 4.0" %
! SC \\MDA_IMS START "ArcIMS Tasker 4.0" %

! F:\BU_SCRIPT\filemove.bat %

--- Compresses the SDE Geodatabase - Added 4/9/2004 KW
! D:\arcgis\ArcSDE\db2exe\bin\sdeversion -o compress -u sde -p ******
-N -s mdadb -i 5151 %
---
On 6 May 2004 10:44:29 -0700, ra*******@yahoo.com (Steven) wrote:
kurt.wood@NO**@M.state.mn.us (Remove the obvious for replies) wrote in message news:<40**************@news.state.mn.us>...
I think everyone on W2K has that problem. I opened a PMR and was told
it was related to the QUIESCE DATABASE statement and would be fixed in
FP6. For now, don't use QUIESCE...


This is a problem if you have the toolsdb in the same instance that
the database you want to back up is in. You can't do a force
applications all or you kill the script trying for the backup. Do you
have a script that is running to perform the backup through task
center?


Nov 12 '05 #8
I am running the TOOLSDB in the same instance as my production DB's.
Here is the script I use (it does a bit more than just backups
though!) :

! SC \\MDA_IMS STOP "ArcIMS Tasker 4.0" %
! SC \\MDA_IMS STOP "ArcIMS Monitor 4.0" %
! SC \\MDA_IMS STOP "ArcIMS Application Server 4.0" %

! SC STOP esri_sde %

FORCE APPLICATION ALL %
;CONNECT TO WEBDATA %
;QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS %
;CONNECT RESET %
BACKUP DATABASE WEBDATA TO "F:\mdaback\" WITH 5 BUFFERS BUFFER 1024
PARALLELISM 1 WITHOUT PROMPTING %
;CONNECT TO WEBDATA %
;UNQUIESCE DATABASE %
;CONNECT RESET %

;CONNECT TO MDA_PROD %
;QUIESCE DATABASE IMMEDIATE FORCE CONNECTIONS %
;CONNECT RESET %
BACKUP DATABASE MDA_PROD TO "F:\mdaback\" WITH 5 BUFFERS BUFFER 1024
PARALLELISM 1 WITHOUT PROMPTING %
;CONNECT TO MDA_PROD %
;UNQUIESCE DATABASE %
;CONNECT RESET %

! SC START esri_sde %
! D:\Sleep\sleep.exe 30000 %

! SC \\MDA_IMS START "ArcIMS Application Server 4.0" %
! SC \\MDA_IMS START "ArcIMS Monitor 4.0" %
! SC \\MDA_IMS START "ArcIMS Tasker 4.0" %

! F:\BU_SCRIPT\filemove.bat %

--- Compresses the SDE Geodatabase - Added 4/9/2004 KW
! D:\arcgis\ArcSDE\db2exe\bin\sdeversion -o compress -u sde -p ******
-N -s mdadb -i 5151 %
---
On 6 May 2004 10:44:29 -0700, ra*******@yahoo.com (Steven) wrote:
kurt.wood@NO**@M.state.mn.us (Remove the obvious for replies) wrote in message news:<40**************@news.state.mn.us>...
I think everyone on W2K has that problem. I opened a PMR and was told
it was related to the QUIESCE DATABASE statement and would be fixed in
FP6. For now, don't use QUIESCE...


This is a problem if you have the toolsdb in the same instance that
the database you want to back up is in. You can't do a force
applications all or you kill the script trying for the backup. Do you
have a script that is running to perform the backup through task
center?


Nov 12 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: anton.aleksandrov | last post by:
Hello, First of all - sorry for may be stupid question, but as I am not a Win* administrator and my field is *nix, I am a little bit stuck with a problem, presented to me by one of the customers....
2
by: Jani Tamminen | last post by:
Is there a way I can drop and recreate the toolsdb? I already have a toolsdb in our server but somehow it is kind of messed up. Whenever I try to drop the following message: SQL1035N The...
4
by: Ed | last post by:
I have a MS SQL database process that is run from ASP.NET. I would like to be able to backup the SQL database using either a full database or transaction log backup immediately before the backup...
1
by: Santhosh | last post by:
Dear All Our production DB2 installation does not have the TOOLSDB, without this I cannot do any scheduled task using the task center. So can you guys, please help me in how to install the...
3
by: Ole | last post by:
When creating a socket connection a typical scenario is: MySocket = ListenSocket.Accept(); but if only one connection is necessary will it then not be better to close the ListenSocket after that...
0
by: Frank Aune | last post by:
Hello, I configure the serial connection using: self.port = serial.Serial(baudrate=57600, timeout=0.06, parity=serial.PARITY_EVEN, stopbits=serial.STOPBITS_TWO, bytesize = serial.EIGHTBITS)
39
by: alex | last post by:
I've converted a latin1 database I have to utf8. The process has been: # mysqldump -u root -p --default-character-set=latin1 -c --insert-ignore --skip-set-charset mydb mydb.sql # iconv -f...
0
by: Toralf Kirsten | last post by:
Hi all, we have installed DB2 V9.5 Trial on a Fedora 6 Linux box (32bit). Since the box is included in a NIS we have manually created db2 users db2inst, dasusr and db2fenc on this box (not in the...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.