Physical Database Not found...... 
Author Message
 Physical Database Not found......

I am getting a physical database not found error message when trying to run
a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8 but
only for certain users. All users have the compiled report shortcut in their
start menu programs. The compiled reports work for some users and not
others. A user running the same compiled report stored on their pc can run
it but when logged into Citrix the user will get the error. We are running
Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal 7


Mon, 10 Jan 2005 23:36:32 GMT  
 Physical Database Not found......
Try turning off Use indexes in report options

--

Regards,

Michael Holzemer
*************
Reply in newsgroup only please
*************

Quote:

> I am getting a physical database not found error message when trying to
run
> a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8 but
> only for certain users. All users have the compiled report shortcut in
their
> start menu programs. The compiled reports work for some users and not
> others. A user running the same compiled report stored on their pc can run
> it but when logged into Citrix the user will get the error. We are running
> Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal 7



Tue, 11 Jan 2005 00:29:16 GMT  
 Physical Database Not found......
Scott,

Maybe your ODBC drivers aren't working correctly on some of the computers?
Have you verified that those computers have an ODBC driver set correctly,
and that they can connect to the database?  We use DSNs, and have had
similar problems if we try to run a report on a computer that may be able to
connect to the database fine with other programs, but that has the DSN named
differently, so Crystal doesn't know where to look for the database.

Quote:

> I am getting a physical database not found error message when trying to
run
> a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8 but
> only for certain users. All users have the compiled report shortcut in
their
> start menu programs. The compiled reports work for some users and not
> others. A user running the same compiled report stored on their pc can run
> it but when logged into Citrix the user will get the error. We are running
> Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal 7



Tue, 11 Jan 2005 00:42:59 GMT  
 Physical Database Not found......
The ODBC connection is the same one that the Macola client uses to connect
to SQL. Macola works for the user so I know that the ODBC connection is
functioning and it is the same ODBC connection for all Citrix users which
some can run the compiled reports.

Quote:
> Scott,

> Maybe your ODBC drivers aren't working correctly on some of the computers?
> Have you verified that those computers have an ODBC driver set correctly,
> and that they can connect to the database?  We use DSNs, and have had
> similar problems if we try to run a report on a computer that may be able
to
> connect to the database fine with other programs, but that has the DSN
named
> differently, so Crystal doesn't know where to look for the database.


> > I am getting a physical database not found error message when trying to
> run
> > a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8
but
> > only for certain users. All users have the compiled report shortcut in
> their
> > start menu programs. The compiled reports work for some users and not
> > others. A user running the same compiled report stored on their pc can
run
> > it but when logged into Citrix the user will get the error. We are
running
> > Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal 7



Tue, 11 Jan 2005 01:25:52 GMT  
 Physical Database Not found......
I'm sorry - I should have been more clear.  Is the _name_ of the ODBC
connection the same on all the stations?  The name of the connection that
the report is created with is hardcoded into the report, so if the name of
the connection is different on some computers, that could explain it.  I
don't know how Macola uses the connection, but with the program we use, the
dsn name can be unique for each computer, so we've had to develop a way to
pass the dsn name to crystal through the program we run the report from and
override whatever default crystal has from the machine it was developed on
with the current connection name.

Until we had this process developed, a workaround we used was to go into the
report being developed and go to database<verify database and delete the
driver name, so if it said mydsn.dbo.table, we'd take off the mydsn. to make
it dbo.table, and that took care of the problem.

Quote:

> The ODBC connection is the same one that the Macola client uses to connect
> to SQL. Macola works for the user so I know that the ODBC connection is
> functioning and it is the same ODBC connection for all Citrix users which
> some can run the compiled reports.


> > Scott,

> > Maybe your ODBC drivers aren't working correctly on some of the
computers?
> > Have you verified that those computers have an ODBC driver set
correctly,
> > and that they can connect to the database?  We use DSNs, and have had
> > similar problems if we try to run a report on a computer that may be
able
> to
> > connect to the database fine with other programs, but that has the DSN
> named
> > differently, so Crystal doesn't know where to look for the database.


