How to enable an existing Extended Events Session or add a new Session?

Hi,
I am using Management Studio version 12.0.2000.8 and I have noticed that Extended Events for Azure SQL DB have been added to it.
However, I can't add a new session because the option is grayed out in the dropdown menu. Also, the existing sessions return an error when I attempt to start them. Here is one example of starting
azure_xe_query session:
Failed to start event session 'azure_xe_query' because required credential for writing session output to Azure blob is missing. (Microsoft SQL Server, Error: 25739)
I have an automated export assigned to my Azure database, so the database must be using a (blob) storage account. Is this the same storage account which Extended Events are trying to reach? So far, my best guess is that the storage key should be provided
while starting the session. This, obviously can't be done using the GUI.
The only thing I managed to google about this topic is
this blogpost from May. 
Has anybody else tried to profile their Azure DB using Extended Events? Is this feature still in development?
Thank you,
Filip

Hi Bob, thank you for replying.
You mentioned 12 pre-configured event sessions. May I ask, which version of Management Studio were you using? For some reason, I only see 5 of them:
azure_xe_errors_warnings
azure_xe_object_ddl
azure_xe_query
azure_xe_query_detail
azure_xe_waits
And each fires an error just like the one in the first post. At the moment, viewing live data from 'xe_query' session would be enough for me. If I could only start it somehow ...
I should probably mention I have tried to do this on a Basic and a Standard service tier. Not yet with a Premium.
Since there is probably nothing we can do at the moment, I'm going to mark your reply as an answer. Thnx again.

