Using CONNECT BY with DBA_CONSTRAINTS VIEW

I am building a query using the Dba_Constraints view and CONNECT BY Operator.
I should fill some tables and I want to avoid FKs errors, but... I'll need to follow the right order to do that. So, I wrote a query but it's not working!. The first version stopped the recursion on the second level... I tried to fix it but I've only got an even worst result!
This is the 1st version:
SELECT SYS_CONNECT_BY_PATH(C.TABLE_name, ' >> ') "Path"
FROM dba_constraints c
WHERE owner = :anOwner
AND LEVEL > 1 CONNECT BY constraint_name = prior r_constraint_name
AND PRIOR owner = prior r_owner
ORDER BY LEVEL DESC,
TABLE_NAME ASC;
Can anyone help me with this query?
Thanks!
Martin

Hi, Martin,
Whenever you post a question, it's helpful to include
(1) some sample data (just enough to illustrate the problem),
(2) the results you expect to get from that sample data, and
(3) an explanation of what you want.
For this problem, the only relevant columns are owner, table_name, constraint_name and r_constraint_name. If the problem is that the hierarchy never goes beyond LEVEL=2, then you only need to include enough sample data to get to LEVEL=3. So if you have table_a which refers to table_b, and table_b refers to table_c, you can illustrate your problem with just the data connected to those tables.
So you should run a query, something like this:
SELECT     table_name
,     constraint_name
,     r_constraint_name
FROM     dba_constraints
WHERE     owner     = :anOwner
AND     table_name IN ('TABLE_A', 'TABLE_B', 'TABLE_C');and then post the results, which might look like this:
TABLE_NAME           CONSTRAINT_NAME      R_CONSTRAINT_NAME
TABLE_A              A_B_FK               B_PK
TABLE_A              A_PK
TABLE_B              B_C_FK               C_PK
TABLE_B              B_PK
TABLE_C              C_PKNot only does this help others solve the problem, it can help you solve the problem. If you had done this, you might have noticed that the constraints do form a chain, but that chain is never more than two links long, because the child of a foreign key constraint in table_a is the unique constraint of table_b, and unique constraints never have any children.
You probably want something like this query, which uses the parent-child relationship between tables (gotten from the self-join) rather than constraints:
WITH     constraint_tree     AS
     SELECT DISTINCT
          a.table_name     AS table_name
     ,     b.table_name     AS parent_table_name
     FROM          dba_constraints a
     LEFT OUTER JOIN     dba_constraints b
     ON          a.r_constraint_name     = b.constraint_name
     AND          a.owner               = b.owner
     WHERE          a.owner     = :anOwner
SELECT     SYS_CONNECT_BY_PATH (table_name, ' >> ')     AS path
FROM     constraint_tree
WHERE     LEVEL               > 1
AND     CONNECT_BY_ISLEAF     = 1
AND     table_name          IN ('TABLE_A', 'TABLE_B', 'TABLE_C')
START WITH          parent_table_name     IS NULL
CONNECT BY NOCYCLE     parent_table_name     = PRIOR table_name
ORDER BY path
;which produces:
PATH
>> TABLE_B >> TABLE_A
>> TABLE_C >> TABLE_B >> TABLE_A