> > > I am getting a physical database not found error message when trying
to
> > run
> > > a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8
> but
> > > only for certain users. All users have the compiled report shortcut in
> > their
> > > start menu programs. The compiled reports work for some users and not
> > > others. A user running the same compiled report stored on their pc can
> run
> > > it but when logged into Citrix the user will get the error. We are
> running
> > > Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal
7



Tue, 11 Jan 2005 01:54:38 GMT  
 Physical Database Not found......
It is on a terminal server which all 25 users use the same odbc connection.
The odbc connection is used both for macola and crystal. Macola works for
everyone which tells me the odbc connection is ok..the compiled crystal
reports are the same files for all users which work for some and error out
for others. I did a sql profiler to find out where it is bombing out and it
didn't log anything which tells me when that user runs the compiled crystal
report it isn't even trying to hit the sql server.

Quote:
> I'm sorry - I should have been more clear.  Is the _name_ of the ODBC
> connection the same on all the stations?  The name of the connection that
> the report is created with is hardcoded into the report, so if the name of
> the connection is different on some computers, that could explain it.  I
> don't know how Macola uses the connection, but with the program we use,
the
> dsn name can be unique for each computer, so we've had to develop a way to
> pass the dsn name to crystal through the program we run the report from
and
> override whatever default crystal has from the machine it was developed on
> with the current connection name.

> Until we had this process developed, a workaround we used was to go into
the
> report being developed and go to database<verify database and delete the
> driver name, so if it said mydsn.dbo.table, we'd take off the mydsn. to
make
> it dbo.table, and that took care of the problem.


> > The ODBC connection is the same one that the Macola client uses to
connect
> > to SQL. Macola works for the user so I know that the ODBC connection is
> > functioning and it is the same ODBC connection for all Citrix users
which
> > some can run the compiled reports.


> > > Scott,

> > > Maybe your ODBC drivers aren't working correctly on some of the
> computers?
> > > Have you verified that those computers have an ODBC driver set
> correctly,
> > > and that they can connect to the database?  We use DSNs, and have had
> > > similar problems if we try to run a report on a computer that may be
> able
> > to
> > > connect to the database fine with other programs, but that has the DSN
> > named
> > > differently, so Crystal doesn't know where to look for the database.


> > > > I am getting a physical database not found error message when trying
> to
> > > run
> > > > a compiled report. This is occurring on a NT 4.0 TS with Citrix MF
1.8
> > but
> > > > only for certain users. All users have the compiled report shortcut
in
> > > their
> > > > start menu programs. The compiled reports work for some users and
not
> > > > others. A user running the same compiled report stored on their pc
can
> > run
> > > > it but when logged into Citrix the user will get the error. We are
> > running
> > > > Macola 7.5 with SQL 2000 connecting via an ODBC connection and
Crystal
> 7



Tue, 11 Jan 2005 04:16:29 GMT  
 Physical Database Not found......
It is on a terminal server which all 25 users use the same odbc connection.
The odbc connection is used both for macola and crystal. Macola works for
everyone which tells me the odbc connection is ok..the compiled crystal
reports are the same files for all users which work for some and error out
for others. I did a sql profiler to find out where it is bombing out and it
didn't log anything which tells me when that user runs the compiled crystal
report it isn't even trying to hit the sql server


Quote:
> I'm sorry - I should have been more clear.  Is the _name_ of the ODBC
> connection the same on all the stations?  The name of the connection that
> the report is created with is hardcoded into the report, so if the name of
> the connection is different on some computers, that could explain it.  I
> don't know how Macola uses the connection, but with the program we use,
the
> dsn name can be unique for each computer, so we've had to develop a way to
> pass the dsn name to crystal through the program we run the report from
and
> override whatever default crystal has from the machine it was developed on
> with the current connection name.

> Until we had this process developed, a workaround we used was to go into
the
> report being developed and go to database<verify database and delete the
> driver name, so if it said mydsn.dbo.table, we'd take off the mydsn. to
make
> it dbo.table, and that took care of the problem.