Similar Messages

  • Is there a way to force a new session so my "on new session" code will run?

    I'm using apex.oracle.com and I find values of application (global) and page items persisting across logins.
    I didn't expect that? I thought they would go away when I logged out of APEX. But I can change the values, logout, and log back in to the same values. And when I login and start an application, it's not running my "shared components > application processes" initialization code which is set "on new session".
    I thought each login would be a distinct new session with it's distinct set of items. (see definition below)
    So when I run an application, is there a way to force a new session so my "on new session" code will run?
    >
    What Is a Session?
    A session is a logical construct that establishes persistence (or stateful behavior) across page views. Each session is assigned a unique identifier. The Application Express engine uses this identifier (or session ID) to store and retrieve an application's working set of data (or session state) before and after each page view.
    Because sessions are entirely independent of one another, any number of sessions can exist in the database at the same time. Also, because sessions persist in the database until purged by an administrator, a user can return to an old session and continue running an application long after first launching it. A user can also run multiple instances of an application simultaneously in different browser sessions.
    Sessions are logically and physically distinct from Oracle database sessions used to service page requests. A user runs an application in a single Oracle Application Express session from log in to log out with a typical duration measured in minutes or hours. Each page requested during that session results in the Application Express engine creating or reusing an Oracle database session to access database resources. Often these database sessions last just a fraction of a second.
    >
    Thanks -- Howard

    I cleaned up the copy of the Select List code in APEX 4.1.xxx which was not operating correctly before. Now it matches what I have in APEX 4.2.yyyy. And, drum roll please, the select list seemingly works fine there (4.1) as well. But now, the initialization code--which was working fine(!)--FAILS in 4.1!
    <font size="3"><font color="red">•<font face="courier new">
    Okay. Maybe this will help. 1) I logged in. Ran the login page but did not login. Opened the "session" window and wrote down the session ID. Logged out and back in. 2) Ran the login page but did not login. Opened the "session" window and .... it has the same session ID? 3) <b>So the session is persisting across logins!! How is that possible?</b>
    (More) When I log into 3 different applications, I get a different session ID for each but repeated logins always give the same session ID for any given session. </font>

  • 9.01 on Mac 10.6 hangs on trying to restore session or start a new session

    9.01 on Mac 10.6 hangs on trying to restore session or start a new session
    Hangs on Firefox startup
    Firefox says We're embarrassed and just hangs needing to be force quit--

    I've found the issue on Mac. Apparently if the server sends back nothing, "Content-Length: 0", NetLingo hangs... not very robust. This isn't a problem on Windows, but the hack is to always send at least one byte payload.

  • How do I edit existing Calendar Events with Applescript?

    I've got a script that needs to add a URL to an existing Calendar event.  I've tried everything I can think of but can't get it to work.  Here's what I've got so far, that's working, but it's missing the last piece:
    tell application "Finder"
              set icsFile to POSIX path of ("Macintosh HD:Users:user:Library:Calendars:icsfile" as alias)
              set eventID to do shell script "cat " & quoted form of icsFile & " | grep -m 1 'UID:' | sed s/UID://"
              set hangoutLink to do shell script "cat " & quoted form of icsFile & " | grep 'X-GOOGLE' | sed s/X-GOOGLE-HANGOUT://" as URL
    end tell
    tell application "Calendar"
              get name of every calendar
              tell calendar "example calendar"
                        set theEvent to first event whose uid = eventID
      --here's the bit I can't get working
                        tell event theEvent
                                  set properties to {url:hangoutLink}
                        end tell
              end tell
    end tell
    When I run it, I get the following error:
    Calendar got an error: Can’t make event id "[email protected]" of calendar id "6B53911E-829F-4CCA-90F9-0A493B8DF3F5" into type integer.
    Thanks in advance for any help!

    The properties of the text should still be set to the text tool if it was the previous text used, otherwise I'm not to sure.

  • Keep getting 'Well that's Embarassing" message starting previous session, I do not want to start previous session, I always want new session. Need an option for this.

    Keep getting "Well that's Embarrassing" message starting previous session. I do not want to start previous session. I always want a new session. Need an option to always start a new session.

    Both of the above cited options help ONLY if "sites to be restored" ''are listed''.
    They used to be(when I first switched to Firefox); now they are not(even with the "Oops! This is embarassing..." message from FF where the "Restore Session" option is shown but with nothing IN it, y'see?).
    I've been going through the FAQs &c in the Mozilla Support sites/linx. Lots of interesting things but not quite that for which I search.
    Open to suggestions, I remain, ~=DVexedVixen

  • How to enable Sql Dependency OnDataChange event to handle multiple request at a time

    when we work with sql dependency then we work with OnDataChange event and this event notify us regarding data change in table. suppose my application monitor a
    test table by using sql dependency. suppose huge number of data is getting insert and updated in
    test table very frequently. so i do not know how sql dependency
    OnDataChange event can handle this situation because OnDataChange event will fire as many as time data will be change in db table.
    here is my snip for onchange event
    void OnDataChange(object sender, SqlNotificationEventArgs e)
    ((SqlDependency)sender).OnChange -= OnDataChange;
    BBALogger.Write("PartIndexer Service RegisterNotification called end", BBALogger.MsgType.Info);
    if (e.Source == SqlNotificationSource.Timeout)
    MailSend(); // notification mail send
    BBALogger.Write("PartIndexer Service SqlNotificationSource.Timeout error", BBALogger.MsgType.Error);
    Environment.Exit(1);
    else if (e.Source != SqlNotificationSource.Data)
    MailSend(); // notification mail send
    BBALogger.Write("PartIndexer Service SqlNotificationSource.Data", BBALogger.MsgType.Error);
    Environment.Exit(1);
    else if (e.Type == SqlNotificationType.Change)
    StartIndex();
    BBALogger.Write("PartIndexer Service Data changed", BBALogger.MsgType.Info);
    else
    BBALogger.Write(string.Format("Ignored change notification {0}/{1} ({2})", e.Type, e.Info, e.Source), BBALogger.MsgType.Warnings);
    RegisterNotification();
    please help me to design my OnDataChange event such was if data is changed very frequently in test table then
    OnDataChange can handle the situation. OnDataChange event should not be freeze and can log each data change in xml file.
    i am just looking for guidance like how to design OnDataChange as a result it could handle and log data when huge number of user will change data in test table frequently. thanks

    Hi,
    You should be able to delete all nodes selected by an XPath expression... Have a look at this...
    http://docs.oracle.com/cd/E28280_01/dev.1111/e15866/ui_ref.htm#i1290003
    Cheers,
    Vlad

  • How to enable 802.11N extended network and WPA2 Personal Security?

    Hello,
    I have an aiport express 802.11N, using Radio Mode 802.11N (5Ghz only) and set to "allow this network to be extended". At the same time the wireless security is set to "WPA2 Personal" (and the key defined). This router is also hooked up to the internet as the main bridge.
    On the other side, I have an airport extreme set exactly the same way from a security standpoint (WPA2 Personal) and for this one, the wireless is set to "extend a wireless network".
    Both routers have their light green and my computer is wired to the airport extreme. The computer gets its IP address from the main dhcp server and I can FTP to any ftp site; I can ping any machines on my network;
    Now the problem:I can not browse the internet nor ping any website. Http traffic is completely blocked.
    If I reset the security to none on both routers, I can then access the internet without any problem.
    Has anybody been succesful with this configuration and what am I doing wrong?

    You need to download and install the AirPort Extreme 802.11n* Enabler for Mac. But it will cost you --- $1.99. Order it from the Apple Store:
    802.11n Enabler
    Message was edited by: John Strung

  • How to keep old session id when a new session is created in web site

    Hi,
    I have a question about HttpSession in a Struts framework based project development.
    I have a web page "a.jsp" in public site (no need login) which can navigate to other pages/links. There is a button on "a.jsp" to popup a new window "pop.jsp" and create a session (session1). Usually, when I navigate to other pages/links from "a.jsp", it doesn't affect this "pop.jsp" and its session1. However, if I try to goto a secure site - a login page "login.jsp" from "a.jsp", since the "login.jsp" needs to kill current session before the login, the current session1 within the "pop.jsp" is killed at that time. When I go back to "pop.jsp", it will create a new session2 and the original session1 attributes does not exist any more. Therefore, I need to save the session1 id in somewhere to compare it with new session2 id when session is changed, and display some message in "pop.jsp".
    Do anyone know how/where to keep session1 id? Any sample/suggestion would be appreciated.
    Hanna

    check reply 2 of [http://forum.java.sun.com/thread.jspa?threadID=5279453&tstart=0|http://forum.java.sun.com/thread.jspa?threadID=5279453&tstart=0]
    like that you can comapre

  • How can I apply existing WCS "WLAN Config" templates to a new WLC?

    We've been running a pair of WLC 4402s managed by WCS, thus we are still on the older 7.0.235.0 (WCS) / 7.0.235.3 (WLC) release. I'm trying to add an additional WLC 4402-50 as a hot spare. I first ran the manual setup steps to give it an IP in our range, and used the WLCs web page to set our SNMP communities and such to the values used by our existing WLCs, then I added the new WLC in WCS.
    At this point I could apply most of the "Controller Templates" from our existing configuration to the new unit. However, I can not get it to take our existing interfaces nor our WLAN Configurations. How do I avoid needing to recreate these from scratch on the new WLC?
    We only have four dynamic interfaces, and each WLC needs its own IP address for each interface, so I did manually add these via the WLCs web page. However, now when I go to the WCS' "Configure > Contoller Templagte Launch Pad" page, then select "WLANs > WLAN Configuration", I see my usual list of WLANs, but can't figure how to push them to the new WLC.
    For all of the other templates on the launch pad, I can select a template, click the "Apply to Controllers..." button, and I get a list that has my existing two and also the new controller. I can select the new controller, and apply the template, and it succeeds.
    Yet if I select a specific WLAN config, and press "Apply to Controllers...", the list that appears has only my existing two WLCs, not the the new one.
    In small green type at the top it says, "Controllers configured with Interface/Interface Group - 'w-restricted'  and selected RADIUS server(s), LDAP servers, ACL Name with rules and  Ingress interface are shown."
    I have already manually added the interface "w-restricted" to the new controller, and have added the RADIUS servers via the template used by our other two WLCs. Not sure what to do about "LDAP servers, ACL Name with rules and  Ingress interface", as we don't have any ACL rules, nor use LDAP directly from the WLCs (as all user ID stuff is via RADIUS).
    Any hints on what manual setup I should add to get the new WLC in the list for these WLAN Configs?
    Thanks,
    Steve

    To be honest, if your only adding another WLC, your better off creating the interface and WLAN's manually. I don't like pushing out templates to create new WLAN's. I would use it to adjust an existing WLAN, but that would be it. To me it's safer. Also your new WLC is on the same code? If you really want to figure it out, I would manually add the interfaces first then refresh the co fog from the new WLC and then push out the WLAN SSID and see if it takes. If not, don't waste your time anymore and create it manually.
    Sent from Cisco Technical Support iPhone App

  • I want to learn how to use the existing stationary in Mail and add my own stationary.

    I use the stationary in my Mail program often.  I would like to learn more about using it, changing it, making my own stationary to use in Mail - and also to allow PC users to receive it.

    Here's a thread that will possibly help:
    https://discussions.apple.com/message/18175872#18175872
    Mail templates use HTML, so those receiving your e-mail should able to view the stationery. It doesn’t matter if they’re on a PC or Mac.

  • Firefox crashes after I open with a message, oops how embarassing, and asks which applicaiton to keep open or start new session. I opt for new session and it crashs

    For the past two weeks, firefox will will crash after I open it or not open at all but just flash on the screen and disappear. This happens when I open in Google or search on MSN or go to hotmail.

    Not necessarily: rv:1.9.2.8 indicates a Firefox 3.6.8 version
    *Mozilla/5.0 (X11; Linux i686; rv:1.9.2.8) Gecko/20100722 Firefox/4.0.1
    You can check for a possibly corrupted user agent.
    See:
    *https://support.mozilla.org/kb/Finding+your+Firefox+version
    *https://support.mozilla.org/kb/websites-say-firefox-outdated-or-incompatible
    *http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • When in the middle of doing work Firefox just crashes, A sorry window pups up asking if user wants to Reload the same session or start a new session. This never happen with previous versions.

    Since I updated Firefox to the latest version it crashes a lot and although I can reload the session I was working with it is annoying and time consuming. I always keep my computer 100% updated and virus free as I always run Norton. I also have 4 G of RAM and 500 G disk drive so it is not lack of RAM and never keep more that 3 windows open at the same time.

    (1) Firefox's built-in post-crash page has not been a real HTML page for a long time (for example, from the time of Firefox 22, see: [https://support.mozilla.org/en-US/questions/968212 Want to save LOTS of versions of "Restore Session.xht" from the "oops ..." page for later use]). If you had this working differently with Firefox 25, that might have been created by an extension.
    You can check to see whether extensions are disabled or need an update on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. The disabled extensions cluster toward the bottom of the list. To poll for updates, use the "gear" button above the list and choose Check for Updates.
    If you used the Reset feature (or Firefox automatically did a reset due to some problem during upgrading), you will need to reinstall missing extensions. The reset feature creates a folder on the desktop named Old Firefox Data. Do you have that folder? There may be data you can recover from it.
    (2) There are many ways for history to get cleared, both internal to Firefox and external. Could you double-check your Privacy settings?
    orange Firefox button (or Tools menu) > Options > Privacy
    * The "Firefox will" drop-down says Remember History: Firefox shouldn't be clearing history, but an add-on or external software could do it
    * The "Firefox will" drop-down says Use custom settings for history: inspect the "Clear history when Firefox closes" setting to make Firefox isn't set to clear history. Also check your add-ons and consider external software.
    Firefox normally accumulates months of history. However, some of Firefox's database sizes are based on disk space available. If your hard drive is very full, Firefox might reduce the amount of history stored.

  • How do I deactivate old computers so I can add a new one?*

    How do I deactivate old computers I no longer own to activate my new one?

    About De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.
    Also, see iTunes Store- About authorization and deauthorization.

  • How can I replace a previous icloud account and add a new one on iphone 4S?

    I am using my wife's old iphone 4s and I want to set up my own icloud account and remove hers from the phone without cancelling her access to her icloud account.

    Hello topbleep,
    Welcome to the Apple Support Communities!
    I understand that you’re wife’s iCloud account is signed in on the phone you are using and you would like it to have your account. You can sign out of her iCloud account on the iPhone and sign in to your account. This will not cancel her iCloud account. To sign out of an iCloud account on an iPhone, please follow the instructions located in the attached article. 
    iCloud: Change iCloud feature settings
    On your iOS device: Go to Settings > iCloud, then at the bottom of the screen, tap Sign Out (Delete Account in iOS 7 and earlier).
    Have a great day,
    Joe

  • How to enable a partner application for Single Sign-On?

    Can someone please advise me on how to enable my existing J2EE web application for the Oracle Single Sign-On?
    My requirement is i want to provide the single sign-on authentication service to my J2EE web application. For this, I would like to make my application as a partner application similar like the OracleAS Portal.
    I am using Oracle 10g ( OralceAS, Oracle Infra, OID ...)
    I found the following service/APIs which Oracle provides. I am not sure which one is suitable for me.
    1. mod_osso ( Static)
    --- In this case, I have to make a entry in mod_osso.config file to protect the URL. should I have to register the URL again through single sign on admin page ("Administer Partner Application") after make a entry in config file?
    2. mod_osso ( Dynamic directive)
    -- in this case, I have to modify the code by providing the directives like 401, 499.. etc. So i don't prefer this as i don't want to touch my app.
    --If I go with this option, should i have to register the URL with Single sign on server through SSO admin page ( as mentioned in the above step#1) ?
    3. SSO SDK
    - Since it was deprecated and need java coding, i am prefer this option.
    -- however, if i go with this option, i will develop code by using SDK. in this case i need to register the URL in SSO server through admin page.. am i right?
    Note:- OSSO server integrated with Active Directory for the authentication.
    Thanks,
    -Senthil

    sharon38_74 wrote:
    they said that our internal application needs to send a "login request" to etran via SSL with the user's information encoded in base 64 format. etran captures the HTTP header containing user authentication and authorization information, and parses the required information from the HTTP header.
    My question is that how I set user information in HTTP header? From my understanding, once I am able to set the user information in HTTP header, it is in base 64 format?Your application need to act like a proxy. You can invoke a HTTP request programmatically using java.net.URLConnection. You can set request headers using URLConnection#setRequestProperty(). Also see the API docs: [http://java.sun.com/javase/6/docs/api/java/net/URLConnection.html]. You only need to know the header field name where to set the Base64-encoded value in. You need to Base64-encode the value yourself.

Maybe you are looking for

  • How do I upload a photo from my iPad to a website (eg, as a profile avatar)?

    I wanted to complete my profile on a restaurant reviewing website with an avatar and had a picture stored on my iPad I wanted to use.  The uploading button did not work for some reason.  How can I upload photos to a website when using Safari for iPad

  • Apple TV 160GB nearly full and so is my iMac - what are my next steps?

    well it was inevitable. the 320GB in my iMac is nearly full with video/music and photos. For a while now I have been syncing selectively between my iMac and the apple TV downstairs. Streaming has been too choppy/intermittant for me to consider as a s

  • External methods in xslt mapping

    can we call external JAVA and ABAP methods in XSLT mapping ?  thanks kumar

  • JFileChooser and the filename

    Hi All, I'm going for 11 new things learned today about Java! I'm using JFileChooser to prompt for a file, and I need to capture the filename and see if it's inside the file. I'm getting a "found int, expected boolean" compile error. Can comeone enli

  • Cursor and invisible plots

    I saw the same question but not an answer, yet. A cursor tracks invisible plots. Disabling plots doesn't work either.