'table does not exist' when creating generic datasource

I went to SBIW->Business Content DataSources->Transfer Business Content DataSources-chose "content delta". it said 'comparison bct <-> cust version ' then it counted thru several objects for a few minutes and finished with no warnings.
then I selected each datasource under co-om-cca and activated those with no problems.
problem: now when i try to create came generic datasource using co-om-cca application component i get mssg when saving 'the specified table does not exist'...so now it isn't even letting me create a datasource at all using a standard application component either.
I have been having many problems with creating datasources and using application components and this is why I did the first paragraph because I don't know what else to try.
Please help, thanks.

I have answered my own question.  I wasn't entering the view/table and it was my own complete oversight.

Similar Messages

  • Table does not exist when creating FK Constraint across schemas

    Hi all,
    This will probably boil down to a permissions issue since I'm sketchy on the various levels....
    I'm testing a conversion to Oracle from our legacy system. There are 4 schemas which I've created and each of those schema users have been granted DBA roles.
    After creating a number of tables I wrote the SQL to create the FK Constraints. Most of them went in, but the ones crossing schemas don't. Logged in as SYS, I can do a select from each table, I can even JOIN the two in the SELECT. However when I try creating the constraint it give me a: ORA-00942: table or view does not exist
    ALTER TABLE USERA.TABLEA ADD FOREIGN KEY (COLA) REFERENCES USERB.TABLEB (COLA) ON DELETE CASCADE
    Again, I have scads of commands that went in correctly so this must be a permissions type thing. I'm the only one logged into the database since it's my own test system. This is 10g BTW.
    If you have any suggestions as what to look into, please explain how to actually perform the checks since I'm still learning how to get around.
    Thanks very much!

    To bulk grant, you can use dynamic SQL; somthing like this:
    <BR><BR>
    SQL> declare
      2    l_grantor VARCHAR2(30) := 'USERA';
      3    l_grantee VARCHAR2(30) := 'USERB';
      4  begin
      5    for table_rec in (select owner,table_name from all_tables where OWNER=l_grantor) loop
      6      execute immediate 'GRANT REFERENCES ON '||table_rec.OWNER||'.'||table_rec.TABLE_NAME||' TO '||l_grantee;
      7    end loop;
      8  end;
      9  /

  • EXP-00011 table does not exist

    Hi guru's,
    My DB Version: 10.2.0.2.0
    OS Version: Solaris 10
    While trying to export a table from a schema i am getting error:
    exp-00011 table does not exist
    when i check the source database i found that table name as 'abc' exists there
    but when i log on to schema and try to check the info about the abc table with below mentioned query i got below error:
    SQL> select table_name from user_tables where table_name='rtx';
    no rows selected
    i also checked with table_name='RTX'
    i am getting the same error.
    Can anyone help me out

    sorry the table name is rtx
    C:\Documents and Settings\Administrator>exp userid=sysadm/rtxprod@rtxprod tables=sysadm.rtx file='E:\rtx.dmp' buffer=1000000 feedback=10000 statistics=none
    Export: Release 10.2.0.1.0 - Production on Thu May 10 14:36:34 2012
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options^C
    C:\Documents and Settings\Administrator>exp userid=sysadm/rtxprod@rtxprod tables=sysadm.rtx file='E:\rtx.dmp' buffer=1000000 feedback=10000 statistics=none
    Export: Release 10.2.0.1.0 - Production on Thu May 10 14:37:05 2012
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    EXP-00011: SYSADM.RTX does not exist
    Export terminated successfully with warnings.

  • Table or view does not exist when using in PL/SQL block

    I hav something strange...
    When i execute a query it works just fine... When i use the exact same query in a function i want to create, i get the error 'table or view does not exist'
    I create the function with the same user then when i'm executing the query.
    For example:
    select name,userid from portal.WWLOG_ACTIVITY_LOGS
    if i execute this... it works fine. I get my results.
    However when i create a function:
    CREATE OR REPLACE FUNCTION EBUSINESS.GET_USER_CREATOR (p_userid IN Varchar2) return VARCHAR2
    as
    /*CURSOR c_user_creator IS
    select distinct name,userid from portal.WWLOG_ACTIVITY_LOGS
    where sub_domain = 'user' and action = 'create'
    and name = p_userid;*/
    v_creator varchar2(500);
    v_ret_val VARCHAR2(500) := 'NOT_FOUND';
    BEGIN
    select userid into v_ret_val from portal.WWLOG_ACTIVITY_LOGS
    where sub_domain = 'user' and action = 'create'
    and name = p_userid;
    --v_ret_val := x.userid;
    --end loop;
    -- Is the user in the group or not?
    /*OPEN c_user_creator;
    FETCH c_user_creator INTO v_creator;
    IF c_user_creator%FOUND THEN
    v_ret_val := v_creator;
    ELSE
    v_ret_val := 'NOT FOUND';
    END IF;
    CLOSE c_user_creator;*/
    Return v_ret_val;
    END;
    The table or view does not exist...
    I tryed with cursor, select into, for x in (select....)
    Nothing works.
    A select grant is a select grant right? Are there different grant you should use so you can select it into a function or just do a normal select?
    I also tryed to create a view that just sais select * from WWLOG_ACTIVITY_LOGS but that doesn't work...

    Are there different grant you should use so you can
    select it into a function or just do a normal select? Yes. Grants on objects used in functions/procedures must be given directly to the user, and not through a role.

  • Table does not Exist in Unix OS after it has been created In HTML_DB

    I created a table in HTML_DB and can see the table fine in my HTML_DB application. However, when I go to the Unix OS and try to look up the database using SQL*Plus, I am getting an error saying the table does not exist. Any help as to why this is happening would be appreciated.
    Kelly

    When I go to the Unix OS, I then try and search for the table in the exact schema that I used in >HTML_DB.I don't see what the Unix OS has to do with it here...do you mean you're connecting via SQLPlus?
    If you're connecting via SQLPlus, which schema are you connecting to? (i.e. are you certain you're connecting to the same schema that the table was created under when you were connected to Application Express).

  • Short dump 'Table does not exist in database'

    Hello All,
    When a report is executing it is going to short dump by saying 'Table does not exist in database'. As per the short dump analysis this issue is happening because of the following   Native SQL statement statement :
    Program :  %_T050N0 (This is a dynamic  program generating by SAP )
    Form Name :  DYN_LIC_SEL_TOT
    exec sql performing LOOP_MOVE_WRITE_ISAP.
    select single_plate, itm_num, ctry_code, model_lot,
    lic_hold_flg, qty into :dcat-lplate, :dcat-matnr,
    :dcat-werks, :dcat-charg, :dcat-holdflag,
    :dcat-qty from ZLICENSE_R2 where itm_num   = :p_matnr and
                    model_lot = :p_charg
    endexec.
    As per the customer this issue occurring since they migrated the SAP  back-end data base from Oralce to DB6. Here I felt that ZLICENSE_R2 is not migrated from the  Oracle to DB6. But as per the BASIS Team, even this table was not maintained in Oracle also. If the table was not maintained in the Oracle, this issue should have been there even before migration also.
    Following is the short dump details:
    Short text
        Table does not exist in database.
    What happened?
        The table or view name used does not
        exist in the database.
        The error occurred in the current database connection "DEFAULT".
    What can you do?
        Check the spelling of the table names in your report.
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_NATIVE_SQL_ERROR', was not
         caught in
       procedure "DYN_LIC_SEL_TOT" "(FORM)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    Triggering SQL statement: "select single_plate, itm_num, ctry_code, model_lot,
    lic_hold_flg, qty from ZLICENSE_R2 where itm_num = ? and model_lot = ? "
    Database error code: "-204"
    Could you please  let me know what might be the reason for this issue.
    Many Thanks in Advance.

    Transaction SE11, input ZLICENSE_R2 for table name, and display the table. Did the table display? If not, that is the main problem.
    If the table displays, go to menu item Utilities -> Database Object -> Database Utility
    In the resulting screen, under the "Status" fields, you should see text "Exists in the database." If you don't, then the table exists in the dictionary, but doesn't exist in the database system. Click the "Create database table" button and then you should be able to run the program.
    You may need basis team's help to carryout some of these actions.

  • Table does not exist in system after DB Connect

    Hi Everyone,
    I must extract data from a oracle db.  I create a source system with DB Connect and it's connect successful.
    Later, i create a datasource for that source system. but it show the table does not exist in system. I'm sure the table is correct. why?
    Thanks!

    Check the schema names & ensure it is with the same owner/name as in the DB source table/view. You can also use a simple lookup table which checks table/views in your schema from other standard tables.

  • Table does not exist error

    create table dytab(x number);
        create or replace procedure p_testdytab(p_tab in varchar2)
        is
        begin
        execute immediate ' create table dytab2 as select x from p_tab';
        end p_testdytab;
        begin
        p_testdytab('dytab');
        end;
        /why the procedure is not replacing parameter p_tab with the table name ? I get table does not exist error

    Hi,
    user650888 wrote:
    create table dytab(x number);
    create or replace procedure p_testdytab(p_tab in varchar2)
    is
    begin
    execute immediate ' create table dytab2 as select x from p_tab';
    end p_testdytab;
    begin
    p_testdytab('dytab');
    end;
    /why the procedure is not replacing parameter p_tab with the table name ? I get table does not exist errorAnything inside single-quotes is literally what is written. In this case, p_tab is inside single-quotes, so p_tab doesn't stand for some other value, such as 'dytab'; it literally means p_tab,
    If you really must use EXECUTE IMMEDIATE, then don't put the variable name inside the single-quotes.
    dynamic_txt := 'create table dytab2 as select x from ' || p_tab;
    dbms_output.put_line (dynamic_txt || ' = dynamic_txt');
    EXECUTE IMMEDIATE dynamic_txt;Whenever you write dynamic SQL, display it before executing it, at least during testing. That way, you can see exactly what is being executed, which is a huge help when it causes an error.
    As Tubby said, creating tables in PL/SQL is usually a very bad idea. Whatever you need to do, Oracle probably has a simpler, more robust way to do it. Say what your business requirements are, and someone will help you find a good way to do what you need.

  • /BIC/Y______ tables does not exist

    Ladies/Gents
    I am trying to delete master data from an InfoObject in RSD1. When I try to delete a row I get an error that the /BIC/Y______ table does not exist. I suppose SAP is looking for the time (Y-table)....but the check-box u201Ctexts are time-depu201D is NOT checked for this Info Object?
    How can I solve this problem? Thanks!

    Hello,
    Install this note 1110324, I had the same problem and after putting the problem to sap they created that note.
    Please assign points,
    Diogo.

  • Table does not exist - DbLink

    Hello, I have 2 instances, into production environment, instance A and instance B. Into instance A I have a dblink to instance B...
    The problem appear when I want to see the indexes of a table of instance B from instance A, to do this I press F4 into TOAD over:
    owner.table@dblink
    and when I click into tab "Indexes", Oracle said me: "The table does not exist", I review the grants, and this is ok, and the table exist in instance B.
    One explanation, I have the same environment into testing, and there work perfectly, I have the same dblinks, the same users and the same grants.
    Any suggestion to help me.

    You may want to contact the folks that make TOAD.
    My guess is that TOAD is querying the local USER_/ ALL_/ DBA_INDEXES table rather than the USER_/ ALL/ DBA_INDEXES table at the remote server. You could run a client-side SQL trace to see what SQL is being generated to see if the problem is that TOAD is generating the incorrect SQL or whether there is some problem with the database. But I'm not sure how productive that would be since it's not like you could fix the SQL TOAD is submitting. If there is an option in TOAD that changes the behavior here, it's certainly possible that someone here will know it. But TOAD support is probably more likely.
    Justin

  • Table does not exist for the sys user

    Hey Everyone,
    I am having a strange problem with 10G 10.2. I keep getting the table does not exist for all the tables when I am logged in as sys. It is strange because I can query the same tables being logged in as a regular user say 'scott'. I can't figure out what the problem is since it could not be privileges because the user is sys. Is there something I am missing here. Any advice would be welcome.
    Thanks,
    Sarang

    Yeah i am using the query....
    SELECT * FORM SCOTT.EMP
    It is a little wierd. I did a full database restore yesterday night. I dont know if that has anything to do with this. Will have to take a look at the logs.

  • Getting error 'Item 00000 does not exist' while creating a salse order

    Hi All,
    We are facing an issue, we get an error message saying 'Item 00000 does not exist' while creating a sales order for a particular order type, we do not get this problem with all the materials, only a few of them and the materials which give a problem are part of the supersession chain. The problem is not even coming for all the superseded materials.
    This problem is occuring with none of the other order types but just one. We have compared the configuration for the order types for which this error is not coming and the order type which is giving the problem, and its exactly the same.
    When creating the sales order through VA01 even though the error message comes, but on hitting the enter button the processing goes further. But when creating the sales order through the background program the processing stops the moment the error message comes and the Sales Order does not get created.
    Your valuable suggestions for helping us resolving this issue will be highly appreciated.
    Regards,
    Geeta

    HI Geeta
    As per your post "Problem is when you are executing VA01 in background sales orders are not generating due to error message".
    Apart from configuration check alternative is "Take ABAPer's help and change this error message type to warning/information message type in the system". With warning/information message type you could be able to create sales orders in background also.
    try and revert

  • Cannot retrieve table metadata - Table does not exist: ODP source 0WRKCNT_CATG_TEXT does not exist

    Hi, when i able to import the 0WRKCNT_CATG_TEXT extractor into source system i am getting the above bug Cannot retrieve table metadata - Table does not exist: ODP source <0WRKCNT_CATG_TEXT> does not exist, i have been checked in RSA5 T code to check the object is active or not, its active and its available in ROOSATTR table with enabled mode,but still its showing the error, can anyone help on this ..

    Hi Airings,
    'ORA-00942: table or view does not exist'
    According to the error message, it seems that the migrating table or view does not exist in the database, or SSMA does not have access to it. To troubleshoot the issue, please check the following things.
     1. Verify that if the spelling of the table or view name is correct.
     2. If the table or view exists but is in a different schema from the current schema where the SQL is executing (in other word, the table doesn’t own by you, but owned by other user), the ORA-00942 error will return too. Resolve this by
    explicitly reference the table or view by specifying the schema name (schema_name.table_name).
    3. SSMA queries some additional catalog tables that you may not have permission to, please make sure that you grant the account permission to
     read sys.mlog$. For more details, please review this similar thread:
    Bug in SSMA For Oracle 6.0 for non-dba Oracle user.
    Reference:
    ORA-00942 Table or View Does Not Exist Oracle Error
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Can't initialize iptables : table does not exist

    Error when running ettercap : iptables v1.4.18: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
                                              Perhaps iptables or your kernel needs to be upgraded.
    Different commands tried, all as ROOT:
    iptables -nvL
    iptables v1.4.18: can't initialize iptables table `filter': Table does not exist (do you need to insmod?)
    Perhaps iptables or your kernel needs to be upgraded.
    modprobe ip_tables
    modprobe ip_conntrack
    modprobe iptable-filter
    modprobe ipt_state
    iptables -nvL
    iptables v1.4.18: can't initialize iptables table `filter': Table does not exist (do you need to insmod?)
    Perhaps iptables or your kernel needs to be upgraded.
    zgrep IPTABLES /proc/config.gz
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP6_NF_IPTABLES=m
    ls /lib/modules/*/kernel/net/*/netfilter/
    /lib/modules/3.8.4-1-ARCH/kernel/net/bridge/netfilter/:
    ebt_802_3.ko.gz ebt_ip6.ko.gz ebt_pkttype.ko.gz ebtable_broute.ko.gz
    ebt_among.ko.gz ebt_limit.ko.gz ebt_redirect.ko.gz ebtable_filter.ko.gz
    ebt_arp.ko.gz ebt_log.ko.gz ebt_snat.ko.gz ebtable_nat.ko.gz
    ebt_arpreply.ko.gz ebt_mark.ko.gz ebt_stp.ko.gz ebtables.ko.gz
    ebt_dnat.ko.gz ebt_mark_m.ko.gz ebt_ulog.ko.gz
    ebt_ip.ko.gz ebt_nflog.ko.gz ebt_vlan.ko.gz
    /lib/modules/3.8.4-1-ARCH/kernel/net/ipv4/netfilter/:
    arp_tables.ko.gz ipt_ULOG.ko.gz nf_conntrack_ipv4.ko.gz
    arpt_mangle.ko.gz ipt_ah.ko.gz nf_defrag_ipv4.ko.gz
    arptable_filter.ko.gz ipt_rpfilter.ko.gz nf_nat_h323.ko.gz
    ip_tables.ko.gz iptable_filter.ko.gz nf_nat_ipv4.ko.gz
    ipt_CLUSTERIP.ko.gz iptable_mangle.ko.gz nf_nat_pptp.ko.gz
    ipt_ECN.ko.gz iptable_nat.ko.gz nf_nat_proto_gre.ko.gz
    ipt_MASQUERADE.ko.gz iptable_raw.ko.gz nf_nat_snmp_basic.ko.gz
    ipt_REJECT.ko.gz iptable_security.ko.gz
    /lib/modules/3.8.4-1-ARCH/kernel/net/ipv6/netfilter/:
    ip6_tables.ko.gz ip6t_eui64.ko.gz ip6t_rpfilter.ko.gz ip6table_raw.ko.gz
    ip6t_MASQUERADE.ko.gz ip6t_frag.ko.gz ip6t_rt.ko.gz ip6table_security.ko.gz
    ip6t_NPT.ko.gz ip6t_hbh.ko.gz ip6table_filter.ko.gz nf_conntrack_ipv6.ko.gz
    ip6t_REJECT.ko.gz ip6t_ipv6header.ko.gz ip6table_mangle.ko.gz nf_defrag_ipv6.ko.gz
    ip6t_ah.ko.gz ip6t_mh.ko.gz ip6table_nat.ko.gz nf_nat_ipv6.ko.gz
    /lib/modules/3.8.4-1-ck/kernel/net/bridge/netfilter/:
    ebt_802_3.ko.gz ebt_ip6.ko.gz ebt_pkttype.ko.gz ebtable_broute.ko.gz
    ebt_among.ko.gz ebt_limit.ko.gz ebt_redirect.ko.gz ebtable_filter.ko.gz
    ebt_arp.ko.gz ebt_log.ko.gz ebt_snat.ko.gz ebtable_nat.ko.gz
    ebt_arpreply.ko.gz ebt_mark.ko.gz ebt_stp.ko.gz ebtables.ko.gz
    ebt_dnat.ko.gz ebt_mark_m.ko.gz ebt_ulog.ko.gz
    ebt_ip.ko.gz ebt_nflog.ko.gz ebt_vlan.ko.gz
    /lib/modules/3.8.4-1-ck/kernel/net/ipv4/netfilter/:
    arp_tables.ko.gz ipt_ULOG.ko.gz nf_conntrack_ipv4.ko.gz
    arpt_mangle.ko.gz ipt_ah.ko.gz nf_defrag_ipv4.ko.gz
    arptable_filter.ko.gz ipt_rpfilter.ko.gz nf_nat_h323.ko.gz
    ip_tables.ko.gz iptable_filter.ko.gz nf_nat_ipv4.ko.gz
    ipt_CLUSTERIP.ko.gz iptable_mangle.ko.gz nf_nat_pptp.ko.gz
    ipt_ECN.ko.gz iptable_nat.ko.gz nf_nat_proto_gre.ko.gz
    I'm not sure but I think the problem might be here, I don't totally understand the command but my ettercap was working fine one month ago (when I still had the original Arch kernel) and it seems there is modules from 2 kernels here...
    Can anyone help me please? thanks for your patience

    @mich41 Oops I forgot to mention I'm running the ck kernel for duo core CPU
    lsmod
    Module Size Used by
    nfnetlink_log 8037 0
    nfnetlink 3489 1 nfnetlink_log
    fuse 69258 2
    iTCO_wdt 5447 0
    iTCO_vendor_support 1929 1 iTCO_wdt
    joydev 9727 0
    snd_hda_codec_analog 79922 1
    coretemp 6198 0
    arc4 2007 2
    kvm 392193 0
    btusb 14804 0
    bluetooth 301098 2 btusb
    pcmcia 46292 0
    microcode 14465 0
    psmouse 76175 0
    iwl3945 55148 0
    i2c_i801 11077 0
    pcspkr 1995 0
    serio_raw 5105 0
    evdev 10136 13
    battery 7098 0
    yenta_socket 32921 0
    lpc_ich 11601 0
    pcmcia_rsrc 9273 1 yenta_socket
    pcmcia_core 14173 3 pcmcia,pcmcia_rsrc,yenta_socket
    thinkpad_acpi 62433 0
    ac 2568 0
    iwlegacy 48804 1 iwl3945
    nvram 5906 1 thinkpad_acpi
    mac80211 467685 2 iwl3945,iwlegacy
    tpm_tis 10570 0
    tpm 14476 1 tpm_tis
    tpm_bios 9937 1 tpm
    i915 558838 3
    cfg80211 433688 3 iwl3945,iwlegacy,mac80211
    snd_hda_intel 34194 3
    rfkill 15996 4 cfg80211,thinkpad_acpi,bluetooth
    snd_hda_codec 102453 2 snd_hda_intel,snd_hda_codec_analog
    drm_kms_helper 35517 1 i915
    snd_hwdep 6428 1 snd_hda_codec
    snd_pcm 78018 3 snd_hda_codec,snd_hda_intel
    drm 225975 4 i915,drm_kms_helper
    acpi_cpufreq 10630 1
    mperf 1235 1 acpi_cpufreq
    i2c_algo_bit 5391 1 i915
    snd_page_alloc 7394 2 snd_pcm,snd_hda_intel
    snd_timer 18934 2 snd_pcm
    wmi 8379 0
    snd 60156 11 snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel,thinkpad_acpi,snd_hda_codec_analog
    e1000e 213584 0
    thermal 8577 0
    video 11363 1 i915
    i2c_core 23171 5 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit
    soundcore 5442 1 snd
    intel_agp 10872 1 i915
    intel_gtt 12566 3 i915,intel_agp
    processor 27431 3 acpi_cpufreq
    button 4701 1 i915
    ext4 478210 2
    crc16 1359 2 ext4,bluetooth
    jbd2 77917 1 ext4
    mbcache 6026 1 ext4
    sr_mod 14823 0
    cdrom 35520 1 sr_mod
    sd_mod 31258 4
    ata_generic 3338 0
    pata_acpi 3451 0
    ata_piix 24760 3
    libata 168683 3 pata_acpi,ata_generic,ata_piix
    scsi_mod 130797 3 libata,sd_mod,sr_mod
    firewire_ohci 32325 0
    firewire_core 53333 1 firewire_ohci
    crc_itu_t 1363 1 firewire_core
    ehci_pci 4120 0
    uhci_hcd 24972 0
    ehci_hcd 47391 1 ehci_pci
    usbcore 175029 4 btusb,uhci_hcd,ehci_hcd,ehci_pci
    usb_common 954 1 usbcore
    strace iptables -nvL
    execve("/usr/sbin/iptables", ["iptables", "-nvL"], [/* 27 vars */]) = 0
    brk(0) = 0x1a45000
    access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
    open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
    fstat(3, {st_mode=S_IFREG|0644, st_size=134403, ...}) = 0
    mmap(NULL, 134403, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8b44b09000
    close(3) = 0
    open("/usr/lib/libip4tc.so.0", O_RDONLY|O_CLOEXEC) = 3
    read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\32\0\0\0\0\0\0"..., 832) = 832
    fstat(3, {st_mode=S_IFREG|0755, st_size=27344, ...}) = 0
    mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8b44b08000
    mmap(NULL, 2122536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8b44702000
    mprotect(0x7f8b44708000, 2093056, PROT_NONE) = 0
    mmap(0x7f8b44907000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f8b44907000
    close(3) = 0
    open("/usr/lib/libip6tc.so.0", O_RDONLY|O_CLOEXEC) = 3
    read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\33\0\0\0\0\0\0"..., 832) = 832
    fstat(3, {st_mode=S_IFREG|0755, st_size=31504, ...}) = 0
    mmap(NULL, 2126696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8b444fa000
    mprotect(0x7f8b44500000, 2097152, PROT_NONE) = 0
    mmap(0x7f8b44700000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f8b44700000
    close(3) = 0
    open("/usr/lib/libxtables.so.10", O_RDONLY|O_CLOEXEC) = 3
    read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2204\0\0\0\0\0\0"..., 832) = 832
    fstat(3, {st_mode=S_IFREG|0755, st_size=47896, ...}) = 0
    mmap(NULL, 2144896, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8b442ee000
    mprotect(0x7f8b442f9000, 2093056, PROT_NONE) = 0
    mmap(0x7f8b444f8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f8b444f8000
    close(3) = 0
    open("/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
    read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \33\2\0\0\0\0\0"..., 832) = 832
    fstat(3, {st_mode=S_IFREG|0755, st_size=2035539, ...}) = 0
    mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8b44b07000
    mmap(NULL, 3853456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8b43f41000
    mprotect(0x7f8b440e5000, 2093056, PROT_NONE) = 0
    mmap(0x7f8b442e4000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a3000) = 0x7f8b442e4000
    mmap(0x7f8b442ea000, 15504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f8b442ea000
    close(3) = 0
    open("/usr/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
    read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\16\0\0\0\0\0\0"..., 832) = 832
    fstat(3, {st_mode=S_IFREG|0755, st_size=14648, ...}) = 0
    mmap(NULL, 2109720, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8b43d3d000
    mprotect(0x7f8b43d40000, 2093056, PROT_NONE) = 0
    mmap(0x7f8b43f3f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f8b43f3f000
    close(3) = 0
    mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8b44b06000
    mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8b44b05000
    mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8b44b04000
    arch_prctl(ARCH_SET_FS, 0x7f8b44b05700) = 0
    mprotect(0x7f8b442e4000, 16384, PROT_READ) = 0
    mprotect(0x7f8b43f3f000, 4096, PROT_READ) = 0
    mprotect(0x7f8b444f8000, 4096, PROT_READ) = 0
    mprotect(0x7f8b44700000, 4096, PROT_READ) = 0
    mprotect(0x7f8b44907000, 4096, PROT_READ) = 0
    mprotect(0x613000, 4096, PROT_READ) = 0
    mprotect(0x7f8b44b2a000, 4096, PROT_READ) = 0
    munmap(0x7f8b44b09000, 134403) = 0
    socket(PF_INET, SOCK_RAW, IPPROTO_RAW) = -1 EPERM (Operation not permitted)
    lstat("/proc/net/ip_tables_names", 0x7fff863e5cc0) = -1 ENOENT (No such file or directory)
    open("/proc/sys/kernel/modprobe", O_RDONLY) = 3
    fcntl(3, F_SETFD, FD_CLOEXEC) = 0
    brk(0) = 0x1a45000
    brk(0x1a66000) = 0x1a66000
    read(3, "/sbin/modprobe\n", 1024) = 15
    close(3) = 0
    vfork() = 12371
    wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 12371
    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=12371, si_status=1, si_utime=0, si_stime=0} ---
    write(2, "iptables v1.4.18: ", 18iptables v1.4.18: ) = 18
    write(2, "can't initialize iptables table "..., 87can't initialize iptables table `filter': Table does not exist (do you need to insmod?)) = 87
    write(2, "\n", 1
    ) = 1
    write(2, "Perhaps iptables or your kernel "..., 54Perhaps iptables or your kernel needs to be upgraded.
    ) = 54
    exit_group(3) = ?
    +++ exited with 3 +++
    I don't have a ip_tables_names file in /proc/net
    thanks for the help guys

  • User gets "This network connection does not exist" when she tries to log on to Terminal Server (2008 R2)

    User gets "This network connection does not exist" when she tryes to log on to Terminal Server (2008 R2)
    I got more than 100 users. Shes the only one getting is. We tried four computers (All Windows 7 Pro)
    Nothing useful in event viewer to mention.

    Hi,
    Thank you for posting in Windows Server Forum.
    Does that user able to login previously?
    From your comment, it seems that there is some permission issue with that user. As you have checked that user with different system also. Please check that user is added under “Remote Desktop User” local group and also allowed “Allow log on through
    Remote Desktop service” permission under group policy. Also please check that when user tries to login it uses “Domainname\Username” format.
    In addition for a try, also check by disabling firewall on one particular system.
    To add users and groups to the Remote Desktop Users group by using Local Users and Groups snap-in:
    1.  Click Start > Administrative Tools, Open Computer Management.
    2.  In the console tree, click the Local Users and Groups node.
    3.  In the details pane, double-click the Groups folder.
    4.  Double-click Remote Desktop Users, and then click
    Add.
    5.  In the Select Users dialog box, click Locations to specify the search location.
    6.  Click Object Types to specify the types of objects you want to search for.
    7.  Type the name you want to add in the Enter the object names to select (examples) box. 
    8.  Click Check Names.
    When the name is located, click OK.
    More information:
    Remote Desktop disconnected or can’t connect to remote computer or to Remote Desktop server (Terminal Server) that is running Windows Server 2008 R2
    http://support.microsoft.com/kb/2477176/en-us
    Hope it helps!
    Thanks,
    Dharmesh

Maybe you are looking for