Display open connection from logs ( 5.2 Patch 6 )

Hi,
I am running DS 5.2 and would like to know if there is any way we could get open search/mod/del operation. I do have lgrep command, but not sure if could utilize that get i want intend to.
There is SAM application sitting against LDAP, and i would like to monitor is could investigate some delay issues.
Any help is appreciated.
Thanks, Pamela

The simplest way I can think of to get that would be to run an lgrep against the log periodically, like
lgrep " SRCH | ADD | MOD | DEL " access | lgrep -v RESULT | awk '{ print $1 " " $3 " " $4 " " $5}'
This will print out identifying data for any search, add, mod, or del operation that is currently pending in the log. The difference between the current time and the first column is how long ago the request came in. Any line that appears in two subsequent executions of the pipeline represents an operation that has been running for at least the duration of the execution period. A subsequent grep or lgrep for the query details would be needed to give you specifics such as basedn, filter, etc.
There are some considerations to doing this, though. In the first place, if your log is big, this will be a lot of parsing, and you will be going through the entire log every time you run this command. Also you would probably need to add some intelligence to the process to make it useful.
I could see something like this running every few minutes, provided the log is not too big:
echo "`date +%d/%b/%Y:%H:%M:%S` `lgrep " SRCH | ADD | MOD | DEL " access | head -1`" >> ops.log
So then a comparison of the first two columns would tell you how long an operation had been running.
If I were trying to track long-running requests, I would write a script that does something similar to lgrep, but keeps a tail running against the log and keeps track of all pending operations in memory. Then, when an operation reaches some threshold, write to a log and/or send an alarm. The alarm and/or log entry would contain all the relevant data to describe the long-running operation, not just the identifiers. This type of script would also have some machinery for handling log rotation events.
Edited by: chris_c on Feb 18, 2011 12:28 PM