Similar Messages

  • Using Connect:Direct with SAP

    Folks,
    Client is using Connect:Direct to transfer the files from one location to another location.There are two table maintained namely T9AOA and T9AOB with Interface id and Unix scripting w.r.t Processing types respectively.
    1.I don't think these are SAP standard tables then why they are not named starting with Z or Y
    2.How to use Connect:Direct with SAP.
    Searched in SDN and google but didn't get any clear information on the above.From google I came to know this is a Product of Sterling Commerce(AT&T).
    Hope someone here who used Connect:Direct with SAP can share the info.
    Thanks,
    Kiran.

    Paky,
    The existing Design,had some tables which were maintained with required Unix Scripts.In the program we are just fetching that script from the table and building a Unix Command to move the files.There is also a URL using which we can check the status of the files.As I was just using the already existing design,don't have much info on how C:D connectivity can be designed from scratch.
    By Googling,I was able to get some info.May be it will give you some lead.
    https://www.google.co.in/?gws_rd=cr&ei=F5apUsrYCYWNrQf1y4GoDQ#q=connect+direct+in+unix
    K.Kiran.

  • Strange behaviour when using connection pooling with proxy authentication

    All
    I have developed an ASP.NET 1.1 Web application that uses ODP.NET 9.2.0.4 accessing Oracle Database 8i (which is to be upgraded to 10g in the coming months). I have enabled connection pooling and implemented proxy authentication.
    I am observing a strange behaviour in the live environment. If two users (User 1 and User 2) are executing SQL statements at the same time (concurrent threads in IIS), the following is occurring:
    * User 1 opens a new connection, executes a SELECT statement, and closes this connection. The audit log, which uses the USER function, shows User 1 executed this statement.
    * User 2 opens the same connection (before it is released to the connection pool?), excutes an INSERT statement, and closes this connection. The audit log shows User 1, not User 2, executed this statement.
    Is this a known issue when using connection pooling with proxy authentication? I appreciate your help.
    Regards,
    Chris

    Hi Chris,
    I tried to reproduce your complaint, but was unable to. I didnt use auditting however, just a series of "select user from dual" with proxy authentication. You might want to see if you can put together a small complete testcase for this and open a sr with support.
    Cheers
    Greg

  • How To Use Connection pooling with j2sdkee1.3?

    hi!
    How to use javax.sql.ConnectionPoolDataSource and
    javax.sql.PooledConnection with j2sdkee1.3.?
    In j2ee1.3's deployment tool,
    to specify the resource factories,
    javax.sql.ConnectionPoolDataSource is not available.
    Please Help me to use Connection pooling.
    Dhaya.

    Vendor implementations usually have a fair amount of optimization. For J2EE apps, my concern would be using your pool in transactional calls. When you make a transactional call across several beans/methods, the vendor's pool makes sure that you get the same connection each time you get a connection from the pool so that if you want to rollback the work (in case an error occurs), you can. Does your current connection pool support this?

  • How can I use the NI PXI-6508 with Lab View 7? what are the first steps to get started??How can I use the channels with lab view 7????

    I have a 8 slot PXI system with 2 NI PXI 6508 and 1 DMM 4070 in it. I want to get started with programming the digital I/O cards (6508)! How can I use this cards with LabView 7?what is the best way to get started, or where can I get examples showing how to use the several channels?
    Thanks!
    Philipp

    Philipp,
    The best way to get started is to decide if you want to use traditional NI-DAQ or NI-DAQmx. Recently we released NI-DAQ 7.1 which provides NI-DAQmx support for the PXI-6508. In my opinion, NI-DAQmx is more efficient and much easier to use.
    To get started with examples, simply launch LabVIEW and go to Help>>Find Examples. Then expand Hardware Input and Output>>DAQmx and select the appropriate digital group for your application. This should help get you started.
    Please repost if you need addition assistance. Good luck with your application!

  • How to use MVC AntiForgeryToken with partial views

    My question is more driven by what is the proper approach when dealing with partial views. Is there a token for each partial view, or the container as a whole?
    Currently our form contains divs for 5 partial views. The user is responding to a list of certification questions, and based on responses 1 or more divs/partial views are displayed. Each partial view is accepted/declined (button select) and the form as a
    whole is submitted (button). Currently, each partial view has its own AntiForgeryToken and corresponding token validation in the controller (in the manner as you indicated).
    With this approach we periodically see the System.Web.Mvc.HttpAntiForgeryException
    If I have a form/view that will display 1 or more partial views based on user responses. Where do I need to place the AntiForgeryToken? In the parent view? In the partial views? Both?
    My theory is that when multiple partial views are represented a mismatch of tokens occurs and the error is reported. My thinking is to move the token to the main/parent view.
    Am I on the right track? Anybody had to deal with something similar?

    Questions related to ASP.NET should be posted in the ASP.NET forums (http://forums.asp.net ).

  • Using xsl stylesheet with List View Web Part to display custom text

    Hi 
    i have an xsl stylesheet with sharepoint listview webpart. The list view shows some items based on a filter. I want to display custom text such as "No Items" when there are zero items in the list view using the xsl stylesheet. How do i achieve
    this. I have spent hours searching but couldnt find the exact answer. Please help me out. I am a light user not a hard core developer so I dont use Visual Studio. Thanks in advance

    Hi 
    I have customised the list view webpart using a custom xsl file by including it in the xsl link of the list view webpart. So i think i need to include the condition in the xsl file itself else it wont work. Since the list view webpart isnt using the default
    xsl. Please let me kknow if you have any idea about including a condition in xsl to check if there are not items in view. 
    The code of the xsl is included below.
    <!--
    This section is the set up and can be used at the top of any external XSLT stylesheet file
    -->
    <xsl:stylesheet
    xmlns:x="http://www.w3.org/2001/XMLSchema"
    xmlns:d="http://schemas.microsoft.com/sharepoint/dsp"
    version="1.0"
    exclude-result-prefixes="xsl msxsl ddwrt"
    xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime"
    xmlns:asp="http://schemas.microsoft.com/ASPNET/20"
    xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt"
    xmlns:SharePoint="Microsoft.SharePoint.WebControls"
    xmlns:ddwrt2="urn:frontpage:internal">
    <xsl:output method="html" indent="no"/>
    <xsl:template match="/" xmlns:x="http://www.w3.org/2001/XMLSchema">
    <xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row" />
    <table>
    <xsl:for-each select="$Rows">
    <xsl:call-template name="dvt_1.rowview"></xsl:call-template> 
    </xsl:for-each>
    </table>
    </xsl:template>
    <xsl:template name="dvt_1.rowview">
        <tr>
      <td><img height="78" width="60"><xsl:attribute name="src"><xsl:value-of select="@Photo"/></xsl:attribute></img></td>
        <td>
        <table style="margin-left:10px;">
        <tr><td><xsl:value-of select="@FullName"/></td></tr>
        <tr><td><xsl:value-of select="@DOBinWords"/></td></tr>
        </table>
        </td>
      </tr>
    </xsl:template>
    </xsl:stylesheet>

  • How to use connection pool with RDBMSRealm

    I am having a problem with the RDBMSRealm. The problem is that the connection defined in the .realm_properties file times out after 1 hour. My solution was to use the connection pool defined in the weblogic.properties file, but the realm_proprties are read before the connection pool is created so it did'nt work.Is there anyway of controling the order of which WLS reads various properties?If no, is there any way of setting "autorefresh" on the connection defined in the .realm_properties file?I'am using WLS 5.1, S.P 8, WIN2000 and Sybase. It works fine except for the timeout.Please help-Marius

    I've been struggling to find a way to use a weblogic connection
    pool or datasource nicely, and have failed with whatever I've tried.
    There is a chicken and egg problem here. The connection pool needs
    security to initialize itself, and security needs a connection
    pool. So that will not work.
    I've tried the follwing, which almost worked. Weblogic falls
    back to the default realm if your custom realm returns null for
    any user or group requests. So if your custom realm is not capable
    of reading info from the database, return null. The default realm
    will take over, and allow the connection pool to initialize if
    you allow everybody (or users defined in the weblogic.properties
    file) access to the pool. Then define a datasource which points
    to the pool.
    After the server starts, security can then use JNDI to look up
    the datasource, and all seems well. However, in some instances
    (it seems like calls for a bean), where security and jndi can get
    into infinite loops where jndi performs a security check when doing
    the lookup, so they both end up asking each other for information.
    So if anyone knows how to successfully use a connection pool or
    DataSource in a custom realm, I would love to know how.
    For you, I would suggest you don't try and use a connection pool,
    but figure out how to refresh your connection. You can do it manually
    by taking your connection, checking if it's valid before using
    it, if not, then open a new one.
    -d-
    Marius <[email protected]> wrote:
    I am having a problem with the RDBMSRealm. The problem
    is that the connection defined in the .realm_properties
    file times out after 1 hour. My solution was to use the
    connection pool defined in the weblogic.properties file,
    but the realm_proprties are read before the connection
    pool is created so it did'nt work.Is there anyway of
    controling the order of which WLS reads various properties?If
    no, is there any way of setting "autorefresh" on the
    connection defined in the .realm_properties file?I'am
    using WLS 5.1, S.P 8, WIN2000 and Sybase. It works fine
    except for the timeout.Please help-Marius

  • Error Using Connection Manager with InfoSwing

    Hi,
    Im trying to connect to an Oracle 8.0.5 DB through the
    Connection Manager. I succeed in connecting with tools like SQL+
    and Toad but not with my applet.
    The dosbox says:
    oracle.jbo.rt.cs.CSException
    oracle.jbo.rt.GenericDataException: JBO-100: A generic exception
    occurred during Data access
    Exception: java.sql.SqlException:Refused:
    at oracle.jbo.rt.cs.local.JBOSessionFactoryImpl.create<Compiled
    Code>
    at oracle.jbo.rt.cs.local.JBOSessionFactoryImpl.create<Compiled
    Code>
    at oracle.jbo.rt.cs.local.JBOSessionFactoryImpl.create<Compiled
    Code>
    at oracle.jbo.rt.cs.JBOSessionFactory.create<Compiled Code>
    at oracle.jbo.rt.cs.JBOSessionFactory.create<Compiled Code>
    at oracle.dafc.dataset.SessionInfo.connect<Compiled Code>
    at oracle.dafc.dataset.SessionInfo.open<Compiled Code>
    at oracle.dafc.dataset.SessionInfo.publishSession<Compiled Code>
    at package4.Applet1.jbInit<Compiled Code>
    at package4.Applet1.init<Compiled Code>
    at sun.applet.Appletpanel.run<Compiled Code>
    at java.lang.Thread.run<Compiled Code>
    ...and my java-source look like
    theConnectString = "@(DESCRIPTION =(ADDRESS_LIST ="+
    "(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.122)(PORT =
    1610))"+
    "(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.122)(PORT =
    1521)))"+
    "(CONNECT_DATA = (SID = ORCL))(SOURCE_ROUTE = YES))";
    sessionInfo1.setConnection(new SessInfoDescriptor
    ("scott","tiger",SessionInfo.THIN,theConnectString));
    Anyone a suggestion to make it work. My goal is to bypass the
    applet-security.
    Thanks in advance!
    null

    Hans,
    There are two issues here:
    1. Connecting to the db from JDeveloper (the correct driver?)
    2. Connecting to the db from an Applet
    In order to narrow down the problem domain, try connecting from
    the InfoBus Wizard using the correct dirver (for driver info see
    posting on March 22 titled "JDeveloper can't connect to Oracle")
    Hope this helps.
    Regards,
    Hans Duijn (guest) wrote:
    : Hi,
    : Im trying to connect to an Oracle 8.0.5 DB through the
    : Connection Manager. I succeed in connecting with tools like
    SQL+
    : and Toad but not with my applet.
    : The dosbox says:
    : oracle.jbo.rt.cs.CSException
    : oracle.jbo.rt.GenericDataException: JBO-100: A generic
    exception
    : occurred during Data access
    : Exception: java.sql.SqlException:Refused:
    : at oracle.jbo.rt.cs.local.JBOSessionFactoryImpl.create<Compiled
    : Code>
    : at oracle.jbo.rt.cs.local.JBOSessionFactoryImpl.create<Compiled
    : Code>
    : at oracle.jbo.rt.cs.local.JBOSessionFactoryImpl.create<Compiled
    : Code>
    : at oracle.jbo.rt.cs.JBOSessionFactory.create<Compiled Code>
    : at oracle.jbo.rt.cs.JBOSessionFactory.create<Compiled Code>
    : at oracle.dafc.dataset.SessionInfo.connect<Compiled Code>
    : at oracle.dafc.dataset.SessionInfo.open<Compiled Code>
    : at oracle.dafc.dataset.SessionInfo.publishSession<Compiled
    Code>
    : at package4.Applet1.jbInit<Compiled Code>
    : at package4.Applet1.init<Compiled Code>
    : at sun.applet.Appletpanel.run<Compiled Code>
    : at java.lang.Thread.run<Compiled Code>
    : ...and my java-source look like
    : theConnectString = "@(DESCRIPTION =(ADDRESS_LIST ="+
    : "(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.122)(PORT =
    : 1610))"+
    : "(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.122)(PORT =
    : 1521)))"+
    : "(CONNECT_DATA = (SID = ORCL))(SOURCE_ROUTE = YES))";
    : sessionInfo1.setConnection(new SessInfoDescriptor
    : ("scott","tiger",SessionInfo.THIN,theConnectString));
    : Anyone a suggestion to make it work. My goal is to bypass the
    : applet-security.
    : Thanks in advance!
    null

  • Connectivity Problem with WPF Viewer and Oracle based imbedded reports

    I've been using code to modify the Database, Username and Password in imbedded reports for quite a few years.  Whether I was using C++ V6 or C# in VS2008, the process has been basically the same.  Now I am trying to use the WPF Viewer in VS2010 and am getting an "ORA-00942: table or view does not exist" error.  I perform a successful Connectivity Test and receive the error when I'm trying to view the report. 
    If I comment out all of the code that sets the source of the data and performs the connectivity test, the report shows up in the viewer and I'm presented a logon window similar to what I see when i design the RPT file in Crystal Reports. i.e the "Server Name:" shows the name of the Oracle Database I used when I designed the report; the "Database: " is empty; the "Login ID:" displays an edit box and contains the User ID I used when designing the report; and the "Password: " displays an edit box in which I type the password.  Once I click on the OK button, the report is displayed in the WPF viewer.
    Here is the code starting after I have loaded the report into a ReportDocument:
    if(report.IsLoaded)
      CrystalDecisions.Shared.TableLogOnInfo crTableLogonInfo;
      CrystalDecisions.CrystalReports.Engine.Tables crTables = report.Database.Tables;
      foreach(CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
        crTableLogonInfo = crTable.LogOnInfo;
        crTableLogonInfo.ConnectionInfo.LogonProperties.Clear( );
        crTableLogonInfo.ConnectionInfo.Attributes.Collection.Clear( );
        crTableLogonInfo.ConnectionInfo.DatabaseName = null;
        crTableLogonInfo.ConnectionInfo.ServerName = MyDatabase;
        crTableLogonInfo.ConnectionInfo.UserID = MyUsername;
        crTableLogonInfo.ConnectionInfo.Password = MyPassword;
        crTable.ApplyLogOnInfo(crTableLogonInfo);
      report.SetParameterValue("StartingCPID", "AAAAAA");
      report.SetParameterValue("EndingCPID", "ZZZZZZ");
      if(report.Database.Tables[0].TestConnectivity())
        reportViewer.ViewerCore.ReportSource = report;
        reportViewer.ToggleSidePanel = SAPBusinessObjects.WPF.Viewer.Constants.SidePanelKind.None;
      else
        MessageBox.Show("Unable to Connect to Database in report.");
    Any idea what I'm doing wrong or what is different in this version?

    See if the KB [
    [1448013  - Connecting to Oracle database. Error; Failed to load database information|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433343338333033313333%7D.do] helps.
    Also the following may not hurt to have a look at (if only for ideas):
    [1217021 - Err Msg: "Unable to connect invalid log on parameters" using Oracle in VS .NET|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313337333033323331%7D.do]
    [1471508 - Logon error when connecting to Oracle database in a VS .NET application|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433373331333533303338%7D.do]
    [1196712 - Error: "Failed to load the oci.dll" in ASP.NET application against an Oracle database|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393336333733313332%7D.do]
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • How to use Connection.clientinfo with v$session table

    Hi everyone,
    I'm trying to keep tabs on the number of connections I create (via python and cx_Oracle) by monitoring Oracle's v$session table.
    From the cx_Oracle docs, it appears the preferred way to write my "module" and "action" parameters to v$session is via the Connection.clientinfo method.
    I tried creating a connection and using that method, but the results did not appear in the v$session table. Below is how I called the method:
    cnx.clientinfo(module="name of module", action="myaction")
    Is that the correct way to use "clientinfo"?
    The cx_Oracle docs don't provide any usage examples (that I could find), and only point to the Python DB API specs. I didn't notice a mention of this method there:
    http://www.python.org/dev/peps/pep-0249/
    Can anyway show me an example of how to use the "clientinfo" method? Also, is it necessary to have "write" permission for my username in order to access v$session? If so, perhaps that's my problem...

    C:\Documents and Settings\tchsensoy>python
    Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32
    import cx_Oracle
    con = cx_Oracle.connect("player/player@pground")
    cur = con.cursor()
    con.module="query module"
    con.action="dual query"
    con.clientinfo="Husnu Sensoy"
    # Run below SQL after running this line ....
    cur.execute("select dummy from dual")
    con.close()
    exit()select s.PROGRAM, s.CLIENT_INFO, module, action from v$session s where username = 'PLAYER' and program = 'python.exe';
    PROGRAM CLIENT_INFO MODULE ACTION
    python.exe Husnu Sensoy query module dual query
    Hüsnü Şensoy
    Edited by: HSensoy on 19.Eki.2009 02:58
    Edited by: HSensoy on 19.Eki.2009 02:59
    Edited by: HSensoy on 19.Eki.2009 03:00

  • Help with circumvention of ORA-01472: cannot use connect by on view with ..

    Hi,
    Any help resolving the following would be v. helpful.
    The Aim
    Produce a hierarchical report of all users and the privileges they have via the various roles they are granted.
    The SQL
    select lpad(' ', level*2,' ')|| granted_role from (select grantee, granted_role
    from dba_role_privs
    union
    select role, granted_role
    from role_role_privs
    union
    select role, privilege
    from role_sys_privs
    union
    select 'All users', username
    from dba_users)
    start with grantee='All users'
    connect by prior granted_role = grantee;
    The error
    ORA-0147: cannot use connect by on view with DISTINCT, GROUP BY, etc.
    The database
    Oracle 8.1.7.4 (Yes I know ....)
    The Solution
    [Thanks in advance]

    What if you create a table first
    create table role_grants as
        select granted_role, grantee
           from (select grantee, granted_role
                   from dba_role_privs
                 union
                 select role, granted_role
                   from role_role_privs
                 union
                 select role, privilege
                   from role_sys_privs
                 union
                 select 'All users', username
                  from dba_users)
    Then run the hierarchical report
    select lpad(' ', level*2,' ')|| granted_role
       from role_grants
       start with grantee='All users'
       connect by prior granted_role = grantee

  • Ipad connecting with vmware view client v5.1. "any way to disable or hide radial virtual keyboard mouse interface as using blue tooth external keyboard"

    Issue - ipad connecting with vmware view client v5.1. "any way to disable or hide the vmware view's radial virtual keyboard mouse interface" either in vmware view client settings, hidden cmds, or ipad system settings.
    My client is using an external blue tooth ipad metal cover type keyboard and does not wish to have the radial keyboard / mouse visable or floating on desktop when connecting to vm with iPad using vmware view client v5.1.
    i was unable to locate any settings or related toggle key/function combo keystrokes under iPad settings under vmware view client, to affect viewability of the radial keyboard/mouse. And can you kill it from service/process on vm instead of ipad? then dont allow service to restart at startup? What is the name of services that enable the radial virtual keyboard mouse - function to work?
    Thanks for any and all feedback-
    stratman1

    I'm having a very similar issue. Sometimes, when I boot and type in startx (I'm not even a GNOME user--I use dwm and no graphical login manager), I just get a black screen. No mouse cursor, so I think X doesn't even load. It only started with the xserver 1.6 update and the update to that hasn't changed anything. What I've been doing is just rebooting until it loads normally (takes one to three times). Is anyone else having this problem?

  • I have just used air display with macbook pro. i have disconnected now from apple tv. but my laptop screen is still very small like its connected to the tv. this means all the tabs and writing is very small, how do i full disconnect my laptop?

    i have just used air display with macbook pro. i have disconnected now from apple tv. but my laptop screen is still very small like its connected to the tv. this means all the tabs and writing is very small. like the display down the bottom where al the applications are, is n the middle of the page and not spread down the bottom. this is seriously annoying! all the writing is every small and the tabs are small and its hard to read.  the air display link has disappeared from my computer. but the laptop screen is still very small. i want to know how do i get rid of this and return my macbook screen to its normal size. thank you

    Hello chrispyw,
    If your content is still being displayed incorrectly, I would check the resolution setting for the built in display with this article:
    OS X Yosemite: Adjust your display’s resolution
    If it keeps happening whenever you use AirPlay then I would use this section of the following article to reset the display system:
    Apple computers: Troubleshooting issues with video on internal or external displays
    Reset the system
    You can reset the Mac's parameter RAM and SMC.Reset the resolution
    Start by resetting the Mac's parameter RAM. If the display does not come up, was previously set to an unsupported resolution, and still results in no video:
    Start up in Safe Mode.
    From the Apple () menu, choose System Preferences.
    Choose Displays from the View menu to open the preferences pane.
    Select any resolution and refresh rate that your display supports.
    Restart your computer.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • How to manage a connection with powershell using visual studio with C#

    Hi
     I want to manage a connection with powershell for a web app using visual studio with c#. and also run command with pipeline 
    Plz give a some suggestions..

    Hi Raj_Kumar_Saini,
    To make things clear, could you please clarify these thing?
    1. Do you mean you want to execute some PowerShell scripts from C# language? These blogposts may give you  some ideas:
    Executing PowerShell scripts from C#
    Powershell Automation and Remoting (a c# love story)
    Execute PowerShell from a ASP.NET Web Application
    2. Is your question related to Visual Studio Integration? Do you want to build a Visual Studio Extension?
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • ORA-07445 (solaris 9.0.) when inserting into LONG column

    i am getting a core-dump when inserting into a table w/ long column. running 9.0.1 on solaris. ORA-07445: exception encountered: core dump [kghtshrt()+68] [SIGSEGV] [Address not mapped to object] [0x387BBF0] [] [] if anyone has ANY input - please pro

  • Unable to call another program in servlet

    Hi, I'm developing a Java program in Netweaver. It is a servlet program. External server will call this servlet program to pass the value in and then i use the value and pass to a stateless session bean. But now i'm required to make some change but i

  • HT4623 I bought a album on iTunes but it keeps giving me a download error. Won't download songs to my phone.

    I brought a album on iTunes but it will not download on the phone.  Why not?

  • Have a question on build project

    Hi guys, I am trying to build applet with 3rd party classes. I have created 2 packages in the project mypackage/applet mypackage/schedule if I add 3rd party class file into the src folder, I get an error. but.. If I add 3rd party class files into the

  • Drag & Relate Issue.

    Hi All, We are on EP 7.0 and SP13. Definately we are able to use drag and relate feature as from SP12. I have imported BO ( BUS0008 PLANT, BUS 2004 PLANNED ORDER, KNA1 CUSTOMER) 2 Transaction ivew were created as of on bus2004 (order), kna1(cusomer))