What are dotNet store procedurs are what are its benefits

I am new to ODP.NET, I wanted to know what are .NET Stored Procedurs and what are its benefits?

.NET stored procedures allow you to call .NET code from the database.
You can get more info from http://www.oracle.com/technetwork/topics/dotnet/index-085095.html
Hope it helps,
Greg

Similar Messages

  • Please explain what are the various procedures to find user-eixts

    Hi,
    Please explain what are the various procedures to find user-eixts ?
    Ramana

    Hi,
    1. By executing this Program.
    *& Report  ZFIND_EXIT
    REPORT  ZFIND_EXIT.
    *report zbadi_find .
    tables : tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    sxs_attrt ,
    tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode,
    p_pgmna like tstc-pgmna .
    data wa_tadir type tadir.
    start-of-selection.
    if not p_tcode is initial.
    select single * from tstc where tcode eq p_tcode.
    elseif not p_pgmna is initial.
    tstc-pgmna = p_pgmna.
    endif.
    if sy-subrc eq 0.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir
    where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir
    where pname = tstc-pgmna.
    select single * from enlfdir
    where funcname = tfdir-funcname.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name eq enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    select * from tadir into table jtab
    where pgmid = 'R3TR'
    and object in ('SMOD', 'SXSD')
    and devclass = v_devclass.
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(105) sy-uline.
    format color col_heading intensified on.
    Sorting the internal Table
    sort jtab by object.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type c.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    loop at jtab into wa_tadir.
    at first.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Enhancement/ Business Add-in',
    41 sy-vline ,
    42 'Description',
    105 sy-vline.
    write:/(105) sy-uline.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    format color col_group intensified on.
    write:/1 sy-vline,
    2 wf_object2,
    105 sy-vline.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    select single modtext into wf_txt
    from modsapt
    where sprsl = sy-langu
    and name = wa_tadir-obj_name.
    format color col_normal intensified off.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single text into wf_txt
    from sxs_attrt
    where sprsl = sy-langu
    and exit_name = wa_tadir-obj_name.
    format color col_normal intensified on.
    endcase.
    write:/1 sy-vline,
    2 wa_tadir-obj_name hotspot on,
    41 sy-vline ,
    42 wf_txt,
    105 sy-vline.
    at end of object.
    write : /(105) sy-uline.
    endat.
    endloop.
    write:/(105) sy-uline.
    skip.
    format color col_total intensified on.
    write:/ 'No.of Exits:' , wf_smod.
    write:/ 'No.of BADis:' , wf_badi.
    else.
    format color col_negative intensified on.
    write:/(105) 'No userexits or BADis exist'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(105) 'Transaction does not exist'.
    endif.
    at line-selection.
    data : wf_object type tadir-object.
    clear wf_object.
    get cursor field field1.
    check field1(8) eq 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    when 'SXSD'.
    set parameter id 'EXN' field sy-lisel+1(20).
    call transaction 'SE18' and skip first screen.
    endcase.
    2. . Go to the screen>System>Status-->Program (Double
    click this program. It will take you to the program.
    2. Now, Goto-->Object Directory Entry.
    3. Make a note the package name.
    4. Now run the transactions SMOD, press F4 and enter the
    above noted package, press enter.
    5. It will display list of Exits.
    6. Now go back to the initial screen SMOD.
    7. Specify the exit name here and select the radio button
    Components.
    8. It will display four group boxes one for FM, second
    for Fcodes, thrid for Screen areas and last for
    includes.
    9. Goto transaction CMOD, create a new project, and
    click the button "Enhancement assignments" and
    specify your enhancements that you got in SMOD.
    10. Now bouble clikc the enhancement, it will take you to editor with some includes starting with Z, double clikc the include you want to edit and proceed.
    3. 1. in se11, goto table MODSAP
    View table contents
    in Type field, enter
    'E' (for user exit / Function Exit)
    OR 'S' (for screen exit)
    4. Calling Customer- fucntion in Main Program
    Thanks,
    Anitha

  • How to install owa in iphone 4s? what are the detailed procedures to proceed?

    How to install owa in iphone 4s? what are the detailed procedures to proceed? Can you help on this? Thanks

    You don't need to install OWA on your iPhone. It needs to be enabled by your email provider - presumably your employer? They should also be able to provide you with detailed instructions on how to access your email remotely using your iPhone.

  • What is Month End Procedure using in Business Area?

    Hi All,
    What is Month End Procedure using In Business Area?
    Thank you
    Ramakanth

    Hi,
    As my experience business area month end to check the profitability each b. areawise and all the month end adjustment entries should be enter business area wise. We can also check the clearning for one business area to anyother b.area.
    Regards,
    Pankaj

  • HT203163 I cannot gift or purchase CARMEL and CARMEL VALLEY travel app at the iTunes store. The options are "grayed out" on my iMac. What's the problem?

    I cannot gift or purchase CARMEL and CARMEL VALLEY travel app at the iTunes store. The options are "grayed out" on my iMac. What's the problem?

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • The App store, FaceTime, iTunes, Safari and Camera are all missing from my iPad.  Restrictions are not enabled and when they are those applications are grayed out.  I have tried everything but restoring my iPad to its orginal condition. What do I do?

    The App store, FaceTime, iTunes, Safari and Camera are all missing from my iPad.  Restrictions are not enabled and when they are those applications are grayed out.  I have tried everything but restoring my iPad to its orginal condition. What do I do?

    todaywillbegreat wrote:
    '''  I have tried everything but restoring my iPad to its orginal condition. What do I do?
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues...
    Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • I recently downloaded iOS 6. After downloading, all my applications are crashing. Including Safari, App Store, etc. What to do ?

    I recently downloaded iOS 6. After downloading, all my applications are crashing. Including Safari, App Store, etc. What to do ?

    Sounds like a corrupted file in system software. Boot into Recovery Mode and run Disk Utility. Most likely it will find a problem and be able to correct it. Read about Recovery mode here:
    OS X: About OS X Recovery - Apple Support
    You may need to reinstall OS X as part of this. I hope you have a Time Machine backup?
    Good luck!

  • I hav purchased whats app but when i formated my laptop it is asking me to pay for whats app in app store n further purchases are not not possible

    i hav purchased whats app but when i formated my laptop it is asking me to pay for whats app in app store n further purchases are not not possible from my id how can i over *** this error

    You may want to improve your backup strategy for your computer...
    Login to iTunes, check your purchase history, see if there's the transaction for whatsapp.
    Otherwise, contact iTunes support to get the issue straightened out.
    http://www.apple.com/support/itunes/

  • II bought an album on itunes store, but my songs are incomplete. what should i do?

    I bought an album on itunes store, but my songs are incomplete.
    in the middle of the music, the reproduction is silent or jump to the next track.

    If you will look through oother threads, you will find that it does indeed work.
    You seem to be having an individual problem, if it is not working.
    You can try contacting itunes support:
    http://www.apple.com/support/contact/

  • I want to create stored procedure which will give output rows from "values that are passed as one parameter (comma seperated) to store procedure".

    Hello,
    I want to create stored procedure which will give output rows from "values that are passed as one parameter (comma seperated) to store procedure".
    Suppose , 
    Parameter value : person 1,person2,person3 
    table structure : 
    Project Name | officers 1 | officers 2
    here, officers 1 or officers 2 may contain names of multiple people.
    expected OUTPUT : distinct list(rows) of projects where person 1 or person 2 or person 3 is either officer1 or officer 2. 
    please explain or provide solution in detail 
    - Thanks

    Hi Visakh,
    Thanks for reply.
    But the solution you provided giving me right output only if officer 1 or officer 2 contains single value , not with comma seperated value.
    Your solution is working fine for following scenario : 
    Project 
    Officers 1
    Officers 2
    p1
    of11
    off21
    p2
    of12
    off22
    with parameter : of11,off22 : it will give expected output
    And its not working in case of :
    Project 
    Officers 1
    Officers 2
    p1
    of11,of12
    off21,off23
    p2
    of12,of13
    off22,off24
    with parameter : of11,off22 : it will not give any row in output
    I need patten matching not exact match :) 
    ok
    if thats the case use this modified logic
    CREATE PROC GetProjectDetails
    @PersonList varchar(5000)
    AS
    SELECT p.*
    FROM ProjectTable p
    INNER JOIN dbo.ParseValues(@PersonList,',')f
    ON ',' + p.[officers 1] + ',' LIKE '%,' + f.val + ',%'
    OR ',' + p.[officers 2] + ',' LIKE '%,' + f.val + ',%'
    GO
    Keep in mind that what you've done is a wrong design approach
    You should not be storing multiples values like this as comma separated list in a single column. Learn about normalization . This is in violation of 1st Normal Form
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • When I try to open the EOS digital solution disk ver 24.1 for my new Canon Rebel T3i camera on my Mac 10.5.8 a notice "this software is not supported by the CPU you are using" comes up.  What gives?

    When I try to open the EOS digital solution disk ver 24.1 for my new Canon Rebel T3i camera on my Mac 10.5.8 a notice "this software is not supported by the CPU you are using" comes up.   Do I need this software?  Can I just download the pictures to my Mac without using the Canon software?

    When I try to open the EOS digital solution disk ver 24.1 for my new Canon Rebel T3i camera on my Mac 10.5.8 a notice "this software is not supported by the CPU you are using" comes up
    You need to contact Canon - or read the software specs - it sounds like the software you got form them is not supported by your computer
    Do I need this software?
    Probably not - exactly what about it do you want?
    Can I just download the pictures to my Mac without using the Canon software?
    Probably - if you are shooting JPEG - launch iPhoto and in the iPhoto preferences set action when a camera is connected to launch iPhoto and connect your camera - iPhoto should launch and you should be able to import
    Some cameras need to be set to mass storage mode - read your camera manual for details and procedures
    If you are using RAW then your camera needs to be on this list and you need the versions of software noted - http://support.apple.com/kb/HT4757 - for older OS versions you can use google to find the list of supported cameras
    LN

  • HT2589 what is a security code when you are registering at the iTunes after you have put in your credit number

    What is the security code when you are registering in the iTunes Store just after you have put in your credit card number?

    It's the 3 or 4 digit code that is on the credit card, it's on the front of some cards, or others it's on the signature strip on the back : http://support.apple.com/kb/HT3541

  • HT5622 why i cannot download the application which is free? I make apple id and im trying to download but it show that i have to review my apple id and they are asking the account number. what i should do? please help.

    why i cannot download the application which is free? I make apple id and im trying to download but it show that i have to review my apple id and they are asking the account number. what should i do? please help.

    To use an Apple ID, in the iTunes/App store, requires a payment method be associated with your ID. That can be either a credit card, or if no credit card, you can redeem an iTunes gift card. So, do you have a payment method associated with your account?

  • I restored a Macbook Pro from a Time Machine backup and now none of my passwords are working (and I know they are the correct passwords).  What can I do?

    I restored a Macbook Pro from a Time Machine backup and now none of my passwords are working (and I know they are the correct passwords).  What can I do?

    First, make sure caps lock is not on.
    Another reason why the password might not be recognized is that the keyboard layout (input source) has been switched without your realizing it. You can select one of the available layouts by choosing from the flag menu in the upper right corner, if it's showing, or cycle through them by pressing the key combination command-space or command-option-space. See also this support article.
    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password. In OS X 10.10 and later, this option also works with FileVault, but only if you enabled it when you activated FileVault. It's not retroactive. Otherwise, see below.
    Note: If you've activated FileVault, this procedure doesn't apply. Follow instead these instructions.
    Start up in Recovery mode. When the OS X Utilities window appears, select
              Utilities ▹ Terminal
    from the menu bar at the top of the screen—not from any of the items in the OS X Utilities window.
    In the window that opens, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens. Close the Terminal window to get it out of the way.
    Select the startup volume ("Macintosh HD," unless you gave it a different name) if not already selected. You won't be able to do this if FileVault is active.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
               ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but the Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as the login password), there's no way to recover it.

  • I had to restore my iPhone and now some of my apps are stuck waiting they are not listed in usage what can I do

    I had to restore mt iPhone 4S and now some of my apps are waiting still .. They are not listed in usage but we're purchased under a different id so what can I do ?

    You'll can try to sign in with the ID they were purchased under in Settings > iTunes and App store and downlaod them. If not, you'll have to purchase them under the new ID.

Maybe you are looking for

  • How do i display text into a JTextfield

    hi, am currently using a JLabel to display the results of a calculation in my gui however i want to change it to a JTextField if possible is it possible to declare a Jtextfield, set it so that it cant accept data of any kind and display a calculation

  • Rough cuts from Prelude lack audio source

    Hey everyone, this is my first project with a Prelude to Premiere Pro workflow and so far everything worked just fine. Although after creating a couple of rough cuts in Prelude and sending them to Premiere Pro I am experiencing a problem with the imp

  • Define transitions in a mobile application

    This question was posted in response to the following article: http://help.adobe.com/en_US/flex/mobileapps/WS8b1c39bd7e9fc36459dd44a012cbc814595-8000.htm l

  • How should a family use Ping?

    Home sharing requires that everyone in the house use the same Apple ID, so the three of us share one ID. Ping is also based off of the Apple ID. Does only one of us get to use Ping, or is there a way I haven't seen to allow personalization per indivi

  • Please help me Urgent...Failed to load Main-Class manifest attribute from..

    *When i double clicked on any jar file showing an error like: {color:#ff0000}Failed to load Main-Class manifest attribute from....jar{color}* Can any one please suggest me a way rectify this error. Thanks in adv, -VNath