Similar Messages

  • Too many open connections from Tomcat to MySQL?

    <?xml version='1.0' encoding='utf-8'?>
    <Context>
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    <Resource
    name="jdbc/RealmDB" auth="Container" type="javax.sql.DataSource"
    username="root" password="password" driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/monk"
    maxActive="-1" maxIdle="5" maxWait="5000"
    removeAbandoned="true" removeAbandonedTimeout="60"
    testWhileIdle="true" timeBetweenEvictionRunsMillis="180000"/>
    <Realm
    className="org.apache.catalina.realm.DataSourceRealm"
    dataSourceName="jdbc/RealmDB" localDataSource="true"
    digest="MD5"
    userTable="user" userNameCol="user_name" userCredCol="password"
    userRoleTable="tcrole" roleNameCol="role_name" />
    </Context>
    Is there a way in here to auto close inactive connections after say 10 seconds? Is that the removeAbandonedTimeout or the Eviction section? Would this be better off posted on the tomcat user listing?
    Edited by: TheWhiteKnight on Oct 29, 2009 8:00 PM

    Actually BalusC, I like this. This seems to define the entire cycle quite nicely and CLEAN. This will be very helpful when phase II rolls out. Right now I need to just patch the thing and get it running "well".
    I've also had to implement some new methods to clean up some of the junk that is left open. I have found RS's that are closed, but no corresponding connection / statement's are being closed. So when I have a return statement like:
    return ConnectionPool.getConnection().createStatement().executeQuery(sqlStatement);
    {code]
    that is called from the presentation layer, logically (to me) the only place to close the connection / statement associated with that RS is in the presentation layer.  As of right now.  This will change on phase II.  If I am wrong please correct me in this.
    Something that is happening now though since I have started explicitly closing the connections and statements.  It seems that my ConnectionPool is running out of connections. I can increase the size of the pool, but it worked just fine before with the amount of connections I have set.  When I call .close() on the connection, does that "recycle" the connection back to the pool?  I know there has to be resources bleeding someplace, however, this has only started happening (more often) since I have been closing things where I find them.
    Any ideas on this?
    Also will converting the basic generic queries to stored procedures help in the performance?  I know that I'll still have to have a connection, but if I can have less java coded sql statements and more SP's would that help in efficiency between MySQL and Tomcat?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • MSS Workflow: Display Form: Connection from R/3 to Portal.

    Scenario and Description:
    User is in R/3 Workflow Inbox. They have a MSS related "Change Notification: PAR with Approval" such as a Salary Change, etc. When they click on "Display Form" link their MS IE Browser opens and they are prompted to logon to the Portal prior to the form displaying.
    The issue is that they are forced to log into the Portal even if they are already logged onto the Portal.
    Is this the way it needs to work or can we set some parameter to have it so users don't have to log into Portal again when they are already logged in to Portal?
    Thank you for your response,
    Glenn

    I do have SSO configured and I have even used SSO Wizard to set the R/3 system as trusted on the J2EE server side. We currently have EP 7.0 but have been using Portal since v.5.0.  We have never had this problem in the past. All R/3 ids match network/portal ids. If we open an IE browser and logon to portal and then open another IE browser from start menu we also have to log into Portal again. This is typical session based behavior but what I would like to know is, should we be expecting this behavior from R/3 to Portal or should the whole SSO/logon ticket scenario free us from having to login to the Portal more than one time (if we are still logged in)?
    PS: I see nothing in the link you sent me that we have not already done.
    Thanks,
    Glenn

  • Open Connections on database

    I would like to know the number of open connections from OAS to database. I quired v$session and v$session_connect_info, this gives number of active, inactive sessions.
    We have Java memory leak on OAS, so I would like to investigate connection pooling.
    Thanks
    Rashidah

    ted_hankey wrote:
    Our corresponding DB2 driver logs show these 3 connections, as well as another 5 that are opened but not closed. These 5 connections that remain open do not perform any operation against the database.
    How could this be, seeing as the connections are not displaying in my java.sql logging? The DB2 tracing is only turned on for my application so there is no other application creating these connections.Seems to me like the driver already has some sort of mini-pooling mechanism built in, which would be invisible to the JDBC layer. I would investigate DB2 specific driver properties, usually you can find some clues there for driver specific features. If what I guess is correct then there must be a way to control this pooling behavior.

  • Open connections between AS Java and AS ABAP when using JRA

    Hi, we have a problem with open connections and hope that someone here could give me hint where to find a solution.
    The situation is that we open a connection from a Java application to an AS ABAP. In detail, the application first connects to a statefull session bean on the AS Java by RMI. The bean communicates with the associated AS ABAP by the Java Resource Adapter (JRA).
    All interactions between all components work correctly. But even after we close the application, manually close of the connections (on side of the AS Java) , remove all created and used session beans there are still open connections between the AS ABAP and the AS Java.
    The transaction smgw (Gateway Monitor) shows open connections from jlaunch to our local SAP gateway using the internal communication protocol. Obviously, the established connections are not closed, even when they are open for a week or longer.
    After opening 100 connections, the AS ABAP denies additional connection attempts.
    We have been able to close all open connections by restarting the AS Java or by restarting the Connector over the Visual Administrator (path: Cluster – Server – Services – Connector Container – “select the right connector” – stop / start).
    We have developed our application similar to the tutorial from [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ad09cd07-0a01-0010-93a9-933e247d3ba4]
    Can someone explain to us why the connections stay open for so long? Is there no timeout mechanism? Or is there some way to close the connections from our Java application?

    Hello,
    maybe someone can help us with our problem.
    We have developed our application similar to the tutorial from https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ad09cd07-0a01-0010-93a9-933e247d3ba4 and it was running without problem with the SP12, now we change our system to SP16 and we are having the problem described in note 1083348, but as you can see, for us it was working with SP12 and now it doesn't work with SP16....
    Here is part of our code....
        public List getAll() {
            String functionName = "bla";
            try {
                openConnection();
                MappedRecord response = (MappedRecord) interaction.execute(null, request);
                MappedRecord record = (MappedRecord) response.get("E_S_RETURN_CODE");
                if (((String) record.get("RETURN_CODE")).equalsIgnoreCase("E")) {
                    throw new SQLException((String) record.get("RETURN_TXT"));
            catch (ResourceException exc) {
                throw new EJBException(".");
            catch (SQLException exc) {
                throw new EJBException(".");
            finally {
                closeConnection();
        protected void openConnection() {
            try {
                connection = connectionFactory.getConnection();
                interaction = connection.createInteraction();
            catch (ResourceException exc) {
                interaction = null;
                connection = null;
                throw new EJBException(getExceptionText(exc));
      protected void closeConnection() {
           try {
                if (interaction != null) {
                    interaction.close();
                if (connection != null) {
                    connection.close();
            catch (ResourceException exc) {
                throw new EJBException(".");
    With that code we are getting this error: "Connection handle is already closed and no longer associated with a managed connection" everytime we try to close the connection in the method closeConnection().
    We were thinking that maybe we should not close the connections, because the were already close, and tried not to close the connection (connection.close()), but then after a few time we are getting the following error, because we are not closing the connections:
    Connection to ABAP System could not be opened, because the Connection Factory returns "Cannot get connection for 120 seconds. Possible reasons: 1) Connections are cached within SystemThread(can be any server service or any code invoked within SystemThread in the SAP J2EE Engine), 2) The pool size of adapter "eis/..." is not enough according to the current load of the system or 3) The specified time to wait for connection is not enough according to the pool size and current load of the system. In case 1) the solution is to check for cached connections using the Connector Service list-conns command, in case 2) to increase the size of the pool and in case 3) to increase the time to wait for connection property. In case of application thread, there is an automatic mechanism which detects unclosed connections and unfinished transactions.". Please check the connection defined for the Connection Factory of the Java Resource Adapter with JNDI name...
    Any help?

  • ORA-30678: too many open connections with UTL_MAIL.send

    I'm have just recently started getting the ORA-30678: too many open connections error while calling the UTL_MAIL.send procedure to send emails via a pl/sql package. The call is made within a loop and there can be a significant number of calls made to this procedure. In fact, I received this error over 1400 times within the last three days. This was previously working until I made a change to the processing which now results in a larger number of emails/calls to this procedure. I don't see any documentation on how (or if) I can close the connection with UTL_MAIL.
    I'm using Oracle 11g. Any insight would be much appreciated.
    Thanks,
    Teri

    Looks like a bug possibly, check out this MOS Note:
    Ora-30678: Too Many Open Connections From UTL_MAIL [ID 788442.1]
    The bug note says it was fixed in 11.2. Not sure which version of 11 you are running.
    Edited by: Centinul on Apr 26, 2010 2:07 PM

  • Open script cannot get connection from the brower helper after 15 seconds.

    Error:
    ===
    Open script cannot get connection from the brower helper after 15 seconds. Do you want to continue waiting for the browser to load?
    Please Note:
    ========
    1. I have tried this only on IE
    2. I am running OATS on a Remote desktop
    Situation:
    ======
    Trying to stop the recording
    Try to get xpath of an object using Inspect Path
    Setup details
    ========
    Windows XP 5.1 Service Pack 3, x86
    OpenScript 12.1.0.1.383
    Internet Explorer 8.0.6001.18702
    FireFox 13.0.1
    Mitigation steps done till now:
    ==================
    1. Disabled windows firewall
    2. Disable XSS filter setting
    3. Restarted the ATS services (3 of them)
    4. Run the Open Script Diagnosis Tool (PS: There are 3 errros even after running it. The 3 errros are listed in the workspace_log log file snippet below...)
    Error in worspace_log:
    =============
    To Change setting:
    Go to Tools > Internet Options and Choose Security Tab
    Select the Zone to modify and Press Custom level
    Find Enable XSS filter Setting - Select Disable and click Ok
    !ENTRY oracle.oats.scripting.diagnosisTool.api.DiagnosisExecutor 4 0 2012-07-09 17:08:52.594
    !MESSAGE Failure found when diagnosing Oracle EBS/Forms Load Testing Forms LT Diagnoser
    !ENTRY oracle.oats.scripting.diagnosisTool.api.DiagnosisExecutor 4 0 2012-07-09 17:08:52.594
    !MESSAGE Did not auto-fix the problem.
    !ENTRY oracle.oats.scripting.diagnosisTool.api.DiagnosisExecutor 4 0 2012-07-09 17:08:52.594
    !MESSAGE Suggestion for fixing: Please change your Java proxy setting to Use Browser Settings
    Aprreciate help on this.

    To resolve this, you need to reconfigure the "Oracle Application Testing Suite Helper Service" (OATSHelperSvr) to start as a user who has privledges to run open script tests rather than the default SYSTEM user.
    Reconfiguring the OATSHelperSvr Service:
    1. Open the services panel (Start > Run > services.msc)
    2. Find the Oracle Application Testing Suite Helper Service
    3. Right Click > Properties then select the Log On Tab
    4. Specify an interactive user that has rights to run OpenScript (test by logging in as that user and running tests):
    5. Click OK
    6. Restart the service after dialogs are closed by Right Click > Restart
    7. You should now repeat this process for the "Oracle Application Testing Suite Agent Service" (eLoadAgentMon) Service (Two services in
    total)
    You should now retry running the test in Oracle Test Manager

  • How do I connect to Time Capsule from a Windows 8.1 machine which is on a Windows domain. I have been able to connect from a Windows 7 machine on a Windows domain to a Time Capsule. Airport utility is not displaying the Time Capsule Win8.1 machine

    How do I connect to Time Capsule from a Windows 8.1 machine which is on a Windows domain. I have been able to connect from a Windows 7 machine on a Windows domain to a Time Capsule. Airport utility is not displaying the Time Capsule Win8.1 machine.
    I have checked that the firmware has been updated to 7.6.4 . Similalrly the Win8.1 machine has been loaded with the update specified in another discussion.

    Firstly how are you connecting to the TC.. wireless or ethernet?
    Please open a command window and ping it.. ping by name and by IP address.
    If ping succeeds at least by IP it should work.
    In windows explorer type
    \\10.0.1.1 (or whatever the TC ip is.. that is the default).
    Having the airport utility for windows loaded can help the process. As it loads bonjour for windows.
    7.6.4 firmware on the TC is useless. It works better on 7.6.1
    If the ping does not succeed by either name or IP address yet you have internet through the TC, then your network is setup wrongly. You are have firewalls blocking local IP. Take down all the firewalls.

  • I have a MacBook Pro 15" 2.53GHz Mid2009.. updated to Lion which is now 10.7.3 build 11D50b... when I close lid and connect to Cinema Display, display will not activate... disconnect display, open lid laptop display will not activate... used to work fine.

    I have a MacBook Pro 15" 2.53GHz Mid2009.. updated to Lion which is now 10.7.3 build 11D50b... when I close lid and connect to Cinema Display, display will not activate when keyboard/mouse used... disconnect display, open lid and laptop display will not activate... only way out is hold power button.  Worked fine before Lion update.   Any Advice?

    Thanks very much Coander15... I've printed the doc you pointed me towards and I'll run through it.. hoping it helps!
    Before I installed Lion I simply hit any key on the keyboard or clicked the mouse...
    The keyboard is USB (usually connected to monitor which is connected to laptop... have tried direct connect to laptop as well with no luck) and mouse is USB wireless to one of those tiny plug in's... have tried direct connect USb mouse as well with no luck.
    I could plug the closed/sleeping laptop into the monitor and unplug from the monitor without incident all day/night... always worked fine. 
    Had heard something about this happening w/ Lion but went ahead anyway. 
    Oh well...
    Hoping your pointer helps... will let you know how it turns out.  Thanks very much for responding!!!

  • Having trouble opening connections and reading from Bluetooth devices.

    Hello,
    As the title states, I am having trouble opening connections and reading data from a Bluetooth device. We are using a PDA to communicate with LabVIEW. First, the Bluetooth Open Connection VI displays a timeout error half of the time. Second, when it does open, it does not read what the PDA is sending. Third, if it does allow an open connection, it will not do it a second time unless the devices are turned off.
    I also have another related question. I am using a Linksys Bluetooth USB adapter, and the driver is proprietary. Labview requires the use of a Microsoft driver, and we are having problems going back and forth between the drivers. What Bluetooth receiver would you suggest using? The reason I ask is the fact that you have Bluetooth examples of client VI's. Therefore, you must use a similar device. Thank you for your time.
    -Jon

    Hi Jon,
    I'm not sure what Bluetooth receivers were used to verify the functionality of the VIs. However, I still want to help you solve your issue. Please make sure that you are running the shipping examples and let me know what version of LabVIEW, what PC OS and what PDA OS you are using. Does the Microsoft driver work for your Bluetooth receiver if you uninstall the Linksys driver?
    With your answers I'll do my best to help you out.
    - Philip Courtois, Thinkbot Solutions

  • Is there a way to hide (mask) public connections from displaying?

    Would like to hide (mask) public connections from being displayed on Disco Connection page, but still display private connections
    for our Disco Plus/Viewer users. Reason is...We have SSO enabled and publish Discoverer portlets (Single Worksheet, List of Worksheets) on our
    enterprise portal pages. The List of Worksheets portlet requires us to use a public connection to publish the portlet in order to be displayed
    via viewer by other SSO users otherwise, the other SSO users would be prompted for a password whenever we use a private connection to
    publish portlet. Same problem for the "Analyze" link on the portlet. There is a doc to hide both private/public connection, but we are looking to
    hide only the public connection. Anyone run across this situation when using Disco Portlets?

    **Recommend that you make sure you have the Connection key for each of your Public connections before you hide them. Open Discoverer Plus or viewer and click the "Show" then write down connection key. In the portal if you wanted to create direct connects create URL http://host/port/discoverer/plus?cn=Enter Connection Key
    the ViewerConnection.uix can be found in
    Oracle_Home\j2ee\OC4J_BI_Forms\applications\discoverer\discoverer
    You can edit the file with Notepad or any other text editor.
    - In order to remove the "Choose Connection" table which include public connection already defined you have to find
    <template:commonPageLayout preferencesRendered="false" quickLinksShown="true" helpID="disco_vw_connect" title="${uix.data.nls}">
    <contents>
    and start comment everything starting with the line
    <!-- (start comment)
    <rowLayout width="90%">
    <contents>
    <header rendered="${uix.eventResult.connectionMgmtEnabled}" text="${uix.data.nls}">
    up to
    </header>
    </contents>
    </rowLayout>
    --> (end comment)
    <rowLayout width="100%">
    <contents>
    <header text="${uix.data.nls}" shortText="${uix.data.nls}">
    <contents>
    <form name="connectionForm" method="POST">
    If you want to do more customization in order to make the page look better
    - if you want to remove "Connect to OracleBI Discoverer"
    find <template:commonPageLayout preferencesRendered="false" quickLinksShown="true" helpID="disco_vw_connect" title="${uix.data.nls}">
    <contents>
    and comment
    <!--
    <html:noscript>
    <styledText styleClass="OraInstructionText" text="${uix.data.nls}" />
    </html:noscript>
    <styledText rendered="${uix.eventResult.connectionMgmtEnabled}" styleClass="oraInstructionText" text="${uix.data.nls}"/>
    <styledText rendered="${ui:cond(uix.eventResult.connectionMgmtEnabled eq 'true', 'false', 'true')}" styleClass="oraInstructionText" text="${uix.data.nls}"/>
    -->
    - if you want to remove "Connect Directly" togehter with "Enter your connection details below to connect directly to OracleBI Discoverer.
    * Indicates required field. "
    change
    <header text="${uix.data.nls}" shortText="${uix.data.nls}">
    into
    <header> <!--text="${uix.data.nls}" shortText="${uix.data.nls}"> -->
    and comment
    <!--
    <styledText styleClass="OraInstructionText" text="${uix.data.nls}"/>
    <rowLayout>
    <contents>
    <spacer width="1" height="8" />
    </contents>
    </rowLayout>
    <rowLayout>
    <contents>
    <messageStyledText required="yes" text="" />
    <spacer width="5" height="1" />
    <styledText styleClass="OraInstructionText" text="${uix.data.nls}" />
    </contents>
    </rowLayout>
    -->
    - if you want to move all the fields like " Connect To, User Name, Password etc in the center of the page
    find
    <tableLayout id="connTableLayout" summary="">
    and change to
    <tableLayout width="150%" id="connTableLayout" summary="">
    - if you want to remove the EUL fields which is not required if you have only one EUL
    find and comment
    <!--
    <rowLayout rendered="${uix.eventResult.eulRendered}">
    <contents>
    <spacer width="1" height="4" />
    </contents>
    </rowLayout>
    <rowLayout rendered="${uix.eventResult.eulRendered}">
    <contents>
    <cellFormat hAlign="right">
    <contents>
    <rowLayout>
    <contents>
    <messageStyledText required="no" text="" />
    <spacer width="5" height="1" />
    <styledText styleClass="OraInstructionText" text="${uix.data.nls}" labeledNodeId="${uix.data.constants.EUL_PARAM}"/>
    </contents>
    </rowLayout>
    </contents>
    </cellFormat>
    <cellFormat>
    <contents>
    <spacer width="5" height="1" />
    </contents>
    </cellFormat>
    <cellFormat>
    <contents>
    <textInput name="${uix.data.constants.EUL_PARAM}" columns="40" text="${uix.eventResult.eulName}" id="${uix.data.constants.EUL_PARAM}" shortDesc="${uix.data.nls}" >
    <enterClientAction>
    <fireAction event="connect" formSubmitted="true" />
    </enterClientAction>
    </textInput>
    </contents>
    </cellFormat>
    </contents>
    </rowLayout>
    After you make the changes and save the file you have to restart the OC4J_BI_Forms component of the AS.

  • You can't use The following message is stopping me access my disk utility.  'this version of the application "Disk Utility" with this version of OS X.'  not only that my Mac pro keeps dropping my internet connection and logs on to BT Open.

    After installing Yosmite, The following message is stopping me accessing my disk utility.  'You can't use this version of the application “Disk Utility” with this version of OS X.' you have “Disk Utility” 12.1.1. 
    not only that my Mac pro keeps dropping my internet connection and logs on to BT Open.
    Help

    For whatever reason you don't have the Yosemite version of Disk Utility which is 13. I suggest you reinstall Yosemite.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Download and install the 10.10.1 update.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Check that you have the current version of Disk Utility.

  • Hi Apple Team, my iphone can't share files with my macbook pro. But other devices can share bluetooth files with my mac book pro. Please, kindly open up bluetooth to accept all connections from all devices. Now it becoming difficult for me to share.

    Hi Apple Team, my iphone can't share bluetooth files with my macbook pro. But other devices can share bluetooth files with my mac book pro. Please, kindly open up bluetooth to accept all connections from all devices. Now it difficult for me to share bluetooth files from my mac bookpro to my iphone, unless i attached it through email.
    We need it to be acceptable to all devices.
    Thank you!

    You can tell Apple directly at the link below.
    http://www.apple.com/feedback/iphone.html

  • HT3382 Connect from a MacBook Pro's mini display port to a Display Port monitor?

    Hello everyone,
    Is it possible to connect from a MacBook Pro's mini display port to a Display Port monitor with resolutions higher than 1920 x 1200? It seems Apple does not supply a mini-DP to DP adapter.
    However, just as they do not make a mini-DP to HDMI adapter, but they do recommend a Belkin product for this purpose.
    Is there any reason that a mini-DP to DP adapter or cable wouldn't work and support high resolutions?
    Thanks for your feedback!

    danz0r wrote:
    Hey tjk,
    Thanks for the response.
    Do you have any recommendations for a potential set up? The audio output and Apple DVI are on different sides of my MBP, which is alright, I guess I can get two long cables to handle each. I was hoping to just have my MBP closer to where I use it, with a cord nearby plugged in on one side to the HDTV and resting near where I keep my MBP for when I want to use the HDTV as an external monitor.
    With a converter like this, you can run video out of the MBP's DVI port, and miniToslink (optical) audio out of the 3.5mm stereo mini jack to the converter, then it will combine the two and output audio and video through HDMI to the monitor.
    http://www.supermediastore.com/product/u/apogee-dvi-to-hdmi-converter-spdif-opti cal-toslink-coaxial-input-output?utm_source=cj&utm_medium=aff&utm_content=HDMI+A ccessories
    Otherwise, depending on the TV's inputs, for video you could run DVI to DVI on the TV, or DVI to HDMI to the TV. For audio you could run 3.5mm stereo mini plug from the MBP to RCA adapter on the TV. Toslink/optical is also an option.

  • How to read and display a signal from my a miccrontroller (MCB1700) onto labview connected via a CAN port on a PXI machine

    How do you read and display a signal from my a miccrontroller (MCB1700) onto labview connected via a CAN port on a PXI machine?
    I tried using a DAQ Assistant but the CAN port is not included as one of the supported physical channels even though all its drivers are upto date.
    Please help..
    Thanks.
    Solved!
    Go to Solution.

    Attached herewith is a print screen of what is showing on MAX
    The CAN ports are on NI PXI-8461
    Hopefully that clarrifies something.
    Attachments:
    Untitled.png ‏212 KB
    Untitled.png ‏212 KB

Maybe you are looking for

  • Text Area Dialog Could not insert a new line?

    Hi, I've just downloaded a new Oracle SQL Developer (formerly known as project raptor) and have tested-drive this software. I found some dissappointed thing there: - I would like to insert a long string (several paragraphs) in the data grid editor di

  • REPORTING IN SAP PM

    hello every one,  i am trying to run some run but system is showing no data for example breaddown analysis. I am using every thing standard except equipment. Kindly provide me some input on this. Regards Abhishek

  • Error: application net_rim_bb_addressbook_app(270) is not responding

    ojala y me puedan ayudar, mi bb no me permite abrir mis contactos ni crear uno nuevo, cada vez que trato de hacerlo se me bloque y al tiempo me apacerce el error: application net_rim_bb_addressbook_app(270) is not responding y se cierra la aplicacion

  • How to use RowSetBrowser in Jdeveloper 3.2

    Hi friends, Please show me how to use the Webbean RowSetBrowser to view the content of a ViewObject which made by the jbo:CreateViewObject. Thanks,

  • H-p printer not working with mac mini

    does anyone know how to get an h-p printer to print from a mac mini?