> > The ODBC connection is the same one that the Macola client uses to
connect
> > to SQL. Macola works for the user so I know that the ODBC connection is
> > functioning and it is the same ODBC connection for all Citrix users
which
> > some can run the compiled reports.


> > > Scott,

> > > Maybe your ODBC drivers aren't working correctly on some of the
> computers?
> > > Have you verified that those computers have an ODBC driver set
> correctly,
> > > and that they can connect to the database?  We use DSNs, and have had
> > > similar problems if we try to run a report on a computer that may be
> able
> > to
> > > connect to the database fine with other programs, but that has the DSN
> > named
> > > differently, so Crystal doesn't know where to look for the database.


> > > > I am getting a physical database not found error message when trying
> to
> > > run
> > > > a compiled report. This is occurring on a NT 4.0 TS with Citrix MF
1.8
> > but
> > > > only for certain users. All users have the compiled report shortcut
in
> > > their
> > > > start menu programs. The compiled reports work for some users and
not
> > > > others. A user running the same compiled report stored on their pc
can
> > run
> > > > it but when logged into Citrix the user will get the error. We are
> > running
> > > > Macola 7.5 with SQL 2000 connecting via an ODBC connection and
Crystal
> 7



Tue, 11 Jan 2005 04:19:37 GMT  
 Physical Database Not found......
I've received this error and it was because the file p2sodbc.dll wasn't
installed on the client machine.

Quote:

> I am getting a physical database not found error message when trying to
run
> a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8 but
> only for certain users. All users have the compiled report shortcut in
their
> start menu programs. The compiled reports work for some users and not
> others. A user running the same compiled report stored on their pc can run
> it but when logged into Citrix the user will get the error. We are running
> Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal 7



Tue, 11 Jan 2005 22:55:21 GMT  
 Physical Database Not found......
I have the same problem, and Im pretty sure that my odbc is ok.

Im gonna try about that file tomorrow.


Quote:
> I've received this error and it was because the file p2sodbc.dll wasn't
> installed on the client machine.


> > I am getting a physical database not found error message when trying to
> run
> > a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8
but
> > only for certain users. All users have the compiled report shortcut in
> their
> > start menu programs. The compiled reports work for some users and not
> > others. A user running the same compiled report stored on their pc can
run
> > it but when logged into Citrix the user will get the error. We are
running
> > Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal 7



Mon, 17 Jan 2005 17:07:04 GMT  
 Physical Database Not found......
Found the problem...

When the full Crystal Reports program is installed it places a Crystal
folder in the windows directory. Just copy the crystal folder to the clients
windows folder and/or everywhere his profile is stored on servers,etc for NT
based OS's.



Quote:
> I have the same problem, and Im pretty sure that my odbc is ok.

> Im gonna try about that file tomorrow.



> > I've received this error and it was because the file p2sodbc.dll wasn't
> > installed on the client machine.


> > > I am getting a physical database not found error message when trying
to
> > run
> > > a compiled report. This is occurring on a NT 4.0 TS with Citrix MF 1.8
> but
> > > only for certain users. All users have the compiled report shortcut in
> > their
> > > start menu programs. The compiled reports work for some users and not
> > > others. A user running the same compiled report stored on their pc can
> run
> > > it but when logged into Citrix the user will get the error. We are
> running
> > > Macola 7.5 with SQL 2000 connecting via an ODBC connection and Crystal
7



Mon, 17 Jan 2005 20:24:31 GMT  
 
 [ 10 post ] 

 Relevant Pages 

1. Very urgent,Physical database not found.

2. Err Msg "Physical Database Not Found"

3. Physical Database not found

4. Physical database not found. (CR8.5)

5. Physical Database Not Found

6. Physical Database Not Found Please Help

7. Physical database not found...

8. Physical Database Not found

9. Physical Database Not Found

10. Physical Database Not Found Error

11. Physical database not found!!!!!!!!!!!

12. physical database not found

 

 
Powered by phpBB® Forum Software