WAIT(RECEIVE) issue in shared server

I am reading cursor in a thread in C# side. When I stop the thread before fully reading the cursor, then the STATUS in v$shared_server shows WAIT(RECEIVE). If the cursor is fully read then v$shared_server does not contain WAIT(RECEIVE) status. So to avoid this issue one possible solution is to read the cursor fully in background. I am using Oracle 10.2.0.1 and my server is Shared Server.
Please suggest any other solution for this issue.
Thanks in Advance.
Regards
Neena

Hi,
Could you try the following to migrate the logins and check the result?
1. You may drop all the windows login. Modify the script generated by sp_help_revlogin step and replace create login
to drop login.
2. Use the script generated by sp_help_revlogin step to create
Logins. Modify login name to accommodate new domain name.
3. Grant server level roles using the output from:
Generate Server level role related info :
SELECT 'EXEC sp_addsrvrolemember ''' +
p.name + ''' , ''' + r.name + ''';'
FROM
sys.server_principals r
INNER JOIN sys.server_role_members m ON r.principal_id = m.role_principal_id
INNER JOIN sys.server_principals p ON
p.principal_id = m.member_principal_id
WHERE
r.type ='R'
Sample Output :-
EXEC sp_addsrvrolemember 'sa' , 'sysadmin';
4. Map the SIDS using below command for all DB by using ALTER USER. For example:
ALTER USER [DomainA\UserA] with login = [DomainB\UserA]
See:
http://blogs.technet.com/b/mdegre/archive/2011/06/27/can-i-move-sql-server-to-another-domain.aspx
Here some useful articles:
http://www.databasejournal.com/features/mssql/article.php/3922256/Re-generating-SQL-Server-Logins.htm
http://support.microsoft.com/kb/918992/en-us
http://support.microsoft.com/kb/240872
Thanks.
Tracy Cai
TechNet Community Support

Similar Messages

  • Shared Server converted to Dedicated (WAIT(RECEIVE))

    Hi,
    I have an Oracle 9.2.0.7 and using MTS. Someone know why when I start my JBoss application 20 shared servers are in statu WAIT(RECEIVE)? I saw in metalink that this status means that my shared servers were converted to dedicated! How can I turn those connection to shared again?
    Thanks in advance,
    Paulo Almeida
    São Paulo/SP- Brazil

    Hi Paulo,
    Do you have a RAM shortage on your server?
    http://www.dba-oracle.com/t_mts_multithreaded_servers_shared.htm
    My experience concurs that Oracle shared servers should not be used without a compelling reasons (i.e. super high connect/disconnect rates on an instance with limited resources) and that the vast majority of Oracle databases will run more efficiently without shared servers. Dedicated server connects are far faster than multi-threaded server connections, and 64-bit Oracle combined with the low cost of RAM has driven-down the rare cases where shared servers are justified.
    Oracle's Tom Kyte notes:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:5269794407347
    - "Unless you have a real reason to use MTS -- don't."
    - "a shared server connection is by design "slower" than a dedicated server (more stuff goes on, more complex) it is most likely only getting in the way."
    Hope this helps. . .
    Don Burleson
    Oracle Press author
    Author of “Oracle Tuning: The Definitive Reference”
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

  • Shared server config issues

    Dear experts,
    Below is my environment details:
    DB: Oracle 10gR1 Base (10.2.0.1)
    OS: RHEL 5
    I have configured shared servers as shown below:
    1) Set the following parameters
    dispatchers='(protocol=tcp)(dispatchers=2)'
    max_dispatchers=10
    shared_servers=4
    max_shared_servers=10
    circuits (not configured)
    2) Changed TNS parameter as below
    I modified SERVER=DEDICATED to SERVER=SHARED
    3) lsnrctl services
    the output of this command shows dispatchers ready
    Now coming to the issue, when i connect to the database using new tns alias, i see "NONE" displayed under "SERVER" column of the V$SESSION view. It should have been SHARED.
    Appreciate your help in this regard.
    Thanks
    P

    In Shared Server configuration when we see value 'NONE' , it means there is no task being processed by shared server for that session. The server column will infact show status of 'SHARED' if there is some task being processed at that particular time by the shared server process for that session. Hence to check the status, fire some big query and then check the server status .
    you can check the shared server as
    select server from v$session where machine='XXXX' ;--neeraj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Shared server wait(reset)

    Hi,
    I have a problem with shared servers.
    On a RAC database, 2 instances, I use shared servers.. 30 for each instance.
    recently the shared servers become in a wait(reset) status . a that moment, the connexion becomes very long and queries take a long time to execute.
    I added 30 shared servers on each instance with no amelioration. everything works fine when the shared servers status comes back to wait(common).
    any idea why the shared servers become in the wait(reset) status ?
    any ways to prevent (solve) this?
    is it a consequence of something else ?
    ... dedicated conn always works fine...
    tks
    JP

    Hi,
    What does the v$shared_server view tell you about these servers when they are in wait(reset) status?
    Edit: This link http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10755/dynviews_2093.htm gives more information about the statuses in v$shared_server.
    WAIT (RESET) means "Waiting for a circuit to reset after a break"
    Also have a look here: http://oracletoday.blogspot.com/2005/08/configuring-shared-server.html
    HTH
    FJFranken
    Edited by: fjfranken on 18-jul-2011 6:33

  • Shared server issues

    Hello,
    I am learning some about shared servers.
    I've read this part of docs
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14231/manproc.htm#sthref630
    and tried to set shared server in my database.
    So I set parameters:
    dispatcher="(protocol=tcp)(dispatchers=4),
    shared_server=10
    and entry in tnsnames.ora to:
    (connect_data=
    (server=shared)
    (service_name=orcl.mydomain.com)
    Then I restarted my database and connected:
    connect hr
    connect scott
    connect a
    Then I checked v$session.server, but it is showing that all these users are using dedicated server, but there are some who use shared server (sysman and dbsnmp).
    I don't understand it. Anybody could help, please?
    Aliq

    Hi
    when You use Rman you need dedicated connection right so
    suppose your tnsnames.ora is like
    AXIS_DEDICATED=.....then don't delete it add another line
    like AXIS_SHARED=.....
    so Your TNSNAMES would look like
    AXIS_DEDICATED=DESCRIPTION.........server=dedicated............
    AXIS_SHARED=DESCRIPTION.........server=shared............
    now if you want shared server use username/password@AXIS_SHARED
    and in the same database you want to use dedicated like using RMAN
    the use
    username/password@AXIS_DEDICATED
    have fun
    Sunil Mohanty

  • How to set up a basic file sharing server for my small architectural business?

    I have no idea if I have posted in the correct area as this is my first forum post within the apple support community!
    I have been using a 21.5" imac running 10.6.8 for the past 5 years to run my small home based architectural design business. I have been using the internal hard drive & backing up the necessary data to a simple usb external hard drive. I am now looking to firstly purchase a new imac 27" retina and purchase new autocad lt 2015 for mac software. I am looking to have another imac (my old mac) running in conjunction with the new mac. I want both macs to be able to access the same data and am slightly unsure what is the best way to achieve this.....As my old mac is currently only running snow leopard and an old version of autocad for mac 2011 it wont run on any more recent OS. Essentially i believe I have 2 main options with this.... (1) I Accept that I have to purchase 2 no. autocad lt 2015 licences @ a cost of £2300. Or option (2), I only run autocad on the new mac as this will be the primary station and the old mac used for primarily for admin & accounts. I have also recently discovered that it is possible to rent autocad licences for £300p/a which may also be another option (3)!
    I previously had a problem where my hard drive failed on my mac & lost all data on the internal hard drive, luckily I had been backing up all data regularly to my external hard drive and now loss occurred! Obviously with any new system I want to ensure that my data is safe!
    I currently utilise about 250GB of data for business operations but this will obviously grow with time.
    In the future I would like to have the option of potentially being able to access the network data remotely via macbook pro whilst abroad although at this stage this really isnt my primary objective. Although I believe I could achieve this through apple remote desktop.
    I suppose I should provide some information with regard to the required speed of the system...I regularly open 50-100 photos at the same time totalling around 250-500MB. I would like the system to be able to handle this fairly easily.
    I have been trawling through forums and to be honest they are totally confusing me. I have also spent time on the phone to the apple business team and have also discussed my objectives with a member of the apple team in store.
    There have been various options advised to me and I really do not know which is the most appropriate route forward.
    1 - Using a mac mini as the file server and linking the 2 mac devices to this and backing up the mac mini to an external hard drive to ensure no loss of data.
    2 - Using a time capsule as a file server and linking the 2 mac devices to this and backing up the TC to an external hard drive to ensure no loss of data.
    3 - Using the new mac hard drive and linking the 2 macs via thunderbolt (old mac does not have thunderbolt and so I guess I would need another new mac?!) and then backing up the data to a time capsule.
    4 - Using a RAID based server and linking the 2 no. macs.
    Sorry to ramble but any advice really would be greatly received!

    Hi sblemings,
    Welcome to the community.
    I think with your scenario you should ask yourself, how complicated do you want the setup to be and how much time would you have to be able to resolve an issue should one occur with this setup.
    All the options that have been advised would work but they come with complexity and therefore time.
    1 - Using a mac mini as the file server and linking the 2 mac devices to this and backing up the mac mini to an external hard drive to ensure no loss of data.
    2 - Using a time capsule as a file server and linking the 2 mac devices to this and backing up the TC to an external hard drive to ensure no loss of data.
    3 - Using the new mac hard drive and linking the 2 macs via thunderbolt (old mac does not have thunderbolt and so I guess I would need another new mac?!) and then backing up the data to a time capsule.
    4 - Using a RAID based server and linking the 2 no. macs.
    Sorry to ramble but any advice really would be greatly received!
    option 1
    Would be a way to achieve what you want, it would centralise your files and you would only need to backup your file server (as long as all the files you wanted backed up were on it). This could be achieved either using the client and sharing various folders or using Server which would give you more options than you would possibly need.
    option 2
    This is exactly like option 1 except that you wouldn't have to administer another mac however you may limit any future growth.
    option 3
    This option I probably wouldn't pick, you could achieve this with firewire and use a firewire to thunderbolt adapter (saves you having to buy a new iMac)
    option 4
    This option would, depending on your RAID level, give you disk redundancy but remember you would still need to back this up, as RAID is NOT a backup solution.
    I would also ask is there a pressing need to keep the old iMac in service and complicating things by having a server / NAS? Could you not just transfer all your information over to this and continue with the one backup? I would say that doing it this was would be the simplest way of achieving what you want from what I can take from your question.
    As for remotely accessing your data, if you have the right hardware the way to achieve this would be to use a VPN and connect back to your data. However a potentially easier way for you ,would be to use a service like logmein or teamviewer to connect back.
    Hope this helps, and by all means any questions please ask.
    Dan
    How to set up a basic file sharing server for my small architectural business?

  • "found dead shared server" in alert.log

    Hi.
    I am getting the following message in the alert log of 10.2.0.2 database.
    Fri Feb 2 11:13:54 2007
    found dead shared server 'S005', pid = (32, 3)
    Fri Feb 2 11:14:24 2007
    found dead shared server 'S005', pid = (32, 4)
    Fri Feb 2 11:59:48 2007
    found dead shared server 'S001', pid = (11, 1)
    found dead shared server 'S005', pid = (32, 5)
    Fri Feb 2 12:00:04 2007
    found dead shared server 'S001', pid = (80, 165)
    found dead shared server 'S001', pid = (80, 166)
    What does it mean actaully...
    will it affect(what impact) my database.
    Thanks
    JD

    Hi,
    Are you using MTS feature? If yes,
    Then as given in the site:
    http://searchoracle.techtarget.com/tip/0,289483,sid41_gci1018471,00.html
    major issue I have seen with MTS is the dispatcher process getting abruptly killed. For some unknown reason the dispatcher process all of a sudden dies, killing the connected sessions. The following is an extract from the alert.log file for one such error:
    Wed Sep 8 09:07:35 2004
    Errors in file /u01/bdump/abc_d050_521.trc:
    ORA-07445: exception encountered: core dump [00000001026BA2D4] [SIGSEGV] [Address
    not mapped to object] [0x000000018] [] []
    Wed Sep 8 09:07:45 2004
    found dead dispatcher 'D050', pid = (667, 207)
    The dead dispatcher process is restarted once pmon cleans the in-doubt sessions. The workaround for this issue is to turn off the DCD (dead connection detection) feature. Set SQLNET.EXPIRE_TIME = 0 in sqlnet.ora file. This issue occurred in v9.2.0.4 and v9.2.0.5 and Oracle is currently working to resolve the same.
    I think you are not using MTS feature, otherwise you would have received errors
    like above & trace file would have been generated & error.ORA-07445
    If you are not using MTS feature,
    set the initialization parameter shared_servers = 0. also make sure that the parameter dispatcher is not set (it has no default) to anything.
    Message was edited by:
    Seema

  • On 10.9 - I can no longer open, copy or preview files on a shared server

    I am on a 2007 iMAC and I connect to a shared server in our office. I just upgraded to 10.9 and am experiencing a number of problems:
    - When trying to open files through finder I get the notification "Application not found" 
    - When trying to copy to/from server I get error mssages 43 or 8058
    - Can't drag files into applications shown in dock
    - Vectorworks 2010 not working at all
    If I open an application and use File/Open and select files from the server they open fine, but I need to be able to use finder & preview...
    I think the above issues might have something to do with permissions?
    Please help

    I've had the same issues. For me, trashing the permissions didn't resolve anything. The only work-around I've found is force quitting/relaunching the Finder. I have to do it every day, sometimes twice, but at least I can drag, copy and double click on files to launch an app.
    Hope that helps.

  • How to install BDB XML on shared server?

    Hi All,
    1. I want to install BDB XML on a shared server (bluehost). Can anyone suggest me how to do it? Since I dont have enough permissions, some of the 'php shared extensions' are not being installed. I get warning like-
    Installing shared extensions: /usr/lib/php/extensions/no-debug-non-zts-20060613/
    cp: cannot create regular file `/usr/lib/php/extensions/no-debug-non-zts-20060613/#INST@343#': Permission denied
    make: *** [install-modules] Error 1
    2. Also, how can I add new libraries to library path? (Again no permission)
    Any help on these issues would be highly appreciated,
    Thanking you in anticipation.

    I'm talking about Berkeley DB XML, just in case it was not clear.

  • Thread settings in the Application Sharing Server

    Hi,,,
    Iam doing the RTC Application Sharing implementation in the portal.For that we hve to enable the Application Sharing server,Configure the thread settings and finally we have to monitor the application sharing server.
    In the Configure the Thread settings,,, I kept the default values only.
    what are the things we need to change here.In what way it will reflect in the web.Xml file.
    Initial thread count -
    40
    Max. thread count -
    250
    Min. thread count  -
    40
    Max Request Queue size -
    5000
    Thread Idle Timeout Property -
      5
    Could anyone help me to sort this issue.
    Thanks in advance.
    Regards
    Sushma

    I've had this issue in many folders. Very frustrating!

  • APEX error: Found dead shared server

    Hi,
    I frequently encounter an error when working with APEX. If I submit any change to APEX, fi a change on some page item, APEX asks me to whether I'd like to save the wwv_flow_accept URL. I then get a file save dialog. This doesn't happen all the time, but something like 2 out of 10 times I submit something.
    Looking at the database logs, I see an entry in alert.log with this information:
    <pre>
    Fri May 22 17:56:36 2009
    Errors in file c:\oraclexe\app\oracle\admin\xe\bdump\xe_s004_1948.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Fri May 22 17:56:40 2009
    found dead shared server 'S004', pid = (18, 1)
    </pre>
    Looking into the respective trace file gives me this information:
    <pre>
    Dump file c:\oraclexe\app\oracle\admin\xe\bdump\xe_s004_1948.trc
    Fri May 22 17:56:36 2009
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Windows XP Version V5.1 Service Pack 3
    CPU : 1 - type 586, 1 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:727M/1511M, Ph+PgF:1181M/2133M, VA:1428M/2047M
    Instance name: xe
    Redo thread mounted by this instance: 1
    Oracle process number: 18
    Windows thread id: 1948, image: ORACLE.EXE (S004)
    *** ACTION NAME:(PAGE 4311) 2009-05-22 17:56:36.625
    *** MODULE NAME:(APEX:APPLICATION 4000) 2009-05-22 17:56:36.625
    *** CLIENT ID:(CKH_DEV:2151496271973569) 2009-05-22 17:56:36.625
    *** SESSION ID:(29.4) 2009-05-22 17:56:36.625
    *** 2009-05-22 17:56:36.625
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_npierr+487] [PC:0x5F22C3] [ADDR:0x4] [UNABLE_TO_READ] []
    Current SQL statement for this session:
    COMMIT
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    267D174C 1275 package body APEX_030200.WWV_FLOW
    267D174C 5421 package body APEX_030200.WWV_FLOW
    267D174C 13366 package body APEX_030200.WWV_FLOW
    26521088 30 anonymous block
    ----- Call Stack Trace -----
    memory dump follows
    </pre>
    Has anybody an idea what is going wrong on my machine here?
    Best regards,
    Jürgen

    Hi,
    I took a bit of time to dig deeper into this issue. I came to the conclusion that there is a bug in Oracle XE:
    If you connect to Oracle XE database using the EPG path and if you create a report that gets its data over a database link, the shared server processes used to connect to the database break.
    What I did to produce this error:
    I installed Oracle XE Universal Edition on a Windows XP system
    I then updated APEX to the latest version 3.2
    At the database I simply created a database link pointing to the same schema the APEX-application is running at. I tested the database link.
    I then produced a simple test application with just one Report (I also tried a PPR-report with the same result) that displays orders with a query in line with this:
    <pre>
    select o.order_id, i.order_item_id, i.quantity, p.product_name, i.unit_price, i.unit_price * i.quantity amount
    from demo_orders@ckh o, demo_order_items@ckh i, demo_product_info@ckh p
    where o.order_id = i.order_id
    and i.product_id = p.product_id
    order by o.order_id, i.order_item_id
    </pre>
    When I ran this application, I was sometimes able to see the report without an error, sometimes a shared server process broke. You can watch the processes breaking by opening the admin/bdump directory and see how the database writes trace files for the shared server processes.
    Interesting to see is that the error happens not only when you try to see the report. If you hit the edit page link while running the page or if you submit the page definition with the link query in it, the same is likely to happen. You can see this error happening when APEX offers you to download the call to wwv_flow or the f-procedure. The contents of this download then is:
    <pre>IBMPC/WIN_NT-8.1.0</pre>
    with some binary information in front of the message.
    Another bug I'd like to add came up when I was lucky to see the report with the PPR-template. I tried pagination but this wouldn't work. Looking into this, I found the following link:
    <pre>
    javascript:html_PPR_Report_Page(this,'R2060428410112776','javascript:$a_report('2060428410112776','16','15','15');')
    </pre>
    To my understanding this can't work at all if you look a the apostrophes. So how to proceed with this???
    This to me is a severe problem, as I wanted to utilize APEX as a frontend for a production database to report the contents. I was informed by Varad that a way around this is to use an Apache access to Oracle XE but as far as I'm informed, this forces me into a licenced version in order to be able to run mod_plsql.
    I read about the mod_owa-approach, but the programmers state that this is not compatible with APEX. So my question is: Do you have any suggestion on how to proceed with this?
    Thanks,
    Jürgen
    Edited by: j.sieben on May 27, 2009 5:41 PM

  • Any idea for high display resolution in application sharing server ?

    Hi.
    I installed EP6 SP 13 with KMC and configure collaboration feature.
    I tested application sharing and It works.
    Then, I found problem.
    Problem is that application sharing server doesn't support 1400x1050 display resolution. (only works till 1280x1024)
    Is there any idea for solving this issue ?
    Regards, Arnold.

    Hi Arnold,
    I'm afraid this screen resolution is not yet supported. The official supported screen resolution is 1024x768 ! but as you stated it <b>can</b> work wit 1280x1024. You could open an OSS ticket and ask the KM Development for plans on supporting higher resolutions in application sharing and let us also know.
    Hope this helps,
    Robert

  • A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name is no longer available.)

    Hi guys
    i have problem when i run my windows application exe in windows server 2003
    it give me this exception error :
    I using sql server 2005
    visual studio 2008
    See the end of this message for details on invoking 
    just-in-time (JIT) debugging instead of this dialog box.
    ************** Exception Text **************
    System.Data.SqlClient.SqlException: A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name is no longer available.)
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
       at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
       at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
       at System.Data.SqlClient.TdsParserStateObject.ReadByte()
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
       at System.Data.SqlClient.SqlDataReader.get_MetaData()
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
       at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
       at System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
       at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
       at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet)
       at Sales.SalesClass.ShowSalesData(String ConnectionString)
       at Sales.Form1.timer1_Tick(Object sender, EventArgs e)
       at System.Windows.Forms.Timer.OnTick(EventArgs e)
       at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    Sales
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Documents%20and%20Settings/administrator.ALTAWIREADYMIX.000/Desktop/Sales.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Data
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
    System.Transactions
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll
    System.EnterpriseServices
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    Why this error show and how to solve it
    if possible help me
    Why this exception show and how to solve it.
    Notes this exception not close my application and not affect in result show but i don't know why it show

    The problem can be caused by certain issues of long-running queries, which are reported improperly. Try increasing the timeout:
    http://support.microsoft.com/en-us/kb/555938

  • Powerview Cannot connect to the server due to a security issue. The server may not have been able to match the host for silverlight

    Hello,
    I have a sharepoint 2010 sp1 CU Dec 2011 server with a SQL Server 2012 SP1 CU4 reporting services instance.  I am able to open Power View and use it normally when bypassing the ISA Reverse Proxy server.  However when going thru ISA I receive the
    following Error.
    Power View  Cannot connect to the server due to a security issue.  The server may not have been able to match the host for Silverlight.  This error appears after I click yes on an Internet Explorer Display Mixed Mode prompt.
    I've seen a couple references to this issue but not much.  This one mentions a clientaccesspolicy.xml file but I haven't had any luck with that.  http://connect.microsoft.com/SQLServer/feedback/details/716433/cannot-connect-to-the-server-due-to-a-security-issue-the-server-may-not-have-been-able-to-match-the-host-for-silverlight
    Any Ideas?  Thanks.
    Ryan

    Hi Ryan,
    Based on my research, the issue should occur due to a by design behavior in Threat Management Gateway (TMG). To work around this issue, you can use SSL between the TMG and the SharePoint Web Server.
    Hope this helps.
    Regards,
    Mike Yin
    TechNet Community Support

  • Oracle shared server default connection

    We are currently trying to use shared server on an Oracle 11.1.0.7 standard edition database.
    We don't have any problem regarding parameters or performance yet. We can connect either with dedicated or shared connection.
    Our problem or issue is with tnsnames.ora.
    trdb =
    (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = X.X.X.X)(PORT = 1521))
    (CONNECT_DATA =
    (SID = orcl)
    We do not specify if this connection is shared neither dedicated. Connection defaults to dedicated and we would like to force that users connect to a shared server connection.
    It would be really usefull to avoid having to go client by client on remote sites. We do no have any centralized management tool to change the file (not on remote sites).
    We could, of course make the application to distribute a new file, but since every client is unique, it could be risky.

    Try to use SERVICE_NAME instead of SID in tnsnames.ora and make sure this service is mapped to a dispatcher in database init. file.
    Example with 11.2.0.1:
    1. DISPATCHERS parameter
    SQL> show parameter dispatchers
    NAME                                 TYPE        VALUE
    dispatchers                          string      (PROTOCOL=TCP) (SERVICE=DB112XDB)
    max_dispatchers                      integer2. TNSNAMES.ORA:
    $cat tnsnames.ora
    DB112 =
    (DESCRIPTION =
       (ADDRESS_LIST =
         (ADDRESS = (PROTOCOL = TCP)(HOST = lx01.localdomain)(PORT = 1521))
    (CONNECT_DATA =
       (SERVICE_NAME = DB112XDB)
    )3. Test with SQL*Plus:
    sqlplus  system/xxx@DB112 @tss
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Feb 15 21:37:35 2010
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select username, program, server, service_name
      2  from v$session
      3  where server<> 'DEDICATED';
    USERNAME                       PROGRAM
    SERVER    SERVICE_NAME
    SYSTEM                         [email protected] (TNS V1-V3)
    SHARED    DB112XDB

Maybe you are looking for