> i have doubt .... i have created a db instance... > and its up & running.... but when i tried to > connect from SQL Studio..it returns error code -709..which > says that the db instance is not running....
Possible Reason why connection through SQLStudio fails with -709 although the database is running: - wrong database name - wrong server name - xserver not running on the server machine (on Windows: c:\>net start xserver) How to check if the database is indeed running: c:\>dbmcli db_enum This should list your database as 'running' c:\>dbmcli -d <dbname> -u <dbmuser,dbmpasssword> db_state This should list the state as WARM. If it is in state COLD, try c:\>dbmcli -d <dbname> -u <dbmuser,dbmpasssword> db_warm and look for error messages. Daniel Dittmar P.S.: And no, you don't need a week of study to get SAP DB up and running. -- Daniel Dittmar SAP DB, SAP Labs Berlin [EMAIL PROTECTED] http://www.sapdb.org/ _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
