Club Delphi  
    FTP   CCD     Buscar   Trucos   Trabajo   Foros

Retroceder   Foros Club Delphi > Principal > Conexión con bases de datos
Registrarse FAQ Miembros Calendario Guía de estilo Temas de Hoy

Conexión con bases de datos

Respuesta
 
Herramientas Buscar en Tema Desplegado
  #1  
Antiguo 10-05-2013
Avatar de maxid
maxid maxid is offline
Miembro
 
Registrado: ene 2006
Posts: 38
Poder: 0
maxid Va por buen camino
Cool zeos 7.0.3 stable +firebird + delphi xe2 + problemas de conexion?

Pregunto por si a alguien le pasa, tengo empezada una aplicacion, que ya me haria perder mucho tiempo pasar a los objetos IB.
Instale Zeoz7 estable, con delphi XE2, firebird 2.1.3 64bits, win7 64bits.
Resulta que abro con EMS Sql una base y desde el ide no puedo abrirla de nuevo. Como si estuviera abierta en modo exclusivo. Si cierro alguna de las dos puedo trabajar. Esto tambien pasa si dejo la propiedad conected del zconnection en true, al iniciar la apllicacion me da un error -904, (justo ahora no tengo la pc de desarrollo. Despues pego una imagen).
Me esta dando dolor de cabeza, trabajar asi y ni les cuento probar la aplicacion en el cliente.
Pido alguna ayuda o sugerencias que me puedan brindar.
__________________
Maestro no solo es el que conoce sino el que comparte lo que sabe.
Responder Con Cita
  #2  
Antiguo 10-05-2013
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.044
Poder: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
Explica mejor lo que te ocurre, no está claro ¿puedes conectar o es que sólo puede conectar uno al mismo tiempo?
¿Qué versión de firebird (2.1) has instalado?, ¿no será por casualidad la "embebed"?
Responder Con Cita
  #3  
Antiguo 10-05-2013
Avatar de maxid
maxid maxid is offline
Miembro
 
Registrado: ene 2006
Posts: 38
Poder: 0
maxid Va por buen camino
Question me parece que es la base

Las versiones instaladas estan nombradas,
Cita:
Instale Zeoz7 estable, con delphi XE2, firebird 2.1.3 64bits, win7 64bits.
No es embedded, la enbedded no se instala solo se copia en el mismo lugar del exe, pero no hay nada.
Es mas, hice la prueba en otro equipo todo con 32bits y me da el mismo error.
La base de datos la restauré de un backup, como local.
Pero me parece que es un problema de la base, porque con los objetos IB, me acusa que la base esta shutdown.
Alguna idea?
__________________
Maestro no solo es el que conoce sino el que comparte lo que sabe.
Responder Con Cita
  #4  
Antiguo 10-05-2013
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.044
Poder: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
Database Shutdown
If there is maintenance work required on a database, you may wish to close down that database under certain cir-
cumstances. This is different from stopping the Firebird server as the server may well be running other databases
which you do not wish to affect.
The command to close a database is:
gfix -shut OPTION TIMEOUT database_name
The TIMEOUT parameter is the time, in seconds, that the shutdown must complete in. If the command cannot
complete in the specified time, the shutdown is aborted. There are various reasons why the shutdown may not
complete in the given time and these vary with the mode of the shutdown and are described below.
The OPTION parameter is one of the following:

-at[tach]
- prevents new connections.

-tr[an]
- prevents new transactions.
Gfix - Database Housekeeping
18

-f[orce]
- simply aborts all connections and transactions.
When a database is closed, the SYSDBA or the database owner can still connect to perform maintenance oper-
ations or even query and update the database tables.
Note
If you specify a long time for the shutdown command to complete in, you can abort the shutdown by using the
-online
command (see below) if the timeout period has not completed.
Preventing New Connections
-at[tach]
: this parameter prevents any new connections to the database from being made with the exception
of the SYSDBA and the database owner. The shutdown will fail if there are any sessions connected after the
timeout period has expired. It makes no difference if those connected sessions belong to the SYSDBA, the
database owner or any other user. Any connections remaining will terminate the shutdown with the following
details:
linux> gfix -shut -attach 5 my_employee
lock conflick on no wait transaction
-database shutdown unsuccessful
Anyone other than the SYSDBA or database owner, attempting to connect to the database will see the following:
linux> isql my_employee -user norman -password whatever
Statement failed, SQLCODE = -901
database my_employee shutdown
Use CONNECT or CREATE DATABASE to specify a database
SQL>
Connections in the database will still be able to start new transactions or complete old ones.
Preventing New Transactions
-tr[an]
: prevents any new transactions from being started and also prevents new connections to the database.
If there are any active transactions after the timeout period has expired, then the shutdown will fail as follows:
linux> gfix -shut -tran 5 my_employee
lock conflick on no wait transaction
-database shutdown unsuccessful
If any user connected to the database being shutdown with the
-tr[an]
tries to start a new transaction during
the shutdown timeout period, the following will result:
SQL> select * from test;
Statement failed, SQLCODE = -902
database /home/norman/firebird/my_employee.fdb shutdown in progress
Statement failed, SQLCODE = -902
database /home/norman/firebird/my_employee.fdb shutdown in progress
Statement failed, SQLCODE = -901
Dynamic SQL Error
-SQL error code = -901
-invalid transaction handle (expecting explicit transaction start)


