Reputation: 1571
I have limited Oracle exp. I wrote app for both SQL Server and Oracle, asp.net c#. SQL Server works fine. Oracle one client is not able to run the app. The log shows that the sp starts and then does not do anything. Then the app aborts.
My question is how do i get to debug what is going on? Is it the stored procedures I should focus on?
The App was tested in our Oracle server and it worked on our test server.
I need guidance as to what the problem is, and/or how to discover what the problem is. Then we can think about solving. Here is some info from the log:
4-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.MissedMedications.Views.MedicineTileView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.Orders.Views.OrderTileView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.Schedules.Views.ScheduleTileView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.MissingAllergies.Views.MissingAllergiesTileView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.POWarnings.Views.POWarningsTileView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.Decline.Views.DeclineTileView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.CNA.Views.CNATileView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.Modules.Improved.Views.ImprovedTileView)
04-27-2012|INFO: AutoGrid : ArrangeChildren. True, 0
04-27-2012|INFO: AutoGrid : Arranging children in 1 column(s) by 2 row(s).
04-27-2012|INFO: AutoGrid : ArrangeChildren. True, 11
04-27-2012|INFO: AutoGrid : Arranging children in 2 column(s) by 6 row(s).
04-27-2012|INFO: Bootstrapper : GetInstance(Caliburn.Micro.IWindowManager, '')
04-27-2012|INFO: Bootstrapper : GetInstance(OPTFDashboard.Common.UserInterface.MainWindow.MainWindowViewModel, '')
04-27-2012|INFO: Database : Query: SELECT MODULE_ID, DESCRIPTION FROM OGEN.DBD_C_MODULES WHERE ACTIVE = 1
04-27-2012|INFO: Database : Query: SELECT CODKEY, DESCR FROM OGEN.PAT_C_STATES WHERE FACILITY_KEY = 'BASE' ORDER BY DESCR
04-27-2012|INFO: Database : Query: SELECT CODKEY, DESCR FROM OGEN.PAT_C_FAC_REGION
04-27-2012|INFO: Database : Query: SELECT CORP_KEY, CORP_NAME FROM OGEN.GEN_M_CORPORATION ORDER BY CORP_NAME
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.UserInterface.MainWindow.MainWindowView)
04-27-2012|INFO: Bootstrapper : GetAllInstances(OPTFDashboard.Common.UserInterface.MainWindow.FacilitySelectionView)
04-27-2012|INFO: Database : Query: SELECT R.*, S.MODULE_ID
FROM OGEN.GEN_M_USER_ROLE R
The info lists here those don't actually run that is the issue I think.
Upvotes: 0
Views: 87
Reputation: 1186
Is the Oracle service started, is the connection string valid, can you tnsping the oracle server? Do you have user privileges set?
Upvotes: 1