Please recommend me some good mailing list about oracle

please recommend me some good mailing list about oracle
thanks!
null

binghao (guest) wrote:
: pleaes recommened me some good mailing list about oracle
: thanks!
I have seen a list of Oracle mailing lists at the Database
Domain website which is at www.dbdomain.com I think. I think it
used to me the www.oramag.com site. If you come across any good
ones let me know. Good Luck
Thomas Morgan
null

Similar Messages

  • Please recommend me some books or source for objective c and iphone ipad development.

    Please recommend me some books or source for objective c and iphone ipad develpoment
    i am new in programing so know few things about xcode and programing development.
    so please recommend new books or other source that can help beginner like me.

    Mujtaba Tarar wrote:
    do u think xcode unleashed is for beginner?
    Not really. It is just one of the few decent books I've seen. If you are a true beginner, I suggest a computer science program at your local college or university.

  • Please send me some good links on System Function Calls

    Hi,
    I want to know more about System Function calls. Please send me some good links on the same.
    Eg : CALL 'C_DIR_READ_NEXT'
          ID 'TYPE'   FIELD file-type
          ID 'NAME'   FIELD file-name
          ID 'LEN'    FIELD file-len
          ID 'OWNER'  FIELD file-owner
          ID 'MTIME'  FIELD file-mtime
          ID 'MODE'   FIELD file-mode
          ID 'ERRNO'  FIELD file-errno
          ID 'ERRMSG' FIELD file-errmsg.
    Rgds,
    Raghavendra.

    Hi,
    <u><b>CALL - Call a System Function:</b></u>
    <b>Note</b>
    This statement is for internal use only.
    It cannot be used in application programs.
    As of Release 6.20, you should use Kernel Methods instead of system functions.
    <b>Syntax</b>
    CALL cfunc.
    Addition:
    ... ID id1 FIELD f1 ... ID idn FIELD fn
    <b>Effect</b>
    Calls the system function cfunc. The relevant function must exist in the file sapactab.h. If you change or recreate a function, you have to compile and link the SAP kernel again. For this, you need the C source code files.
    Normally, external programs should be called by RFC with CALL FUNCTION ... DESTINATION.
    <b>Addition</b>
    ... ID id1 FIELD f1 ... ID idn FIELD fn
    <b>Effect</b>
    Passes fields to the called program by reference. With "ID id1", you specify the name of a formal parameter, and with "FIELD f1" the relevant field from the ABAP/4 program. If a formal parameter expects an internal table, the latter is passed in the form "FIELD tab[]".
    Example
    DATA RESULT(8).
    CALL 'MULTIPLY' ID 'P1'  FIELD '9999'
                    ID 'P2'  FIELD '9999'
                    ID 'RES' FIELD RESULT.
    <b>Note</b>
    With some critical C functions, the system automatically performs an authorization check. If the user does not have the appropriate authorization, a runtime error occurs. You can check the authorization with the function module AUTHORITY_CHECK_C_FUNCTION.
    <b>Exceptions</b>
    Non-Catchable Exceptions
    Cause: You do not have the authorization to call this C function.
    Runtime Error: CALL_C_FUNCTION_NO_AUTHORITY
    Cause: The system function specified is unknown.
    Runtime Error: CALL_C_FUNCTION_NOT_FOUND
    Cause: The system function SYSTEM is deactivated (in CALL 'SYSTEM')
    Runtime Error: CALL_SYSTEM_DISABLED
    Regards,
    Bhaskar

  • Recommend me some good sport footages on the web

    Hi everybody,
    I need some free sport footages, for tennis, soccer, basketball...I need high quality footages, of course...
    Can somebody recommend me some good web pages for downloading those footages...I don't have any budget for this project so I decide to ask you for some help about this.
    Thank you!

    There are a bunch of sites that occasionally offer some free downloads. No site I know of has an extensive library of this type of footage. Your best bet is to search the web daily until you find something you can use.
    There are also some very reasonable stock footage memberships out there. Some as little as $19 per month. I don't know anything about the quality because I don't use very much stock footage in my work.

  • An INSERT EXEC statement cannot be nested.Please tel me some good way of formulation in following situation.

    Hi,
        The following query is showing error An INSERT EXEC statement cannot be nested
    CREATE PROCEDURE [dbo].[Procedur3]
    @para1 int
    AS
    BEGIN
    CREATE TABLE #tem
    select * from detialpar where did=@para1
    --this code is quite big and is called from many place so we kept it inside this SP , so that we can call the sp to get result.
    END
    CREATE PROCEDURE [dbo].[Procedur2]
    @para1 int
    @para2 datetime
    AS
    BEGIN
    CREATE TABLE #tem
    insert into #tem (value) exec [dbo].[Procedure3] @para1
    exec ('select * from abc
    left join #tem on id=temid
    where id =' + cast(@para1 as varchar) -- i do not want to change this big dynamic query, because it has many optonal code concatinated by using "if then else".
    END
    CREATE PROCEDURE [dbo].[Procedure1]
    @para1 int,
    @para2 datetime
    AS
    BEGIN
    delete from table1 where id=@para1
    insert into table1 ( col1,col2) exec Procedure2 @para1,@para2
    ……. There are many blocks in this SP where we are deleting and inserting with different SP .
    select Name,Amount from #Temp1
    END
    CREATE PROC Procedure
    AS
    BEGIN
    SET TRANSACTION ISOLATION LEVEL SNAPSHOT
    SET NOCOUNT ON
    LOOP "A" starts here which gests id from a table xyz @para1
    begin try
    begin trans
    exec [Procedure1] @para1
    LOOP "A" ents here
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH
    IF @@trancount > 0 ROLLBACK TRANSACTION;
    END CATCH;
    END
    GO
    Please tel me some good way of solving the error.
    yours sincerly

    You can not do like above:
    Try the below:(Not tested), Below, we do not change the code, however, we placed your dynamic execution to different procedure.
    CREATE PROCEDURE [dbo].[Procedur3]
    @para1 int
    AS
    BEGIN
    CREATE TABLE #tem
    insert into #tem (value)
    select * from detialpar where did=@para1
    --this code is quite big and is called from many place so we kept it inside this SP , so that we can call the sp to get result.
    END
    CREATE PROCEDURE [dbo].[Procedur2]
    @para1 int
    @para2 datetime
    AS
    BEGIN
    CREATE TABLE #tem
    exec [dbo].[Procedure3] @para1
    END
    CREATE PROCEDURE [dbo].[Procedure1]
    @para1 int,
    @para2 datetime
    AS
    BEGIN
    delete from table1 where id=@para1
    insert into table1 ( col1,col2)
    exec ('select * from abc
    left join #tem on id=temid
    where id =' + cast(@para1 as varchar) -- i do not want to change this big dynamic query, because it has many optonal code concatinated by using "if then else".
    ……. There are many blocks in this SP where we are deleting and inserting
    with different SP .
    select Name,Amount from #Temp1
    END
    CREATE PROC Procedure
    AS
    BEGIN
    SET TRANSACTION ISOLATION LEVEL SNAPSHOT
    SET NOCOUNT ON
    LOOP "A" starts here which gests id from a table xyz @para1
    begin try
    begin trans
    exec [Procedure1] @para1
    LOOP "A" ents here
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH
    IF @@trancount > 0 ROLLBACK TRANSACTION;
    END CATCH;
    END
    GO

  • Please remove me from your mailing lists!

    PLEASE REMOVE ME FROM YOUR MAILING LISTS!!!
    Sent from my iPhone
    <Re-Titled By Host>

    You will need to go through a couple of steps in order to remove your subscription: one is on any community, click the "following" button and it will change to "follow" which means you are no longer subscribed. The same applies to any discussion/question you initiate - you will be automatically subscribed, so unfollow that. And, last, click on your name "welcome Chascartri" and then Preferences and turn email notifications OFF.
    As an FYI, please do not shout at the other users/volunteers here as that is what typing in all caps means.

  • Can you recommend me some good books on smartform?

    I am learning smartform development now.
    But I have not any book on this subject.
    Can you recommend me some good books on smartform?
    Thank you!

    Hi
    see this and do accordingly it is very useful link for smartforms
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Subtotals - Check the link...
    Re: Subtotal with Table Node in smartforms
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Please send me some question of 1z0-141 oracle paper

    Please send me some question of 1z0-141 oracle paper

    why don't you google it, there are loads of hits.
    Grant..

  • Good Mailing List reader (one IMAP folder)?

    Hi all, been using Evolution, but the way it handles tons of ML posts which have accumulated overnight bothers me, so much so I sometimes just go back to gmail's UI (single convo for each thread rocks!). Thunderbird doesn't handle things very much differently. In this case 'things' refers to having all my mailing list mail come into a single IMAP folder, with threads that can stretch to several dozen mails (one of the smaller kernel-related MLs) and many active threads at the same time (for example, the dovecot ML).
    What do you all use to read your MLs? Any other mailing client good for this? Wouldn't mind just using evo for my 'normal' mails, contacts, and calendaring, having a side app which accesses IMAP just to read the MLs (the IMAP server is local on my machine anyway). Thanks for your ideas.

    Hi AndyRTR, thanks for dropping by. If I may presume to ask more questions, what's good about claws-mail? What do you like about it? Is it more intuitive to you in the handling of ML threads?

  • A New Mailing List for Oracle Apps DBAs

    Hello Oracle Apps DBA community,
    A new mailing list [email protected] has been created!
    Feel free to subscribe by sending email to
    [email protected] with 'subscribe' in the Subject field
    Feel free to unsubscribe :) by sending email to
    [email protected] with 'unsubscribe' in the Subject field
    This list is dedicated purely Oracle Apps DBA job related questions.
    Let share our experience, options and problems. Together we will make our job more efficient.
    If your job is Oracle Apps DBA please WELCOME to join the list.
    I am sure you will not regret.
    More information about new list available on:
    http://www.freelists.org/archives/ora-apps-dba/05-2006/msg00000.html
    Thank you in advance,
    Yury
    5 years Oracle Apps DBA.

    I appreciate if someone comes up with an EBusiness Architecture forum, where users can share there architectures and best practices to tame the monster EBusiness

  • What is the internal mailing list for Oracle SES

    Hello, I had this mailing list: : [email protected] but it appears to not be available now. Does anyone know where should I write now?
    Thanks in advance.

    Hello,
    This is list is the way for everyone to see which companies are actively contributing on SCN. The points of their employees are aggregated under the company names.
    We have a recognition program for SAP Partners called the [SAP Pinnacle Awards|http://www.sap.com/ecosystem/partners/recognitionprograms/pinnacleaward.epx]. In various categories such as Software, Technology, Services, Community etc we give an award to our partners at the Sapphire conference in May. For the Community Award, we look at companies who are active on SCN, we look at their contributions on SCN (via this list) but we also look at the quality of their contributions, their involvement in SAP and community events as well as community projects.
    So to sum up and answer your question: this list helps with partner recognition, but there's more to it.
    Best regards,
    Laure (from the SCN Collaboration Team)

  • What are some good thing things about the 5s

    What are some the good things about the iphone 5s

    http://www.apple.com/iphone-5s/features/
    http://www.apple.com/iphone-5s/design/
    http://www.apple.com/iphone-5s/built-in-apps/
    http://www.apple.com/iphone-5s/app-store/
    If you can ask a more specific question, we can be more specific in our replies.
    Regards.

  • Please reply with some good news... :(

    Please can someone help me....
    For the past few days my iphone5 has been nothing but a nightmare..
    Its 3months old I got as a replacement phone from Apple.
    It started off by going through the battery quicker than usual.....
    Then when I tried to charge it, it would charge to 5% then stop charging, I had to unplug the
    charger and reconnect in hopes I will get a full charge.
    Then all of a sudden it doesnt wanna charge, I used 3 different chargers that is of my sister #5
    My phone is now Offically dead and wont show the charging icon to show its charging...
    Ive done a hard reset with the home and off button and also with it charging and also gave the mute button a play...
    Im not sure what to do if anyone has any advise please do so and help me out here guys...
    CHEERS

    Apple products usually have a one year warranty, I would take it to Apple Store.

  • Can someone please suggest some good projects for learning about usrp and labview for beginners?​??

    Can some1 please me suggest  some good things to work out on USRP using labview.. 

    https://decibel.ni.com/content/groups/ni-usrp-exam​ple-labview-vis?view=documents
    Omar

  • Please recommend a good tool to make JSP page.

    Hi, can someone please recommend me a good tool to make JSP page? Until now, I use notepad which I found is not professional.

    Hi kvols:
    Thanks a lot for your reply. I had used JEditor before I switched to JCreator. I found both of them quite good. I also tried to use CVS sometime back, but got totally confused about it. I will try to search for the other toolkits you mentioned. Just now, I find one named XMLspy from google. Yet I don't know whether or not it is really as good as stated on its website. I will try it out soon.

Maybe you are looking for