Dataaccess is not a member after dragging a table to a web form

Problems using the oracle developer tools:
1) I got a project that is working fine with oracle tools
2) Create a new form
3) Select a table from oracle explorer and dropped on the form
4) I got the error dataaccess is not a member
Seems like the automatic code puts oracle.dataaccess.client in all the declarations and visual studio don't finds this classes.
Any one has any idea how to solve it.
Thank's in advance.
Genis

correction:
1) I got a project working fine with ODP .NET
sorry,
Genis

Similar Messages

  • Not rearrange item after drag&drop on tilelist.

    Hi all,
    Now I have 2 tilelist. I would like to not rearrange item on
    Tilelist after I drag&drop between 2 Tilelist.
    Please help me,
    Thanks you.
    Aoddy

    Hi all,
    Now I have 2 tilelist. I would like to not rearrange item on
    Tilelist after I drag&drop between 2 Tilelist.
    Please help me,
    Thanks you.
    Aoddy

  • DataGrid not reflecting changes after INSERT into Table. Delete from Table does.

    Wow, it's been a while.
    Hope you guys can help.
    This is my DataGrid:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    <DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="BorderThickness" Value="0"/>
    </Style>
    </DataGrid.CellStyle>
    <DataGrid.Columns>
    <DataGridTextColumn x:Name="NodeColumn" Binding="{Binding node}" Header="VS Number" Width="*"/>
    <DataGridTextColumn x:Name="SerialColumn" Binding="{Binding serial}" Header="Serial Number" Width="*"/>
    <DataGridTextColumn x:Name="NameColumn" Binding="{Binding name}" Header="Asset Name" Width="*"/>
    <DataGridTextColumn x:Name="TypeColumn" Binding="{Binding type}" Header="Asset Type" Width="*"/>
    <DataGridTextColumn x:Name="_dateColumn" Binding="{Binding date}" Header="Date Allocated" Width="*"/>
    <DataGridTextColumn x:Name="PoColumn" Binding="{Binding po}" Header="Purchase Order" Width="*"/>
    </DataGrid.Columns>
    </DataGrid>
    This is where I add a new Row to the Table:
    Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
    Dim cbblocation As ComboBox = Me.FindName("LocationComboBox")
    Dim row As DataRowView = DirectCast(cbblocation.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    Dim cbbtype As ComboBox = Me.FindName("comboBoxType")
    Dim cbbtext2 As String = cbbtype.Text
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.AddNewAsset(cbbtext, txbSerial.Text, txbName.Text, cbbtext2, Date.Today, txbPO.Text)
    node = cbbtext
    Dim mp As New MainPage
    mp.RefreshGrid(node)
    Me.Close()
    End Sub
    The RefreshGrid method:
    Public Sub RefreshGrid(node As String)
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.FillByNode(RETAILISOAMDDataSet.tableAssets, node)
    Dim TableAssetsViewSource As System.Windows.Data.CollectionViewSource = CType(Me.FindResource("TableAssetsViewSource"), System.Windows.Data.CollectionViewSource)
    Dim be As BindingExpression = BindingOperations.GetBindingExpression(TableAssetsViewSource, CollectionViewSource.SourceProperty)
    be.UpdateTarget()
    End Sub
    And this is what I use to delete a row from the table (and without doing anything special, the DataGrid auto-updates with the changes):
    Private Sub Button_Click_4(sender As Object, e As RoutedEventArgs)
    If TableAssetsDataGrid.SelectedIndex = -1 Then
    MsgBox("You have selected nothing to Delete!", MsgBoxStyle.OkOnly, "Nothing Selected")
    Else
    Dim dgv As DataGridTextColumn = Me.FindName("NodeColumn")
    Dim row As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText As String = row.Item("node")
    Dim dgv2 As DataGridTextColumn = Me.FindName("SerialColumn")
    Dim row2 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText2 As String = row.Item("serial")
    Dim dgv3 As DataGridTextColumn = Me.FindName("NameColumn")
    Dim row3 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText3 As String = row.Item("name")
    Dim dgv4 As DataGridTextColumn = Me.FindName("TypeColumn")
    Dim row4 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText4 As String = row.Item("type")
    Dim dgv5 As DataGridTextColumn = Me.FindName("_dateColumn")
    Dim row5 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText5 As String = row.Item("date")
    Dim dgv6 As DataGridTextColumn = Me.FindName("POColumn")
    Dim row6 As DataRowView = DirectCast(Me.TableAssetsDataGrid.SelectedItem, DataRowView)
    Dim dgvText6 As String = row.Item("po")
    Dim RETAILISOAMDDataSet As Retail_ISO_AMD.RETAILISOAMDDataSet = CType(Me.FindResource("RETAILISOAMDDataSet"), Retail_ISO_AMD.RETAILISOAMDDataSet)
    Dim RETAILISOAMDDataSetTableAssetsTableAdapter As Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter = New Retail_ISO_AMD.RETAILISOAMDDataSetTableAdapters.tableAssetsTableAdapter()
    RETAILISOAMDDataSetTableAssetsTableAdapter.RemoveAsset(dgvText, dgvText2, dgvText3, dgvText4, dgvText5, dgvText6)
    Dim cbb As ComboBox = Me.FindName("cbbLocation")
    Dim row7 As DataRowView = DirectCast(cbb.SelectedItem, DataRowView)
    Dim cbbtext As String = row.Item("node")
    RefreshGrid(cbbtext)
    End If
    End Sub
    --------- End of Edit
    It is bound to a Dataset which gets it's data from a SQL Database.
    Loading the Data and Filtering the data based on certain conditions work 100%. The problem I am having is as follows:
    I have a form on the Page that takes input and inserts a row into the Database. When this happens, the DataGrid won't automatically reflect the changes (even if I recall the Fill Method of the Dataset). No matter what I do, I have to refresh the entire page
    and THEN Fill the Dataset to see any changes.
    This is what strikes me as odd...
    When I do a delete row operation on the Database (Custom Method on the Dataset with conditions), and just Fill the Dataset again (without doing anything special), the row deletes and the changes is reflected IMMEDIATELY.
    What am I doing wrong here? Why would Delete Row reflect the changes on the DataGrid but no Insert Row?
    Thanks in Advance.
    (P.S. I am very rusty with my developing skills, I haven't done this in YEARS)

    >>And what about the the most important question, how exactly is TableAssetsViewSource defined in the XAML markup and what is
    its Source property set or bound to? And what about the reproducable sample...?
    Here is the Markup of the TableAssetsViewSource:
    <Page.Resources>
    <local:RETAILISOAMDDataSet x:Key="RETAILISOAMDDataSet"/>
    <CollectionViewSource x:Key="TableRegionsViewSource" Source="{Binding tableRegions, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableLocationsViewSource" Source="{Binding tableLocations, Source={StaticResource RETAILISOAMDDataSet}}"/>
    <CollectionViewSource x:Key="TableAssetsViewSource" Source="{Binding tableAssets, Source={StaticResource RETAILISOAMDDataSet}}"/>
    </Page.Resources>
    The ItemsSource of the DataGrid is bound to the TableAssetsViewSource:
    <DataGrid DataContext="{StaticResource TableAssetsViewSource}" ItemsSource="{Binding}" x:Name="TableAssetsDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" Margin="15,10,10,10" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Column="1" HeadersVisibility="Column" CanUserResizeRows="False" IsReadOnly="True">
    Just remember, this code was auto-generated with the drag & drop onto the Page, so I did little in terms of setting the actual bindings.
    All in all, what I have done so far works as intended, except that when I want to add a row to the table it does not reflect, and that it only shows after refreshing/restarting the application.
    I will try and put together a reproducable sample.

  • Can not refresh ValueObject after altering database table

    Hello All,
    In FB4, in order to refresh a service, I used to
    - select a service operation
    - select configure return type
    - select auto-detect
    - hit next and on the follow page select the existing ValueObject
    ...it would update.
    As far as I can see, this does not work in FB4.5.  Instead, after selecting auto-detect and clicking next:
    There was an error while invoking the operation. Check your operation inputs or server code and try invoking the operation again.
    Reason: Warning: mysqli_stmt_bind_result(): Number of bind variables doesn't match number of fields in prepared statement in...
    Is there a way to refresh a ValueObject.  Clicking refresh is a no go.
    Thanks for your help!
    J

    hey jay.  did you ever figure out how to update your valueObject?  I just posted a similar discussion "changing php-service in FD breaks AS3 service class and valueObjects" here: http://forums.adobe.com/thread/882288
    maybe we'll get a reply....

  • SQL azure database size not dropping down after deleting all table

    Dear all,
    I have a simple database on Azure for which I have deleted all table data. The size of the database is still showing 5Mb of data and I am charge for that. I have heard that this may happen from cluster index getting fragmented.
    I have run  a querry I found on internet on all my table index to show percentage of fragmentation and all report 0%.
    DBA is not so my job but what could it be or how can I reduce that size ?
    ON premise I would use COMPACT DB but not available in azure like some others DB action
    Thnaks for tips
    regards

    user created objects/data are not the only ones stored in your database. you got system objects and metadata as Mike mentions above.
    are you trying to skip being charged if you're not storing data? looking at the pricing table,  you'll still get charged the $4.995 for the 0-100MB database size range.

  • Firefox now says Java not installed, yet after checking plugins it is, certain web sites say Java is required, how do i remedy this?

    On certain websites, i get the message "Java is required to view this image/page", instead of seeing the image or page. What is the problem, and how to i fix this? It suddenly happend yesterday, i love my Firefox so much better than Safari on my MAC below is critical data for you to view about my Version of Firefox:
    <br />
    Application Basics
    Name
    Firefox
    Version
    3.6.25
    Profile Directory
    Show in Finder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Adblock Plus
    2.0.3
    true
    {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    ColorfulTabs
    4.8.0.5
    true
    {0545b830-f0aa-4d7e-8820-50a4629a56fe}
    Download Statusbar
    0.9.10
    true
    {D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}
    DownloadHelper
    4.9.8
    true
    {b9db16a4-6edc-47ec-a1f4-b86292ed211d}
    Fasterfox
    3.9.8
    true
    {c36177c0-224a-11da-8cd6-0800200c9a91}
    FastestFox
    4.7.4
    true
    [email protected]
    FlashGot
    1.3.7
    true
    {19503e42-ca3c-4c27-b1e2-9cdb2170ee34}
    Forecastfox
    2.0.21
    true
    {0538E3E3-7E9B-4d49-8831-A227C80A7AD3}
    gui:config
    1.2.2
    true
    [email protected]
    HashColouredTabs+
    0.4.23
    true
    [email protected]
    Image Toolbar
    0.6.8
    true
    {A4732521-77D9-447E-A557-B279AC923F06}
    Media Converter
    1.0.3
    true
    {6e764c17-863a-450f-bdd0-6772bd5aaa18}
    NoScript
    2.2.8
    true
    {73a6fe31-595d-460b-a920-fcc0f8843232}
    Open Image In New Tab
    1.1
    true
    [email protected]
    Password Exporter
    1.2.1
    true
    {B17C1C5A-04B1-11DB-9804-B622A1EF5492}
    Screengrab
    0.96.3
    true
    {02450954-cdd9-410f-b1da-db804e18c671}
    Subtile
    1.3
    true
    {88ce39f5-1e54-477c-809d-93d411720f0c}
    Tab Mix Plus
    0.3.8.7
    true
    {dc572301-7619-498c-a57d-39143191b318}
    TrackMeNot
    0.6.728
    true
    [email protected]
    Unhide Passwords
    1.2.7.0
    true
    {2e17e2b2-b8d4-4a67-8d7b-fafa6cc9d1d0}
    UrlbarExt
    1.8.1
    true
    {10c62ce3-3794-4c18-a881-481733c1a425}
    CuteMenus2
    3.2
    true
    {71C54606-83ED-4ea6-9315-1AAB29466D33}
    Ghostery
    2.7.1
    true
    [email protected]
    Modified Preferences
    Name
    Value
    accessibility.blockautorefresh
    true
    browser.history_expire_days.mirror
    180
    browser.history_expire_days_min
    0
    browser.link.open_newwindow.override.external
    -1
    browser.link.open_newwindow.restriction
    0
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage
    about:blank
    browser.startup.homepage_override.mstone
    rv:1.9.2.25
    browser.tabs.closeWindowWithLastTab
    false
    browser.tabs.warnOnClose
    false
    browser.zoom.full
    false
    dom.disable_window_move_resize
    true
    dom.event.contextmenu.enabled
    false
    extensions.checkCompatibility
    true
    extensions.lastAppVersion
    3.6.25
    font.default.x-western
    sans-serif
    font.minimum-size.x-western
    14
    font.name.sans-serif.x-western
    Arial Rounded MT Bold
    font.name.serif.x-western
    Arial Black
    font.size.fixed.x-western
    18
    font.size.variable.x-western
    18
    javascript.options.showInConsole
    true
    javascript.options.strict
    true
    network.cookie.cookieBehavior
    1
    network.cookie.prefsMigrated
    true
    network.http.max-connections
    24
    places.last_vacuum
    1323804497
    print.macosx.pagesetup-2
    PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHBsaXN0IFBVQkxJQyAiLS8vQXBwbGUgQ29tcHV0ZXIvL0RURCBQTElT…
    print.print_bgcolor
    false
    print.print_bgimages
    false
    print.print_command
    print.print_downloadfonts
    false
    print.print_evenpages
    true
    print.print_in_color
    true
    print.print_margin_bottom
    0.5
    print.print_margin_left
    0.5
    print.print_margin_right
    0.5
    print.print_margin_top
    0.5
    print.print_oddpages
    true
    print.print_orientation
    0
    print.print_pagedelay
    500
    print.print_paper_data
    0
    print.print_paper_height
    11.00
    print.print_paper_size_type
    1
    print.print_paper_size_unit
    0
    print.print_paper_width
    8.50
    print.print_printer
    print.print_reversed
    false
    print.print_scaling
    1.00
    print.print_shrink_to_fit
    true
    print.print_to_file
    false
    print.print_unwriteable_margin_bottom
    56
    print.print_unwriteable_margin_left
    25
    print.print_unwriteable_margin_right
    25
    print.print_unwriteable_margin_top
    25
    privacy.clearOnShutdown.extensions-tabmix
    true
    privacy.clearOnShutdown.offlineApps
    true
    privacy.cpd.extensions-tabmix
    true
    privacy.cpd.siteSettings
    true
    privacy.sanitize.migrateFx3Prefs
    true
    privacy.sanitize.sanitizeOnShutdown
    true
    security.OCSP.disable_button.managecrl
    false
    security.default_personal_cert
    Select Automatically
    security.disable_button.openDeviceManager
    false
    security.warn_viewing_mixed
    false

    Hi Redfyre-
    Here is an article on troubleshooting issues with the java plugin:
    [[Using the Java plugin with Firefox]]
    Hopefully that will help- especially the Java test page.

  • I manually add my songs to my iphone, after dragging from itunes, it shows the syncing message but the songs do not show up on the ipod. I was able to copy songs successfully before.

    I manually add my songs to my iphone, after dragging it from itunes, it shows the syncing message but the songs do not show up on the ipod. I was able to copy songs successfully before. Please help.

    Now title changes are showing up on my iPod, but not artist and album changes

  • I manually add my songs to my iphone, after dragging, it shows the syncing message but the songs do not show up on the ipod. I was able to copy songs successfully before.

    I manually add my songs to my iphone, after dragging, it shows the syncing message but the songs do not show up on the ipod. I was able to copy songs successfully before. Please help.

    Now title changes are showing up on my iPod, but not artist and album changes

  • Fingerprint reader not working and cant drag icons after windows 10 update

    fingerprint reader not working and cant drag icons after windows 10 update

    Hello , Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More. I read your post about the Windows 10 update, and wanted to assist you! To start, can you please provide me with the Product Number of your notebook?  Here is a link you can use that will help you find your Model and Product Number: How Do I Find My Model Number or Product Number? In the meantime, I recommend using the Go back to an earlier build option, in your System Settings:
    HP Notebook PCs - Upgrading to Windows 10
    Once you are back to your original Operating System, check to see if you are experiencing the same issue. If not, then you may consider holding off on the Windows 10 update for a few weeks, until drivers can be updated. Please let me know if this information was helpful by clicking the thumbs up below.
    Have a great day!

  • TFS says {oldaccount} is not a member of the Team Foundation Valid Users group, but I am

    I'm trying to check in changes to TFS using VS2013. When I hit the submit button, TFS returns the following error, "TF14002: The identity {domain} \ {oldaccount} is not a member of the Team Foundation Valid Users group."
    Background: my account name has been changed to {newaccount} from {oldaccount}.  And when the sys-admins changed my account name they did not update my computer itself, so I'm still using C:\Users\{oldaccount}. I can't believe that would make a difference
    but you never know....
    When I first started working at this company I'm almost certain I set up my TFS Workspace with my old account. But I thought I deleted all that stuff related to my old account and reset everything to my new account (Workspaces and TFS server). My lead tech
    has even shown me the account mgmnt screen with my new account name. And I've been able to check out items with my new account name.
    I performed the following steps to try to "clean out" TFS:
    • I copied all of my changed files to a back-up location.
    • I undid all changes in TFS (note that TFS has been allowing me to check out files to edit).
    • I deleted the TFS entry in Credential Manager per a suggestion online.
    • I deleted my Workspace.
    • I even deleted my TFS server.
    • I Rebooted my computer.
    • I reconnected to the TFS server.
    • I rebuilt my Workspace.
    • I restored my changed files from my back-up location.
    At this point I tried checking-in my changes again but got the same error message as above.
    Next, I deleted everything in this folder:
    C:\Users\ ...\AppData\Local\Microsoft\Team Foundation\5.0\Cache
    ... but I'm still seeing the error.
    Also, we'd been informed that a number of us need to downgrade from "Ultimate" to "Professional".  I did my downgrade to VS2013 Pro (after the steps above) but I am still seeing the same error.
    A comment on another question
    here suggested that I shelve my changes without preserving changes locally, then un-shelve and attempt to check-in.  This also did not work, I could shelve my changes and un-shelve, but doing so did not fix the original problem.
    Note that I do NOT have access to the TFS server itself - much less permissions to perform any sort of admin on it (and I don't know the person who would) - but might there be a table in the TFS database that still has an entry for my old account that could
    be joining to my computer name &/or new account name when TFS goes to look up my account info when I check in my changes? I am getting desperate for an answer!
    Any suggestions?
    Thanks,
    D. Kelley

    Hi D. Kelley,
    Thanks for the details. Based on your description, you might need to change or update the SID for users. Try identity command to change the username if you never use the new username in TFS. Check this page for more information about
    identities command in this
    page.
    You can also check the table "tbl_Identity" in the tfs_configuration database to see if the new user exists, or it has the old user. Another option is have a check on other machines to see if it works fine. Refer to links below for more information:
    https://social.msdn.microsoft.com/Forums/en-US/93568425-a877-4d21-8497-1adc4561b6d3/unable-to-check-in-code-to-tfs-due-to-tf14002-the-identity-old-user-name-is-not-a-member-of-the?forum=tfsversioncontrol
    https://social.msdn.microsoft.com/Forums/en-US/acc56859-624f-41bc-b698-cbb5e0b8f525/cant-check-in-code-the-identity-devoldusername-is-not-a-member-of-the-team-foundation-valid?forum=tfsversioncontrol
    Best regards,
    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.

  • LDAP Authentication Failed :user is not a member in any of the mapped group

    Hi,
    I tried to set up the LDAP Authentication but I failed.
    LDAP Server Configuration Summary seems to be well filled.
    I managed to add a Mapped LDAP member Group: This group appears correctly in the Group list. 
    But itu2019s impossible to create a User. Although this user is a member of the mapped group (checked with LDAP Brower) , an error message is displayed when I tried to create it (There was an error while writing data back to the server: Creation of the user User cannot complete because the user is not a member in any of the mapped groups)
    LDAP Hosts: ldapserverip:389
    LDAP Server Type: Custom
    Base LDAP Distinguished Name: dc=vds,dc=enterprise
    LDAP Server Administration Distinguished Name: CN=myAdminUser,OU=System Accounts,OU=ZZ Group Global,ou=domain1,dc=vds,dc=enterprise
    LDAP Referral Distinguished Name:
    Maximum Referral Hops: 0
    SSL Type: Basic (no SSL)
    Single Sign On Type: None
    CMS Log :
    trace message: LDAP: No such attribute: supportedControl, assuming no ranging support.
    trace message: LDAP: LdapQueryForEntries: QUERY base: dc=vds, dc=enterprise, scope: 2, filter: (samaccountname=KR50162), attribute: dn objectclass
    trace message: LDAP: LdapQueryForEntries: QUERY result: 0 took 2453 ms
    trace message: LDAP: LdapQueryForEntries() QUERY number of entries returned: 1
    trace message: GetParents from plugin for cn=huh\,chen, ou=accounts, ou=users, ou=domain1, dc=vds, dc=enterprise.
    trace message: LDAP: De-activating query cache
    trace message: LDAP: LdapQueryForEntries: QUERY base: , scope: 0, filter: (objectClass=*), attribute: supportedControl
    trace message: LDAP: LdapQueryForEntries: QUERY result: 0 took 0 ms
    trace message: LDAP: LdapQueryForEntries() QUERY number of entries returned: 0
    trace message: LDAP: query for DSE root returned 89
    trace message: LdapQueryForEntries: incr. retries to 1
    trace message: LDAP: Updating the graph
    trace message: LDAP: Starting Graph Update...
    trace message: LDAP: LdapQueryForEntries: QUERY base: , scope: 0, filter: (objectClass=*), attribute: supportedControl
    trace message: LDAP: LdapQueryForEntries: QUERY result: 0 took 0 ms
    trace message: LDAP: LdapQueryForEntries() QUERY number of entries returned: 0
    trace message: LDAP: query for DSE root returned 89
    trace message: LdapQueryForEntries: incr. retries to 1
    trace message: LDAP: LdapQueryForEntries: QUERY base: , scope: 0, filter: (objectClass=*), attribute: supportedControl
    trace message: LDAP: LdapQueryForEntries: QUERY result: 0 took 0 ms
    trace message: LDAP: LdapQueryForEntries() QUERY number of entries returned: 1
    assert failure: (.\ldap_wrapper.cpp:3066). (pSetAttributes : no message).
    trace message: LDAP: No such attribute: supportedControl, assuming no ranging support.
    trace message: LDAP: LdapQueryForEntries: QUERY base: dc=enterprise, scope: 2, filter: (&(cn=gp-asia)(objectclass=group)(member=cn=huh
    , chen, ou=accounts, ou=users, ou=domain1, dc=vds, dc=enterprise)), attribute: objectclass
    trace message: LDAP: LdapQueryForEntries: QUERY base: , scope: 0, filter: (objectClass=*), attribute: supportedControl
    trace message: LDAP: LdapQueryForEntries: QUERY result: 0 took 0 ms
    trace message: LDAP: LdapQueryForEntries() QUERY number of entries returned: 1
    assert failure: (.\ldap_wrapper.cpp:3066). (pSetAttributes : no message).
    trace message: LDAP: No such attribute: supportedControl, assuming no ranging support.
    trace message: LDAP: LdapQueryForEntries: QUERY base: dc=enterprise, scope: 2, filter: (cn=gp-asia), attribute: member objectclass samaccountname cn
    trace message: LDAP: LdapQueryForEntries: QUERY result: 0 took 3109 ms
    trace message: LDAP: LdapQueryForEntries() QUERY number of entries returned: 0
    trace message: LDAP: query for DSE root returned 0
    trace message: Failed to commit user 'KR50162'. Reason: user is not a member in any of the mapped groups.
    trace message: [UID=0;USID=0;ID=79243] Update object in database failed
    trace message: Commit failed.+
    Can you please help?
    Joffrey

    Please do this after you verify all permission settings for all the groups the account is associated with. Also, make sure you check the NTFS folder permissions before doing this as well.
    Since the same result happens on multiple computers, it is not the profile.
    I am recommending you delete the AD account (or rename to backup the account).
    It will not effect the users Exchange account, but you will need to link it back to the new AD user account. 
    You can also delete her profile just to remove it, for the "just in case" scenario.
    Don't forget to mark the post that solved your issue as &quot;Answered.&quot; By marking the Answer you are enabling users with similar issues to find what helped you. Lewis Renwick - IT Professional

  • Database instance: You are not a member of the specified Installer group

    Hi,
    When I start ./RUNINSTALLER in HP-UX to install oracle, as a part of database instance instalation of SAP, the following message appeared.
    "The Oracle Universal Installer Inventory on this system does not exist or is not writable. the possible cause are:
            1. The /tmp/orainstRoot.sh script was not executed with root priveleges, or an error occured during  execution
            2.  You are not a member of the specified Installer group"
    Mention that I have executed the script by root user without any error.
    Requesting your kind help to solve the problem.
    Regards
    Wahid

    Hi,
    I am trying to install oracle 9i as required by SAP ECC 5.0. Instance name is PRD as disaster recovery will be tested in that system. In the same time our SOLMAN is running in that system with database oracle 10g. We are planning to run parallel process in same time SOLMAN and DR PRD.
    Till now we have done SAP Central instance installation. While trying to install database instance SAP asked to go /oracle/stage/920_64/Disk1/SAP and run the script RUNINSTALLER in HP-UX system for oracle.
    To do this I have done the following
    a. Logged on the system as oraprd
    b. Set up environmental variable
              ORACLE_HOEM to /oracle/PRD/920_64
              DISPLAY to My work station IP:0.0
    and started OS> ./RUNINSTALLER
    After some time a window appeared headed by "Inventory Location"
    I Specified base directory /oracle/oraInventory and pressed OK.
    Then a window asked to run script /tmp/orainstRoot.sh by root user and then press continue
    The script run successfully by user root. But when I press continue the following message appeared.
    The Oracle universal Installer Inventory on this system does not exist or is not writable. The possible cause are:
            1.  /tmp/orainstRoot.sh script was not executed with root priveleges or an error occured during execution.
            2.  You are not a member of the specified Installer group.
    Please help me how can I resolved the problem.

  • Missing thumbnails after dragging a project into another folder?

    Why would cause whole bunch of photos in an album to not show up in browser/viewer after dragging and dropping from one folder into another?
    If I click on the root folder where the project is located, all the photos show up again on the browser/viewer. But when I click on the specific album within the folder, they disappear again.
    The only way I can find to get Aperture to display the photos in the album is to close the app and relaunch it, which is extremely annoying when I just want to move a couple of albums around.

    Looks like this is the closest to the trouble I am having. I am having the same issues. just downloaded the trial version and imported all my iphoto library but all my video files are missing those thumbnail in the browser format... well actually regardless how I view the file, thumbnails are missing for all the videos. To me, it doesn't do anything even if I restart the app...

  • After dragging a map and navigating away all other scenes are off centre..

    My Flash document contains several scenes, one of them is a draggable map including hotspots/buttons to navigate to another scene.
    After dragging the map then navigating from one of the buttons the next frame is remains off centre (as if when the map was dragged the whole Flash movie has been dragged away from the centre stage).
    The map is a graphic, inside that it is a button and then inside that the navigational button.
    In the timeline in an actions layer I have:
    stop();
    mapisland.onPress = function(){
        this.startDrag(false,296,317,-55,10);
    mapisland.onRelease = function(){
        stopDrag
    mapisland.onReleaseOutside = function(){
         stopDrag
    And applied to the hotspot button:
    on (release) {
        this._parent.gotoAndPlay("Arrow");
    The navigation and drag work fine, however as I stated before when navigated to the "Arrow" scene the all that can be seen of it is just a corner.
    Any help would be greatly appreciated. Thank You
    Ric

    If your Jetpack is powered on then you are going to be liable for any data usage that occurs.  It doesn't matter if the usage was intentional or not.  The best practice while investigating a data usage/overage situation is to power down your Jetpack when you are done using it.  That is the only way you can be sure that your sleeping devices are not actually communicating and pulling updates.  Situations like this are often why I do not suggest Jetpacks as a primary internet connection from home.  Jetpacks are designed to be temporary and mobile internet connections best suited for a traveling business man or someone frequently on the move.
    It sounds like you have done everything that VZW can normally do in an overage situation.  You had your first overage wiped, had the device swapped out and changed passwords (although that shouldn't matter from your description).  The only loose end you haven't tended to is leaving the Jetpack powered on when not in use.  That or switching to a different Jetpack model or 4G LTE device (ex. USB modem+router or 4G LTE router) to see if they behave any better.
    My suggestion would be to terminate considering the amount of time and money you have already invested in this situation.  Give another service provider a chance and see if the performance is any better.  If you spend more time troubleshooting it should be on how to handle the termination fee (which is pro-rated). VZW will still be here if you decide to return down the road, perhaps things will be better.

  • Iphoto unexpectedly qyuits. This began after dragging photo's into iphoto from scanner

    iphoto now unexpectedly quits. This began after dragging photo's into iphoto from scanner

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

Maybe you are looking for

  • Making a form, why does the text type over top of itself in the form field?

    Hi, I am making a certificate form for a client to fill out and print when needed. I designed everything in InDesign, exported to pdf, and made a form field for Old English MT for the name and date. When I close the form editing window and type a nam

  • Broken monitor

    My Macbook Air has a broken monitor, so I'm trying to connect to an external HDMI monitor using a HDMI cable with no success.  Everything I see on help sites talks of clicking inside system preferences on the primary monitor.  However, since my prima

  • Organizing Photos Into Albums

    I just got an iPhone 4 and its the first iPhone I've owned. I'm wondering if it's possible to organize my photos and downloaded images into different albums. I'm an organizer and it's driving me crazy that everything is lumped together. It may be a r

  • HP G62 System Recovery hangs or not?

    Hi, I have a HP G62 laptop Windows 7 that I am recovering with 4 recovery cd's. Everything went well untill the 4th cd, the progress is stalled at 76% but the estimated time remaining is changing, its currently at 65 minutes. Should I be worried, is

  • BC SETS IN SAP SD

    HELLO GURUS AM SD LEARNER PLS LET ME KNOW THE BC SETS IN SD WHAT IS BC SETS WHERE WE CAN USE  THIS SETS PLS EXPALIN ME CLEARLY IF POSSIBLE TELL ME THE SITES FOR METERIAL CHEERS HARI