Can Scheduler Steps share same session?

We want to use temporary tables (CREATE GLOBAL TEMPORARY TABLE) among steps in the scheduler job. For example, step 1 creates a temp table with some data and step 2 will use it. Does each step has its own session? Is it possible to use a temporary table as described?
Thanks,
Denny

Hi,
Because every Scheduler job and job chain step uses its own session, it is not possible to use temporary tables to share data between jobs or job chain steps.
-Ravi

Similar Messages

  • How can I get the same session with jdbc?

    HI
    After I create or use a JDBC connection,
    i do a query.
    How can I get the same session next time?
    thanks a lot!

    Hi qin,
    Unless I have misunderstood your question, a 'connection' and a 'session' are the same thing. When you obtain a database connection, you have created a database session. Once you close that connection, the session dies -- it no longer exists. You cannot obtain the same 'session' when you get another database 'connection' (after you closed the first one).
    Hope this answers your question.
    Good Luck,
    Avi.

  • Multiple users to share same session

    Hi guys. I am writing a Flash game, where the state of the game and the moves will be stored in the session. Several users will be sharing the same game session though.
    Flash will send variables containing the move made by a particular player to a Servlet, that will be on a different web server. That Servlet will then return to Flash, when requested an XML response containing the state of the game for the next player.
    Lets say there are always 3 players playing per game. How do I share this same session among those 3 users?
    Question 1:
    Is there a way to store a Vector of sessions in a Servlet?
    Question 2:
    Supposed the above answer is yes, I could send back and forth an id for the session between Flash and the Servlet. Is it possible to associate a session stored with a particular id? And how would I retrieve that session based on a given id?

    Do you want to run multiple games concurrently? If so, the application object won't work, because all the user data will then be available to all users.
    I would recommend that you continue to use the session-per-user paradigm. Instead of storing all the game data in session, store it in a global lookup structure (a Singleton or static variable of the servlet, probably a Hashtable). Key the game data for each user off of a unique id (potentially the session id?). In each user session, store the id's of the other users they are playing against.
    So, when you are responding to a request from one user, you can quickly get the id's for the other players, use those to lookup the necessary game data for those users, and then use it to create your response.
    At that point, all you need is some way to expire the data from your storage structure. If you store a "last access" timestamp along with the game data, you can use a thread to expire old data in much the same way that a session would be expired.

  • Can two computers share same ITunes library over Airdisk?

    Hi all,
    I have a Macbook and a PowerPC G5 and a Drobo (external hard drive) hooked up to my AEBS with only ITunes music stored on it.
    I want to be able to edit and browse my ITunes library from both my G5 (which I can already do) and my MacBook (which I can't). When I try to change my ITunes library location from within my MacBook, nothing shows up. It's a blank library, even though I can edit and browse the Drobo (as an Airdisk) through the finder. How can I edit and browse my ITunes library from my Macbook if my G5 is also using the same library? Two more quick points...
    1) I have tried the "sharing" feature and don't want to use it. It doesn't allow editing of my library and won't show cover art.
    2) The above situation happens whether my G5 ITunes is open or closed.
    Thanks everybody for your help.

    Ziatron wrote:
    Yes, two computers can share the same library.
    I periodically copy my iTunes library from my Mac Pro to the Mac Mini.
    They aren't using a single library. Each computer is using its own copy and you have two sets of library files.  It can certainly be done that way but if between copy sessions you edit a bit of each library then it is a bit of a muddle trying to make sure your versions are synchronized with each other.  For example, ratings are stored only in the .itl file, so if you rate a song on your second computer it will get lost the next time you copy over from your first.

  • How can I use the same session for different components acroos application ?

    I am trying to include the components(chat, filesharing, whitboard) in different parts of my application. User should be able to access any of the component. We would like to have a single "ConnectSessionContainer" so that we don't see same user creating a seperate session for each component.
    Is there a better way of dealing with this other than declaring the "ConnectSessionContainer" in the main application ? Is there a way to check if we have a "ConnectSessionContainer" session already established ? Please help . Thanks.

    Thanks for the response. Let me explain what I am trying to do..
    I am trying to create components at different places(screens) of the flex application (not in the same .mxml file).
    Each time I create a component, I am using a "AdobeHSAuthenticator" and "ConnectSessionContainer" which is resulting a new participant in the room.
    For example
    screen1.mxml -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:Roster id="myRoster" width="100%" height="100%" />
            <rtc:Chat id="mychat" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    screen2.mxml (in the same application) -
    <mx:Panel>
    <rtc:AdobeHSAuthenticator id="auth" authenticationSuccess="onAuthSuccess(event);" authenticationFailure="onAuthFailure(event);" />
    <rtc:ConnectSessionContainer id="mySession" >
            <rtc:SharedWhiteBoard id="wb" width="100%" height="100%" />
    </rtc:ConnectSessionContainer>
    </mx:Panel>
    Here, I open a screen1 and authenticate as UserA and when I try to open screen2 flex is considering me as another user though I am in the same application.
    1) How can I use different components which are in different flex files as a same User ?
    2) Should I place my <rtc:AdobeHSAuthenticator> and <rtc:ConnectSessionContainer> in the main application which calls the screen.mxml?
    3) What is the best way to do it ?
    Thanks for your time !

  • How to protect application from being run by 2 browser with same session ?

    Hi all,
    As we know, in Firefox, if we open two browser windows or tabs it will share same session. In IE, it does the same thing if we open two tabs in same window.
    The impact is user can open the application twice (or more) yet share the same session. This will result in unwanted behaviour in our application.
    (ADF Faces 10.1.3.3 + BC)
    Is there aniway for us to disable user from opening the same application in the second Tab (IE) or second Browser window (Firefox),
    eg :
    - to invalidate the session at all
    - or any other way ?
    Thank you for any help,
    xtanto

    Taken from the release notes:
    Ctrl+N support The application user may experience incorrect behavior if they use Ctrl+N to open a new window from their application, press the refresh button on their browser toolbar (i.e. F5), copy and paste a URL for an
    ADF Faces app fromone window to another, or use the ADF Faces dialog framework to open new browser windows. If these usecases are critical to you, please set the following context parameter in your web.xml file.
    We expect to support the Ctrl+N use cases by default in a future release.
    <context-param>
    <param-name>oracle.adf.view.rich.newWindowDetect.OPTIONS</param-name>
    <param-value>on</param-value>
    </context-param>Anyone knows how this works and what happens when the user actually presses CTRL-N while the detection is on?
    Sascha

  • Can a report use the same session as a calling form?

    Hi,
    I am using Oracle Forms and Reports 6i. I am wanting to call a report from a form and open it in the same session. The form will insert information into a number of global temporary tables that the report will use to display the query information.
    Is this possible? If so what is it I need to do to acheive this? At the moment I am using the run_product which calls the report with a parameter list. This opens the report fine but in a different session.
    Regards,
    Scott.

    Scott,
    no they don't share the same session. You can use parameter lists and pass them in a call to run_report_object (or run_product if this is the built-in you are using) to the Reports module. When creating the parameter list, you can get the data from either global variables or filed sin Forms. All you need to do is to make sure the equivalent parameter names are created as user parameters in Reports.
    Frank

  • Can two people share the same Apple ID on two different iPhones and maintain different passwords?  Yes, there is more to the story.

    I have an iMac, and iPhone.  I've had my Apple ID for a few years. 
    My wife got an iPhone 4S a few months back and the salesperson at Verizon set her Apple ID the same as mine, but gave her a different password.  I don't know if this was ok, but that is what happened.
    So, yesterday, we both upgraded to IOS6 and I had no problem logging in to my iPhone with my Apple ID.  When my wife went to log in, she was told that she was entering the wrong password. We entered the password over and over again and still was wrong.
    The question is... can two people share the same Apple ID on two different iPhones and maintain different passwords?  (I have the feeling her iPhone is thinking that since it's my Apple ID, it wants my password.)
    If not, can I still set up a new Apple ID for her even through she's had the iPhone for a few months?
    Thanks.

    Hi
    You shold follow your feelings, its probably right most of the time.
    You can have 5 different devices hucked upp to one Apple ID. What I have done is that my wife and I have one Apple ID, when I bye a new app on my phone, She gets it to. Thats nice.
    You can allways set upp a new Apple ID for your wife.

  • My wife and my iphones are both on the same apple id.  If I create a new apple id for her, can we still share our music?

    My wife and my iphones are both on the same apple id.  If I create a new apple id for her, can we still share our music?

    Yes.  If you are using two different instances of iTunes on your computers, make sure the music is on both copies of iTunes.
    The person with the new Apple ID will not "own" the music, as it is owned by the one with the former ID.  But the way to deal with this is for the new ID person to do Store > Authorize This Computer from iTunes' menu, then have the person with the ID that purchased the music enter his/her Apple ID and password.

  • HT204053 can two devices share the same apple id

    can two devices share the same apple id

    Yes.
    According to this Support Article  >  http://support.apple.com/kb/HT4627
    Your Apple ID can have up to 10 devices and computers (combined) associated with it.

  • Can a company share the same Digital ID?

    Hi,
    I'm trying to get to grips with how Adobe's Digital ID encryption works.
    I have a document that I send out regularly to clients that needs protecting and I believe that the pubic/private encryption key is the best thing.
    I have a question: Can a company or several computers share the same Digital ID? For example, I usually work on my main computer but occassionally if I'm travelling I have to use my laptop to send out the document etc. Can multiple computers share the same ID? If so, how do I do this? I don't want to have set everybody up on my main computer and then my laptop etc... my clients won't be happy.
    Thanks!
    -blueunderground

    Thanks for your response.
    I want to have access to my digital ID on more than one computer so I can apply certificate security. I've created a digital ID on my laptop, can I then transfer it to my main pc?
    When I said 'my clients won't be happy' I meant if I have to create a new digital ID on every device I use and then add each client (i have over 100) multipe times to each device I use.. they will get annoyed. Do you see what I'm saying?
    All i want to know is if I create a digital ID on my laptop, can I then transfer it to my main pc? if so, how do I do this?
    Thanks,

  • How to share the same session between JNLP Application and browser session

    How to share the same session between JNLP Application and browser session using BasicService.showDocument(url) method? It appears whenever i launch any URL from within a JNLP application using BasicService.showDocument(url) , it creates new instance of browser and session even after i used cooke handlers to restore JSESSIONID and Ltpa token etc.
    public static int showDocument(String urlToOpen)
    BasicService obj = (BasicService) ServiceManager.lookup("javax.jnlp.BasicService");
    obj.showDocument(urlToOpen);
    }

    Try using Reflection

  • Can we schedule steps in Job Chain to run at a particular time of the Day.

    Hi ,
    We have created a Job chain for 3 steps.our requirement is we want to step 1 to run as per the schedule of Job chain but we want  step2 to run on fri 2 gmt and step 3 to run on saturday 1 gmt.
    is ther any setting in Job chain so that we can schedule subsequent steps to run at a particular time.
    Regards
    Rajesh

    Hi,
    You can add a timewindow to the jobdefinitions that you call in step 2 and 3, to restrict the start times for these jobs to the desired time.
    Regards,
    Anton.

  • Can we use same session again and again

    can we use same session again and again.....in BDC
    thanks,
    venki..

    Hi
    Till all the records in that session was properly uploaded into the system you can use the same Session again and again.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • I am having trouble moving files from iPhoto to a thumb drive.  Sometimes I can move 20 photos next time I can only move 2 photos or 0---this is during the same session.  I also have trouble downloading photos to the internet.  Can someone please help?

    I am having trouble moving files from iphoto to a thumb drive.  During the same session sometime I can move 10 photos at a time, the next time I can only move one photo and sometime no photos will move.  I also have trouble downloading photos to the internet.  I was using a MacBook Pro and had no problems like this.  I then upgraded to the MacBook Pro with Retina Vision and this is the computer I am having problems with.  Can anyone please give me a suggestion in how to fix this problem. THANK YOU.

    iPhoto problems should be posted in their forums.
    I also have trouble downloading photos to the internet.
    Needs clarification.  You upload from your computer to the internet & download from a website/internet to your computer.  So which are you trying to do?  Either way, sounds like a browser issue.  You need to post in the forum of whichever browser you are using.

Maybe you are looking for