Gfix - Database Housekeeping
19
Force Closure
-f[orce]
: shuts down with no regard for the connection or transaction status of the database. No new con-
nections or transactions are permitted and any active sessions are terminated along with any active transactions.
Anyone other than SYSDBA or the database owner trying to connect to the database during the timeout period
will not be able to connect successfully or start any (new) transactions.
Be nice to your users, use the
-f[orce]
option with great care.
Warning
There is a bug in Classic Server which still exists at version 2.0. The bug is such that the
-f[orce]
option
behaves in exactly the same way as the
-at[tach]
option.
Starting a Database
Once all maintenance work required on a database has been carried out, you need to restart the database to allow
normal use again. (See shutdown option above for details of closing a database.)
The
-o[nline]
command allows a database to be restarted. It takes a single parameter which is the database
name as follows:
gfix -o[nline] database_name
The following example shows a closed database being started.
linux> gfix -online my_employee

Responder Con Cita
  #5  
Antiguo 10-05-2013
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.044
Poder: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
http://www.intitec.com/varios/Firebird-gfix.pdf
Responder Con Cita
  #6  
Antiguo 10-05-2013
Avatar de maxid
maxid maxid is offline
Miembro
 
Registrado: ene 2006
Posts: 38
Poder: 0
maxid Va por buen camino
Exclamation no entiendo

Casimiro, gracias pero no entiendo para que me pones toda la documentacion. La base es restaurada de un backup. No tiene errores. Igual le hice gfix -f mibase.fdb y sigue igual.
__________________
Maestro no solo es el que conoce sino el que comparte lo que sabe.
Responder Con Cita
  #7  
Antiguo 10-05-2013
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.044
Poder: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
Te pongo la documentación para que la leas, ¿para qué si no?

Como dice ahí, con -shut la cierras a conexiones y con -o la pones online, por si acaso es eso.

gfix -shut -tran 5 my_employee

The -o[nline] command allows a database to be restarted. It takes a single parameter which is the database name as follows:

gfix -o[nline] database_name

Y si no es eso, entonces, tendrás que das más información.
Responder Con Cita
  #8  
Antiguo 10-05-2013
Avatar de maxid
maxid maxid is offline
Miembro
 
Registrado: ene 2006
Posts: 38
Poder: 0
maxid Va por buen camino
pruebo y me da esto

Probe de nuevo desde win y desde un server con linux.
Desde cualquier lado no me deja abrir la base en 2 lugares a la vez. Incluso usando controles IB y con lazarus.
Lo raro es que tengo un backup y lo restauro sin garbage ni transacciones in limbo. Pero solo me pasa con esta base, y es la primera vez que me ocurre en años de uso de Interbase/Firebird
Imágenes Adjuntas
Tipo de Archivo: jpg gfix.jpg (9,5 KB, 3 visitas)
Tipo de Archivo: jpg error -904 zeos 703.jpg (5,7 KB, 3 visitas)
Tipo de Archivo: jpg error -904 ems.jpg (13,1 KB, 3 visitas)
__________________
Maestro no solo es el que conoce sino el que comparte lo que sabe.
Responder Con Cita
  #9  
Antiguo 10-05-2013
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.044
Poder: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
Pero si no tienes instalado bien firebird, te está pidiendo fbclient.dll
Responder Con Cita
  #10  
Antiguo 10-05-2013
Avatar de maxid
maxid maxid is offline
Miembro
 
Registrado: ene 2006
Posts: 38
Poder: 0
maxid Va por buen camino
Question parece que anda

Parece que se arregló, no se que es al final.
voy a probar en otro equipo con esta base a ver si anda bien
__________________
Maestro no solo es el que conoce sino el que comparte lo que sabe.
Responder Con Cita
  #11  
Antiguo 10-05-2013
Avatar de Casimiro Notevi
Casimiro Notevi Casimiro Notevi is offline
Moderador
 
Registrado: sep 2004
Ubicación: En algún lugar.
Posts: 32.044
Poder: 10
Casimiro Notevi Tiene un aura espectacularCasimiro Notevi Tiene un aura espectacular
Hombre, algo habrás hecho, él solo no se arregla
Responder Con Cita
Respuesta



Normas de Publicación
no Puedes crear nuevos temas
no Puedes responder a temas
no Puedes adjuntar archivos
no Puedes editar tus mensajes

El código vB está habilitado
Las caritas están habilitado
Código [IMG] está habilitado
Código HTML está deshabilitado
Saltar a Foro

Temas Similares
Tema Autor Foro Respuestas Último mensaje
problemas con conexion de zeos a mysql srangel Conexión con bases de datos 1 29-01-2015 16:01:31
Problema de Conexion Lazarus/Firebird/Zeos waly2k1 Lazarus, FreePascal, Kylix, etc. 2 20-03-2013 19:31:49
Zeos 7.0.3 Stable! geolife Noticias 15 06-01-2013 05:43:35
Conexion Zeos 7 con FireBird 2.5 en Delphi 2010 martini002 SQL 14 29-08-2012 01:55:10
Problemas con la conexion con Zeos Pachangero MySQL 5 24-01-2009 19:04:26


La franja horaria es GMT +2. Ahora son las 17:19:57.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Traducción al castellano por el equipo de moderadores del Club Delphi
Copyright 1996-2007 Club Delphi