TNS error - basics question

Oracle 9i
=======
I have created a db_link pointing to another database. However, I am getting a TNS error when I try to connect. I have made sure that the TNS entry that I have put on my machine is correct/
If I create a db_link pointing to another database, do I have to setup a TNSNames entry on my machine? Or, the TNSNames entry should be on the host machine where the database is residing?

Hi,
>>I am getting a TNS error when I try to connect
Which ORA- error are you getting?
>>Or, the TNSNames entry should be on the host machine where the database is residing?
As comascio said before, you need to create a TNS service name that points to the target database and use it in your database link object:
create database link <db_link_name> connect to <user> identified by <pass>  using '<service_name>';On the other hand, you can also create a database link without using a TNS service name, but directly using the connection descriptor on it:
create database link <db_link_name>
        connect to <user> identified by <password>
        using '(description = (address = (protocol = tcp) (host = <host_name>)(port = 1521))
               (connect_data = (sid = <database_sid>)))';Cheers
Legatti

Similar Messages

  • Basic question regarding SSIS 2010 Package where source is Microsoft Excel 97-2005 and there is no Microsoft office or Excel driver installed in Production

    Hi all,
    I got one basic question regarding SSIS 2010 Package where source is Microsoft Excel 97-2005. I wanted to know How this package works in production where there is no Microsoft office or Excel driver installed. To check that there is excel driver installed
    or not, I followed steps: Start-->Administrative Tools--> Data Sources(ODBC)-->Drivers and I found only 2 drivers one is SQL Server and another one is SQL Server Native Client 11.0.
    Windows edition is Windows Server 2008 R2 Enterprise, Service Pack-1 and System type is 64-bit Operating System.
    We are running this package from SQL Server Agent and using 32-bit (\\Machine_Name\d$\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\DTExec.exe /FILE "\\Machine_Name\d$\ Folder_Name\EtL.dtsx" /CONFIGFILE "\\Machine_Name\d$\Folder_Name\Config.dtsConfig"
    /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING E) to run this package. I opened the package and tried to find out what connection we have used and found that we have used "Excel Connection Manager" and ConnectionString=Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=F:\Fares.xls;Extended Properties="EXCEL 8.0;HDR=YES"; and source is ‘Excel Source’
    I discussed with my DBA and He said that SSIS is having inbuilt Excel driver but I am not convinced.
    Could anyone please clear my confusion/doubt?
    I have gone through various links but my doubt is still not clear.
    Quick Reference:
    SSIS in 32- and 64-bits
    http://toddmcdermid.blogspot.com.au/2009/10/quick-reference-ssis-in-32-and-64-bits.html
    Why do I get "product level is insufficient..." error when I run my SSIS package?
    http://blogs.msdn.com/b/michen/archive/2006/11/11/ssis-product-level-is-insufficient.aspx
    How to run SSIS Packages using 32-bit drivers on 64-bit machine
    http://help.pragmaticworks.com/dtsxchange/scr/FAQ%20-%20How%20to%20run%20SSIS%20Packages%20using%2032bit%20drivers%20on%2064bit%20machine.htm
    Troubleshooting OLE DB Provider Microsoft.ACE.OLEDB.12.0 is not registered Error when importing data from an Excel 2007 file to SQL Server 2008
    http://www.mytechmantra.com/LearnSQLServer/Troubleshoot_OLE_DB_Provider_Error_P1.html
    How Can I Get a List of the ODBC Drivers that are Installed on a Computer?
    http://blogs.technet.com/b/heyscriptingguy/archive/2005/07/07/how-can-i-get-a-list-of-the-odbc-drivers-that-are-installed-on-a-computer.aspx
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi S Kumar Dubey,
    In SSIS, the Excel Source and Excel Destination natively use the Microsoft Jet 4.0 OLE DB Provider which is installed by SQL Server. The Microsoft Jet 4.0 OLE DB Provider deals with .xls files created by Excel 97-2003. To deal with .xlsx files created by
    Excel 2007, we need the Microsoft ACE OLEDB Provider. SQL Server doesn’t install the Microsoft ACE OLEDB Provider, to get it we can install the
    2007 Office System Driver: Data Connectivity Components or
    Microsoft Access Database Engine 2010 Redistributable or Microsoft Office suit.
    The drivers listed in the ODBC Data Source Administrator are ODBC drivers not OLEDB drivers, therefore, the Excel Source/Destination in SSIS won’t use the ODBC driver for Excel listed in it by default. On a 64-bit Windows platform, there are two versions
    of ODBC Data Source Administrator. The 64-bit ODBC Data Source Administrator is C:\Windows\System32\odbcad32.exe, while the 32-bit one is C:\Windows\SysWOW64\odbcad32.exe. The original 32-bit and 64-bit ODBC drivers are installed by the Windows operating system.
    By default, there are multiple 32-bit ODBC drivers and fewer 64-bit ODBC drivers installed on a 64-bit platform. To get more ODBC drivers, we can install the 2007 Office System Driver: Data Connectivity Components or Microsoft Access Database Engine 2010 Redistributable.
    Besides, please note that 2007 Office System Driver: Data Connectivity Components only install 32-bit ODBC and OLEDB drivers because it only has 32-bit version, but the Microsoft Access Database Engine 2010 Redistributable has both 32- bit version and 64-bit
    version.
    If you have any questions, please feel free to ask.
    Regards,
    Mike Yin
    TechNet Community Support

  • 2 Basic questions

    Hai guys,
    i am beginner in Webdynpro.i have
    2 basic questions in abap webdynpro.
    1)after a view is designed,while generating the application,we usualy get  a web applicaiton.and use the url to access the developed screen.
    can we,alternatively,generate a ABAP transaction instead?(like instead of URL ,we shud get a tcode,like normal abap dynpro)
    in other way,i want to develop abap dynpro using webdynpro tools.
    2)can we take a webpage,and covert in into meta data and thus,use it to create the view?(the reverse of what we do)

    Hello shravan,
    Regarding your first question: YES, you can attach a normal ABAP transaction to a WDA application.
    Check out this report code I wrote, you just need to change the k_wdappl_name constant value to your application name:
    REPORT y_abindi_001.
    CONSTANTS: k_browser      TYPE string VALUE 'IEXPLORE.EXE',
               k_mandt_prefix TYPE string VALUE '?sap-client=',
               k_wdappl_name  TYPE string VALUE 'YTEST_WD2'.   "Nombre de la aplicación
    DATA: g_mandt_param TYPE string,
          g_url         TYPE string.
    START-OF-SELECTION.
      CONCATENATE
        k_mandt_prefix
        sy-mandt
      INTO g_mandt_param.
      CALL METHOD cl_wd_utilities=>construct_wd_url
        EXPORTING
          application_name = k_wdappl_name
        IMPORTING
          out_absolute_url = g_url.
      CONCATENATE
        g_url
        g_mandt_param
      INTO g_url.
      CALL METHOD cl_gui_frontend_services=>execute
        EXPORTING
          application            = k_browser
          parameter              = g_url
          maximized              = 'X'
        EXCEPTIONS
          cntl_error             = 1
          error_no_gui           = 2
          bad_parameter          = 3
          file_not_found         = 4
          path_not_found         = 5
          file_extension_unknown = 6
          error_execute_failed   = 7
          synchronous_failed     = 8
          not_supported_by_gui   = 9
          OTHERS                 = 10.
      IF sy-subrc <> 0.
        WRITE:/,'Error al ejecutar Browser (',k_browser,')'.
      ENDIF.
    Then attach a report transaction to this program, that's it.
    Regards.

  • Basic Questions About CSM

    Hi,
    We have a CSM installed in a 6513 chassis working as our load balancer for web servers. I have a few basic questions:
    1. The current default configuration of probes on our switch indicates 2 minutes interval, 3 consecutive errors before marking real server failure and 5 minutes between probes of failed server. This setting results in 10-12 minute switch over delay in case one server fails.
    In one of the Cisco papers I read that the default for these parameters in CSM is 8 seconds, 2 retries and 5 seconds, respectively.
    My question is what is the default settings for probe parameters and is there any recommendation for a optimal settings? (I am going to use 1min, 3, 15seconds resulting 0.5 to 1.5 minutes delay and want to make sure there is no concerns with that)
    2. Does the sticky timeout affect the switch over delay time? My understanding is that sticky timeour applies to the normal condition when all legs are up and in case of a failure, the traffic will switch over regardless of an existing active sticky session. Is this correct?
    3. What is the exact definition of a "connection" in a load balancer? Is there any way to estimate or predict the number of connections for a specific traffic load (e.g. number of connection per user)?
    Thanks for your response,
    Ali

    There is an ASK THE EXPERT session currently, if you have more questions, please join us there.
    Regarding your current questions :
    1/ The default for an icmp probe is 120sec, 3 retries and 300sec for failed.
    You can use whatever values you think is necessary for your environment.
    However, you need to remember that a probe generates traffic and each probe require process CPU time to send and receive.
    With a lot of servers you probably want to avoid low frequency values.
    I think your suggested value of 1 minute is ok.
    2/ the sitcky timeout does not affect failover.
    However, you should be aware that if a server goes dowm, the CSM will send NEW connections to the other servers. But active connection will stay with this server even if down. To change this behavior use the 'failaction purge' command.
    3/ A connection is a flow. It is defined by a SRC IP, DST IP, protocol, SRC PORT, DST PORT.
    Within a connection you can send 2 bytes or 2 Gig.
    So, it is difficult to link the 2 values.
    ie: when you load a webpage, if you are using http 1.0 you open 1 connection for every object (text, gif, banner, ...) but with http 1.1 you can download all the same objects in a single connection.
    Hope this helps.
    Gilles.

  • Basic questions about PCI-DIO-96

    Hi
    I am trying to write code to control a digital I/O board for the first time.
    I have a legacy board, PCI-DIO-96, as the code implies, it is a PCI digital I/O boiard with 96 I/O channels
    My first question is, what would be the drivers and development platform I should download for this board?
    I am planning to write my code in C++.
    The second question is, I am trying to write a very simple application to drive 96 solenoid valves through the board.
    Basically I need to use the board in output mode only.  No data gathering here.
    The application basically needs to open and close these valves  for a specified number of milliseconds.  So basically,
    I would be sending either 0 or 1 through the output channels, that's
    it.    If I send a "1" signal through the board, does
    that
    "toggle" the channel, meaning the channel will keep sending "1" through the ouput until I send another signal, or do I need
    to send the "1" signal every few milliseconds to simulate a constant "1" signal?
    Does anyone have code samples or know where I can find code samples illustrating this simple case?
    It would be greatly appreciated.
    I realize these are very basic questions, but I am new to hardware programming and I am on a deadline.
    Thank  you
    Kiko

    Hi Kiko,
    Great to see that you are asking questions here first, you definitely came to the right place.
    Since you are starting with a clean slate as far as knowing how to use this board we can start off on the right foot. 
    Download the latest version of the drivers for your board.  You can find the drivers here: NI-DAQmx Version 7.5 for Windows 2000/NT/XP
    After you have downloaded the drivers, power down the computer,
    insert your board, and power it back up.  The board should now be
    recognized and the drivers will install similarly to any new hardware
    would in Windows.
    Now it's just a matter of learning how to use the commands that you need to get started.
    I would recommend starting in the example files.  You can find
    some excellent examples that should do almost exactly what you are
    trying to do by looking in this path:
    C:\Program Files\National Instruments\NI-DAQ\Examples\DAQmx ANSI C\Digital\Generate Values
    Look for the example that best represents what it is you are trying to
    do.  You will notice that all of the examples have a general flow
    to how they call the board.
    Create a Task and Define what that task is meant to do
    Set the configuration for how exactly that task will operate
    Read/Write various values until a condition is met
    Close the Task
    Error Check all operations to assure that everything is working properly
    It's really not all that difficult and should you run into any problems or errors don't forget to search ni.com or the forums to see if others have run into similar issues to what you are facing.
    Regarding how the states for digital lines work.  The short answer
    is that if you set a digital line to high it will stay high until you
    set it back to low and vice versa.  For more details on everything
    digital check out our Digital Fundamentals page.
    Best of luck!
    Otis
    Training and Certification
    Product Support Engineer
    National Instruments

  • Basic questions of structure Alchmy inside the AVM ans corePlayer ? Help!

    Hello community:)
    Flash Player 10 has been amended in order to run the new code from the compilation Alchemy! Is this correct?
    The new ABC Alchemy is for new features such as memory pointer, asynchronous functions? is that correct? and what else?
    This amendment consists of a small AVM separated from the Tamarin ? where everything is in Tamarin?
    The memory allocated to code from Alchemy is separated from the memory area allocated to the AVM and PlayerCore? it is like that?
    The CorePlayer flashRuntime and had to be changed?
    The ABC from Alchemy is intended only as to the AVM? or also to CorePlayer?
    Alchemy can access the BIOS? especially for 33h the mouse? if not, is it possible to control the mouse in one way or another with Alchemy?
    Immagine it would create a code C to produce sound from a bytesArray to replaceSampleData AS3 class, it's possible? If not, why? a restriction of the sandbox?
    Can be added directly to the assembler code using Alchemy? or it's prohibited because of the respect of cross platefrom?
    Thank you for maximum responses! although one can easily imagine some answers, I have confirmation:)
    Too many people claim things on forums, affirmative behave as if it was the system programmers themselves FlashPlayer! Outside, people sometimes give wrong answers! Two days ago, I had a guy who claimed that the AVM does not compile ABC! The ABC was executed directly .  It's sad and a shame to read such things. He obviously did not read and do not know the JIT
    This post is aimed at people on what they say and who were able to verify the information. Alchemy or programmers themselves.
    Thank you all!

    In order to understand things and not waste our time trying to code without knowing ifthey are not working because of am or even if it is because it is not impossible or not the player, I'm posted this on the forum Player. But my post is not answered .. Adobe programmers never come on this forum? Nobodyknows exactly how it works?
    Hello everyone
    I have some basic questions about the Flash player and  AVM2..
    I made this little flow chart for Player 9 and above >
    Can  anyone tell me if it is consistent and fair to me or to report a possible error?
    AVM2 the only accessing the CPU and Ram? and in no event in the device or OS API, right?
    The AVM2 in our current players is always a Tamarin?
    The next step is to replace the JIT by the nanoJIT spiderMonckey?
    The byteCode from Alchemy is well executed in the AVM and not elsewhere?
    The memory area codes assigned to Alchemy is the same as that of the AVM or is it different andseparate?
    Thank  you for your answers.
    Gordially,  Alain.

  • Purchasing Group Basic Question

    Gurus,
    I have a some basic question in EBP................
    1. Creating PO is Purchasing Group is mantatory.
    2. Classic Scenario - If i create Shopping Cart for local Purchasing group. PO can create without error in backend(R/3).
    3. Extended Classic Scenario - If i create Shopping Cart for local Purchasing group. PO Copy can create without error in backend(R/3).
    Thanks

    Hello,
    R/3 needs always a purchasing group to create the PO.
    1. Creating PO is Purchasing Group is mantatory.
    Yes
    2. Classic Scenario - If i create Shopping Cart for local Purchasing group. PO can create without error in backend(R/3).
    I think that you need the purchasing group.
    Check crmd_orderadm_h table and BBP_PD transaction
    3. Extended Classic Scenario - If i create Shopping Cart for local Purchasing group. PO Copy can create without error in backend(R/3).
    I have not experience in Extended Classic Scenario. I know that PO can not be canges in R/3.
    Keep in mind that for R/3 the purchasing group is a mandatory field.
    Hope it will help!
    Cheers,
    Marta

  • CIF queue type basic question

    Hi,
    I have one basic question regarding CIF.
    We are assigning queue type to scm system at two places.
    1. In SCM system with tcode-/SAPAPO/C2(Assign logical system to buisness system group)
    2. In Ecc system with tcode-CFC1(Define target system operation mode and queue type)
    Is it required both above setting should have same value?
    If it could have different value what is impact?
    Why it is required to assign queue type for SCM system at both places and not for ecc?
    Regards,
    Santosh

    Hi Santosh,
    let me try to explain cutomizing setting:
    /sapapo/c2 (APO): This TX  is more comprehensive than CFC1 on ECC site (as you know).
    Firstly you have to define the queuetype of the connected ECC system (or the connected ECC systems). Therefore you have to use the Log. System names of the ECC system and the settings are simmilar to CFC1 but it is used for SCM->ECC transfer.
    As you know, you have to define also an entry for your SCM system which looks like the entry in CFC1 and therefore it looks superfluous. The reason is, that the error handling can be defined here. You can activate the "postprocessing" for your SCM system and / or your ECC system. The CIF framework checks this entry and put faulty queues into postprocessing (TX /sapapo/cfp) or as SYSFAIL into SMQ1/SMQ2. Therefore it is important that you choose the same queue type as you did it in CFC1 for your SCM system.
    CFC1 (ECC): Here you have to assign the Log. System name of your SCM which is connected to your ECC and you have to define the Queue type (I - INBOUND, INITIAL - OUTBOUND). The setting is used for the transfer from ECC->SCM. It is possible (not recommended!!!
    Stefan

  • Error: Basic type 'WVINVE03' is unknown

    hi sdn frnds
    I am doing File to Idoc scenario in that i am getting the error as
    Error: Basic type 'WVINVE03' is unknown
    can any one know about this and how to solve this problem
    thanks in advance
    Vasu

    Hi,
    where do you try to find this idoc?
    this IDOC should only be in the R3
    (not in the XI)
    if you want it in the XI you need
    to download it's sigmature in <b>integration repository</b>
    just like described here:
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/a48f3c685bc358e10000000a11405a/content.htm
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • TNS error adapter

    Hi,
    I installeed 11.2g and when I try login I have got error TNS error adapter. My file
    tnsname
    # tnsnames.ora Network Configuration File: F:\app\Mariano\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    listener
    # listener.ora Network Configuration File: F:\app\Mariano\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = F:\app\Mariano\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:F:\app\Mariano\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ADR_BASE_LISTENER = F:\app\Mariano
    sqlnet
    # sqlnet.ora Network Configuration File: F:\app\Mariano\product\11.2.0\dbhome_1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)

    Hi,
    This Forum is for Semantic Technologies, you may want to post your question to the forum
    Forum Home » Database » Database - General
    You can verify this:
    1. Make sure the listener is up and running
    lsnrctl stat
    2. Make sure the database is up and running
    sqlplus / as sysdba
    startup
    If that does not answer please post your question in Forum Home » Database » Database - General
    Regards!
    Jorge

  • Basic question about storage and safety in iMovie '11

    A very basic question about storage and safety:
    I want to keep a backup of my raw footage on my external hard drive prior to begin working on the movie in iMovie. I want to do this:
    1. Upload the digital files from my camcorder to my Desktop *(as opposed to iMovie)*
    2. Duplicate that footage/clips.
    3. Put the duplicate clips/footage into a folder labeled with the name of that footage (like "Fun At the Dentist" or "Jimmy Learns How to Yodel").
    4. Drag the folder with the footage/clips into my external hard drive into a pre-existing folder titled "Backups/duplicates of all of my raw footage/clips." This big granddaddy folder will house all of the child folders of different movies.
    5 Then, open up iMovie '11 and import the raw footage/clips from my Desktop rather than from my camcorder.
    6. Then I want to make a duplicate of my finished movie and put it in my external hard drive in a "Finished Movies" folder.
    I know that the original raw unedited footage will always be in iMovies '11 but I want the original to also exist immediately accessible in my external hard drive.
    QUESTION:
    Is this viable? Is it wise? (I know it goes an extra unnecessary step, but aside from that.)
    *Do you have any precautionary advice?* Should I do something in my iMovies '11 preferences? What?
    In earlier years with iMovie '04 or '06 (cannot recall) I made many novice errors and ended up losing audio to my finished movie. I also lost footage.
    This time around with iMovie '11 I don't to make such novice, ignorant errors.
    Thanks so much for any comments to this question.
    -L

    Yes I'm sure it will work great for you.
    The iFrame format is something Apple has come up with. The reason for its existence is unknown to me so I can only speculate. But it seems to me that Apple "invented" this format in order to have devices such as Ipod/Ipad/Iphone/Ixxx create clips that are editable on consumer hardware such as already mentioned devices but also standard Mac computers, without the need for format conversion.
    iMovie converts most input formats during import, which takes a lot of time, and this need for conversion often comes as a surprise to most people new to home video editing.
    iFrame has a resolution of 960x540 which is long way from the common standards of 1920x1080 and 1280x720. If your end target is YouTube however, this may not be too bad though. However if you intend to go with YouTube HD, you may find iFrame footage to look wrong since they are effectively upscaled to a higher resolution.
    Technically iFrame uses the H.264 algorithm, a smaller frame size (960x540) and a rather low compression scheme. This will result in large files, but the plus side is that the files are ready for editing without the need for any conversion and iMovie will natively edit the files.

  • TNS errors - 8.1.7 Personal edition

    Thanks to whomever replies,
    I am brand new to Oracle (I am a student). Everything on the 8.1.7 seems fine when I installed it. The thing is when I attempt to log into SQL+ using scott/tiger or whatever, with or without a host I get tns errors 12560 - protocol adapter error, 12541 - no listener, and 12154 - could not resolve service name. I am using my standalone computer, and I'm not connected to any database. Oh i've read other people's forum questions and replies and have experimented by changing configurations but still no luck. Most students in my class are experiencing the same problems I have--professor really of no help. Anyones help will be deeply appreciated.

    while connecting to an oracle database using any tool you have to specify a service name (net service name) to the client tool.
    Service name is a combination of
    Oracle SID :- each database will have a SID. In privious version its a 4 letter word like ORCL. In latest versions you can have the SID upto 8 letters. This SID is given while creating the database. In most default installations the default sid is ORCL.
    Protocol information:-The protocol used to connect to the server. If you want to use TCP/IP protocol you should also provide the port number.(default 1521).
    Machine name:- In which the server is installed. you can give ipaddress or machine name. if you want to know the ipaddress of your server you can use "ipconfig" in the os prompt. (in windows)
    To create the service name you can use "net8 assistant" or Net8 configuration assistant. Then give the service name created as the host string while connecting to the database.

  • Process Flow - basic question

    Hi
    I have a very basic question about Process Flows, that will help me decide to go for process flows or custom scheduling.
    I create a process flow with complex dependencies, say MapA, mapB mapC start parallely and map1 starts as soon as mapA and mapB finish, and map2 starts when all mapA, mapB and mapC finish. When both map1 and map2 finish the pflow ends. The question is
    1> Is it correct to use AND activity to define combined dependencies?
    2> What happens when any two mappings are running parallely and one returns in failure? Will the whole process flow finish immediately? or, the other ones will keep running? Am asking this because I would be sending the failure transition to End Error, and as per my understanding, as soon as one pflow finishes with error, the transition will take the flow to End Error and other running will be aborted in between itself.
    Please correct me if am wrong
    Thanks in advance
    Goga

    Hi,
    I think the others will remain running and will complete (e.g. they will not be aborted). However the logical AND will stop the process flow (it is stopped in a result of error). Since one transition never got to the AND the others will not continue.
    You may want to use some other activities to verify what is going on. You may have all mappings always go to AND, then based on what the error is (you can get that from the runtime) decide whether to abort, or to just ignore the error and run the others.
    JP

  • Basic question

    Hello, i have a basic question. if i have defined 2 fields in a cube or a dso:
    Name Quantity
    and from the external flat file i get some characters for my quantity field. would my load fail?  for standard dso and for write optimized?
    NOTE: quantity field is a keyfigure defined as numeric.
    and the load coming in has "VIKPATEL" for Quantity field and not numbers.
    thanks

    Hi Vik,
    Yes, the load will fail.
    May be you coud first load this data into BW (into PSA) and set both fields as characters fields. Then you can create DSO, do transformation from this PSA to the DSO, and put your logic as to what do you want to do with those Quantity that is not number (e.g. convert to 0, or 'Not assgined', etc).
    You can use transfer rule, or a clean up ABAP code in the start routine.
    Hope this helps.

  • Pl/sql vs sql basic question

    Hi,
    I have a very very basic question, so excuse me for that... I just would like to know the difference ( and the difference in usage) between sql and pl/sql?
    thank you
    Yann

    SQL - the structured query language - is the language available for extracting data from the database. It is a 4GL, and each command stands alone and performs a database action.
    PL/SQL is the 3GL primarily intended to control the flow of a series of SQL commands. PL/SQL does not, in any way, interact with the data in the database. It does, however, allow SQL statements to be called, or even created, in a specific order.
    SQL is capable of a LOT more than people usually realize. Unfortunate, as people often create PL/SQL programs when single SQL statements will do the job. I encourage reading the O'Reilly 'Mastering Oracle SQL' book ... only after fiunishing that book do I recommend any of Feuerstein's excellent PL/SQL books.

Maybe you are looking for

  • How to set image size in d2k6i forms

    I have upload an image in forms6i, in oracle apps this code runs smoothly when images size is croped using microsoft picture manager. and those images are not croped or size more than 50kb it shows frm-47100 can not read image file \\........... is t

  • Forms/Reports Chinese character support

    We have an existing db (10.2.0.4.0) and forms (11.1.2.1.0) application, that we're trying to extend to support Chinese characters. We're looking to add some unicode (nvarchar2) columns to existing tables, rather than converting the whole db charset.

  • Error in invoking target 'ntcontab.o'

    Hi, I'm installing oracle 11gR1 on AIX 6.1 server, and I meet this problem on linking oracle step, Please help me to slove it,thanks INFO: Start output from spawned process: INFO: ---------------------------------- INFO: INFO:   rm -f ntcontab.* INFO

  • Online Interactive Form

    Hi All , I m doing the online interactive form project using Adobe Reader . In My NWDS I have A 6.0 version . So If Anyone can tell  me how to upgrade it to 7.0 or above .

  • FLV and HLS/iOS

    Hi All, I have a FMS farm that houses several TB of FLV's...and serves as the back end to a video sharing site in my organization.  I'm looking to upgrade to 4.5 for HLS/iOS support.  I'm getting conflicting information about FLV support for HLS.  Do