Q: Count concurrent sessions per hours in a specified interval

Hi,
I have this table wich contains SESSIONID, CREATEDATE, LASTCHECKDATE, EXPIREDATE, PARTNERID
We need to make a query that would return the number of max concurent session per hours for the interval specified.
For example, for last week, on a per hour bases, or day bases, the top concurent session for each hour or day depending on the report.
can do the number of new session on each hour with this query;
SELECT TO_CHAR(createdate, 'YYYY/MM/DD HH24') ||'h ' start_time, COUNT( SESSIONID ) new_sessions, name || ' {' || partnerid || '}' as Partner
FROM uws
WHERE expiredate IS NOT NULL
and partnerid=25
and TO_CHAR(createdate,'YYYY/MM') = '2010/05'
group by TO_CHAR(createdate, 'YYYY/MM/DD HH24') ||'h ', name || ' {' || partnerid || '}'
ORDER BY 1 DESC;
I think I should use MAX(count(sessionid)) and probably some DECODE when c1 between createdate and lastcheckdate...
This would need to run on sqlplus from a shell script if possible and even chart it on Google Charts.
Any help appreciated, note that I am not an Oracle expert..
Edited by: user11954725 on Jul 19, 2010 5:55 PM

Thanks Frank,
I think we are very close to the solution I am looking for now;
Here is the script you gave me (with little modifications) and the output;
WITH     all_hrs          AS
     SELECT     min_hr + ((LEVEL - 1) / 24)     AS period
     ,     min_hr + (LEVEL / 24)     AS next_period
     FROM     (
               SELECT TRUNC (MIN (createdate), 'HH')     AS min_hr
               ,     TRUNC (MAX (LASTHEARTBEATDATE), 'HH')     AS max_hr
               FROM     userwebsession
where createdate <= TO_DATE('07-MAY-2010 00.00.00','DD-MON-RR HH24.MI.SS')
and LASTHEARTBEATDATE >= TO_DATE('07-MAY-2010 23.59.59','DD-MON-RR HH24.MI.SS')
     CONNECT BY     LEVEL <= 1 + (24 * (max_hr - min_hr))
SELECT     TO_DATE(a.period,'DD-MON-YY hh24') "Period"
,     COUNT (u.userwebsessionid)     AS sessions
FROM          all_hrs     a
LEFT OUTER JOIN     userwebsession     u     ON     a.period     <= u.LASTHEARTBEATDATE
                    AND     u.createdate     <= a.next_period
group by a.period
ORDER BY a.period
               SELECT TRUNC (MIN (createdate), 'HH')     AS min_hr
               ,     TRUNC (MAX (LASTHEARTBEATDATE), 'HH')     AS max_hr
               FROM     SPEAKESL.userwebsession
where createdate <= TO_DATE('07-MAY-2010 00.00.00','DD-MON-RR HH24.MI.SS')
and LASTHEARTBEATDATE >= TO_DATE('07-MAY-2010 23.59.59','DD-MON-RR HH24.MI.SS');
produce output;
Period SESSIONS
19-APR-10 15
19-APR-10 12
19-APR-10 15
19-APR-10 18
19-APR-10 6
19-APR-10 7
19-APR-10 6
19-APR-10 16
19-APR-10 18
19-APR-10 21
19-APR-10 19
19-APR-10 24
19-APR-10 15
19-APR-10 7
19-APR-10 10
19-APR-10 6
19-APR-10 9
19-APR-10 7
19-APR-10 6
20-APR-10 5
20-APR-10 5
20-APR-10 6
20-APR-10 7
20-APR-10 7
20-APR-10 13
20-APR-10 7
20-APR-10 6
20-APR-10 4
20-APR-10 8
20-APR-10 8
20-APR-10 6
20-APR-10 14
20-APR-10 7
20-APR-10 5
20-APR-10 14
20-APR-10 9
20-APR-10 9
20-APR-10 7
20-APR-10 5
20-APR-10 4
20-APR-10 5
20-APR-10 3
20-APR-10 4
21-APR-10 4
21-APR-10 5
21-APR-10 5
21-APR-10 5
21-APR-10 5
21-APR-10 5
21-APR-10 6
21-APR-10 7
21-APR-10 8
21-APR-10 14
21-APR-10 7
21-APR-10 8
21-APR-10 4
21-APR-10 6
21-APR-10 10
21-APR-10 26
21-APR-10 14
21-APR-10 10
21-APR-10 12
21-APR-10 6
21-APR-10 7
21-APR-10 6
21-APR-10 5
21-APR-10 6
22-APR-10 7
22-APR-10 7
22-APR-10 7
22-APR-10 6
22-APR-10 7
22-APR-10 8
22-APR-10 9
22-APR-10 5
22-APR-10 21
22-APR-10 7
22-APR-10 34
22-APR-10 29
22-APR-10 29
22-APR-10 10
22-APR-10 21
22-APR-10 17
22-APR-10 50
22-APR-10 43
22-APR-10 43
22-APR-10 26
22-APR-10 13
22-APR-10 16
22-APR-10 15
22-APR-10 35
23-APR-10 6
23-APR-10 3
23-APR-10 4
23-APR-10 4
23-APR-10 2
23-APR-10 3
23-APR-10 2
23-APR-10 2
23-APR-10 4
23-APR-10 11
23-APR-10 6
23-APR-10 14
23-APR-10 16
23-APR-10 20
23-APR-10 11
23-APR-10 20
23-APR-10 43
23-APR-10 30
23-APR-10 46
23-APR-10 41
23-APR-10 26
23-APR-10 50
23-APR-10 51
23-APR-10 66
24-APR-10 4
24-APR-10 2
24-APR-10 2
24-APR-10 2
24-APR-10 2
24-APR-10 2
24-APR-10 2
24-APR-10 2
24-APR-10 2
24-APR-10 2
24-APR-10 5
24-APR-10 5
24-APR-10 3
24-APR-10 2
24-APR-10 3
24-APR-10 5
24-APR-10 6
24-APR-10 5
24-APR-10 4
24-APR-10 3
24-APR-10 4
24-APR-10 4
24-APR-10 2
24-APR-10 2
25-APR-10 2
25-APR-10 2
25-APR-10 2
25-APR-10 2
25-APR-10 2
25-APR-10 2
25-APR-10 3
25-APR-10 3
25-APR-10 4
25-APR-10 4
25-APR-10 4
25-APR-10 3
25-APR-10 2
25-APR-10 2
25-APR-10 5
25-APR-10 6
25-APR-10 4
25-APR-10 5
25-APR-10 4
25-APR-10 5
25-APR-10 6
25-APR-10 5
25-APR-10 3
25-APR-10 3
09-MAY-10 7
09-MAY-10 8
09-MAY-10 8
09-MAY-10 6
09-MAY-10 8
09-MAY-10 8
09-MAY-10 5
09-MAY-10 5
09-MAY-10 5
09-MAY-10 5
09-MAY-10 5
09-MAY-10 5
09-MAY-10 5
09-MAY-10 5
09-MAY-10 5
10-MAY-10 7
10-MAY-10 6
10-MAY-10 6
10-MAY-10 7
10-MAY-10 5
10-MAY-10 5
10-MAY-10 5
10-MAY-10 5
10-MAY-10 6
10-MAY-10 12
10-MAY-10 12
10-MAY-10 20
10-MAY-10 12
10-MAY-10 13
10-MAY-10 14
10-MAY-10 17
10-MAY-10 12
10-MAY-10 15
10-MAY-10 14
10-MAY-10 12
10-MAY-10 8
10-MAY-10 8
10-MAY-10 7
10-MAY-10 7
11-MAY-10 7
11-MAY-10 7
11-MAY-10 8
11-MAY-10 8
11-MAY-10 7
11-MAY-10 30
11-MAY-10 37
11-MAY-10 43
11-MAY-10 22
11-MAY-10 14
11-MAY-10 17
11-MAY-10 19
11-MAY-10 26
11-MAY-10 20
11-MAY-10 20
11-MAY-10 30
11-MAY-10 14
11-MAY-10 18
11-MAY-10 11
11-MAY-10 12
11-MAY-10 8
11-MAY-10 8
11-MAY-10 10
11-MAY-10 8
12-MAY-10 14
12-MAY-10 12
12-MAY-10 75
12-MAY-10 51
12-MAY-10 38
12-MAY-10 39
12-MAY-10 22
12-MAY-10 17
12-MAY-10 13
12-MAY-10 12
12-MAY-10 11
12-MAY-10 17
12-MAY-10 30
12-MAY-10 28
12-MAY-10 23
12-MAY-10 20
12-MAY-10 18
12-MAY-10 12
12-MAY-10 15
12-MAY-10 16
12-MAY-10 14
12-MAY-10 28
569 rows selected
MIN_HR MAX_HR
19-APR-10 12-MAY-10
Now the output seem to produce the concurrent sessions as needed but the date range show is not exactly.
I expect the output to display only for the range specified in parameter, which if for this example only one day.
Probably if we ask for more that few days, we would like to display the MAX number of concurrent session for one day and the average (optional) also for that day and this for all days in the period.
So for example based on the above output this next level report would output as follow (for period of 19-APR-10 to 27-APR-10;
19-APR-10 24
20-APR-10 14
21-APR-10 26
22-APR-10 50
23-APR-10 66
24-APR-10 6
25-APR-10 6
26-APR-10 105
27-APR-10 44

Similar Messages

  • No of Concurrent Sessions Per User  Mismatch with profile settings

    Hi
    DB Version Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    OS RHES 5U2
    I created a profile MYPROFILE and set the value of Concurrent Sessions (Per User) to 30. DB was bounced after creating the profile. I made this profile default for a particular user "MYUSER". I verified that by querying DBA_USERS (select profile from dba_users where username like 'MYUSER') I checked v$session with that particular user after sometime and noticed that it was showing 34 sessions. Some ACTIVE and some INACTIVE.
    My question is, if I have set the maximum limit of concurrent sessions per user to 30 in myprofile and made this the default profile for MYUSER, then how come i am still able to see more than 34 sessions of myuser regardless of the status? I am not sure if this is relevant or not but the IDLE TIME is set to 15 minutes.
    Thank you for your help
    Edited by: user560883 on Jul 4, 2010 12:45 AM

    user560883 wrote:
    Hi
    DB Version Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    OS RHES 5U2
    I created a profile MYPROFILE and set the value of Concurrent Sessions (Per User) to 30. DB was bounced after creating the profile. I made this profile default for a particular user "MYUSER". I verified that by querying DBA_USERS (select profile from dba_users where username like 'MYUSER';) I checked v$session with that particular user after sometime and noticed that it was showing 34 sessions. Some ACTIVE and some INACTIVE.
    My question is, if I have set the maximum limit of concurrent sessions per user to 30 in myprofile and made this the default profile for MYUSER, then how come i am still able to see more than 34 sessions of myuser regardless of the status? I am not sure if this is relevant or not but the IDLE TIME is set to 15 minutes.
    Thank you for your helpDid you set the parameter resource_limit=true ? You must do it before you test sessions_per_user. You can do so like the following,
    alter system set resource_limit=true;After this again try and post the feedback.
    HTH
    Aman....

  • Concurrent Session Limits to reduce TFO overload

    Is there a way to limit the number of concurrent connections per source IP address within a given WAAS?
    I often see one IP address (ie. client) consuming more than their fair-share of available optimizable sessions.  I'd like to be able to set a maximum concurrent session limit based on a source IP at several of my remote sites.  Once the max (let's say 15 concurrent sessions per client) is hit, their next session will automatically go into passthrough.  Any new sessions associated with that client IP, up to that limit, would be eligible for optimization.
    I know there is a way to do limit this for management users via the System.security.maxSimultaneousLogins, but I'd like to see one that's directed at the optimized traffic.

    Is there a way to limit the number of concurrent connections per source IP address within a given WAAS?
    I often see one IP address (ie. client) consuming more than their fair-share of available optimizable sessions.  I'd like to be able to set a maximum concurrent session limit based on a source IP at several of my remote sites.  Once the max (let's say 15 concurrent sessions per client) is hit, their next session will automatically go into passthrough.  Any new sessions associated with that client IP, up to that limit, would be eligible for optimization.
    I know there is a way to do limit this for management users via the System.security.maxSimultaneousLogins, but I'd like to see one that's directed at the optimized traffic.

  • Please help, how to send mails faster / send more mails per hour

    hello,
    in my application i am using mail sender class i have created to send mail to the users to participate in a survey. following is the code for it. i would like to know if there is anything wrong in it coz it takes to much time to send the mails it is taking 2 minustes to send 6 mails i.e 360 mails per hour only.
    following is how i instantiate the mail sender class and then generate a http link string dynamically as it is different for all the user.
    //////////class where mail sender is instantiated////////////////////
    try
    setConnection();
    st=con.createStatement();
    rs=st.executeQuery("select * from "+CNAME+"_campaign");                         
    String SurveyT = new String();
    while(rs.next())
         SurveyT = rs.getString(2);
    rs.close();
    rs=st.executeQuery("select * from "+CNAME+"_user");     
    ss = new MailSender();
    while(rs.next())
         String userid = rs.getString("userid");
         String password = rs.getString("password");
    StringBuffer message = new StringBuffer(BodyText.getText().trim());
    if(SurveyT.equals("invitational") || SurveyT.equals("single"))
                                            message.append( "\n" + "http://"+IPadd.getText().trim()+"/"+CNAME+"/servlet/login?username="+userid+"&passw="+password);
                                            ss.send(FromField.getText().trim(),userid,SmtpServerID.getText().trim(),MailSub.getText().trim(),message.toString());
    else if(SurveyT.equals("general"))
    message.append( "\n" + "http://"+IPadd.getText().trim()+"/"+CNAME+"/Index.html");
    ss.send(FromField.getText().trim(),userid,SmtpServerID.getText().trim(),MailSub.getText().trim(),message.toString());
    st.close();
    this.dispose();
    catch(SQLException sqlex)
    JOptionPane.showMessageDialog(null,sqlex.getMessage());
    //Mail Sender class/////////////////
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import javax.swing.*;
    public class MailSender
         String sentAddr,fromAddr,smtpServer,body,subject;
         public MailSender()
         //function send to send the mail
    public void send(String from,String to,String smtps,String subj,String messagetext)
              fromAddr=new String(from);
              sentAddr=new String(to);
              smtpServer=new String(smtps);
              body=new String(messagetext);
              subject=new String(subj);
              try
                   Properties props = System.getProperties();
                   props.put("mail.smtp.host",smtpServer);
         Session session = Session.getDefaultInstance(props,null);
    Message msg = new MimeMessage(session);
                   msg.setFrom(new InternetAddress(fromAddr));
    msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(sentAddr,false));
         msg.setSubject(subject);
         msg.setText(body);
    msg.setHeader("Survey","MailCheck");
    msg.setSentDate(new Date());
         Transport.send(msg);
         catch(MessagingException mex)
              JOptionPane.showMessageDialog(null,mex.getMessage());
    }

    Lots of variables here....Also my maths says only 180 per hour.... i.e. three a minute.
    1) you are using a database to get info from. What is the average response time of the DB server? Looks like you are doing one SQL then reading the result table but does the initial SQL take a while?
    2) how much data are you passing on to the SMTP server and how fast/slow is the link to that SMTP server? Work out the absolute max amount of data you can transfer over the link then get your average message size and work out a VERY theoretical Max number of messages a minute. Note that real life might approach 80% of this taking TCP/IP and SMTP overheads into account.
    3) What sort of load is the SMTP server under? If it's busy you will be only getting a fraction of whatever bandwidth is available. Depending on its design it may be trying to deliver the first message you sent it while you are still pumping more messages down to it. SMTP servers may limit the number of connections per minute from another machine in order to defeat a denial of service attack. Your code makes a connection per email so this may have relevence here.
    4) Raw horsepower always helps. When I write stuff to do things like this there is no nice GUI screen etc. Just basic Java that if it has to will write a log if something goes wrong. Maybe just maybe a counter on STD out to show it is still actually doing something. Keep the number of classes used down to the bare minimum. In the old days we used to spend days paring code to the bone - a skill somewhat lost these days.
    Hope this gives you some help in finding the bottleneck.
    Cheers,
    SH

  • Cisco IPS Concurrent session support in ips 4260 and 4270 sensor

    I am wondring that no document from Cisco IPS data sheets mention the concurrent session support in Cisco IPS 4200 series sensor. I am looking forward to any one who can advise about the subject.
    Thanks
    Nouman

    Hi.
    with IPS devices it's difficult to measure performance by # of connections per second since several factors count to the performance limit, including:
    1- packet size.
    2- object sizes per transaction
    3- transactions per second
    4- signatures enabled
    5- features enabled
    that why public documents try to make it more realistic by mentioning the transactional performance.
    here is a link mentioning concurrent connections for 4270:
    http://www.cisco.com/en/US/prod/collateral/vpndevc/ps5729/ps5713/ps4077/prod_white_paper0900aecd806e7283.html
    although the link mentiones 100k and 200k, but we've seen situations where we had a lot more connections with a smaller amount of signatures enabled.
    for the 4260 the public document only mentions the transactional performance.
    Regards,
    Fadi.
    If this answers your question please mark the thread as resolved.

  • Enable more than two concurrent sessions in Server 2012 r2

    Hello,
    I have setup RDS on Server 2012 R2 with the following roles:  (RD Connection Broker, RD Session Host, RD Gateway, RD Licensing, RD Web Access).  My sole purpose for this setup was to enable this server and only this server to allow more than 2
    concurrent RDP connections. 
    Here is some background information:
    1.  I will not be using RemoteApps or the Web access, I only only need to RDP into this server with more than 2 concurrent connections.
    2.  The licensing server is activated and I have a 50 user CAL installed on it. It has issued licenses to 3 users that have logged into the server while I was looking at the Web site features.  So I know the licensing is working properly.
    3.  This server does reside in a domain but I'm looking to have everything self contained on just the one box.  I do not want to put anything on my domain controller or a separate machine.
    4.  Everything looks to be fully configured in all of the roles.  I have no warnings about things not being configured correctly.
    5.  When I attempt to login with a 3rd user to this system, it still prompts to have me remove one of the previous 2 sessions.
    I know I must be looking right past the setting or it is in a very convoluted space, but how do I enable this server to allow more than 2 RDP sessions?  I've made the change in group policy for (Administrative Templates\Windows Components\Remote Desktop
    Services\Remote Desktop Session Host\Connections\Limit number of connections) to 50 but this still not seem to correct the problem.
    Thanks for any answers you can provide,
    Fred Levario

    Hi Fred,
    Thank you for posting in Windows Server Forum.
    Are you working with Domain or Workgroup environment?
    Because from your description seems you want everything on single server. To enable more than 2 RDP session for your server we need to Add RD Session Host and RD Licensing Role Services, configure the RD Licensing mode, and licensing server name in the local
    group policy, Activate the RD Licensing server and install RDS CALs using RD Licensing Manager.
    You can configure the Licensing mode and licensing server through GPO as per below path.
    Computer Configuration\ Administrative Templates\ Windows Components\ Remote Desktop Services\ Remote Desktop Session Host\ Licensing
    Use the specified Remote Desktop license servers - Provide the FQDN of the license servers to use
    Set the Remote Desktop licensing mode - Specify the ‘per user’ or ‘per device’ licensing types
    More information.
    RD Licensing Configuration on Windows Server 2012
    http://blogs.technet.com/b/askperf/archive/2013/09/20/rd-licensing-configuration-on-windows-server-2012.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Clustered WL 6.1 creates 2 server sessions per user

              It appears that WL 6.1 creates 2 HTTP sessions per user for a simple JSP object.
              It shows in "ADmin Console/mydomain> DefaultWebApp> Web Applications> DefaultWebApp>
              Servlet Runtimes":
              1 /count.jsp
              1 /*.jsp
              In a non-clustered environment this does not happen.
              Is that normal?
              

    I found the problem myself. For some reason WL did not like any special characters in the system password. I am not sure which ones are valid and which are not but I am avoiding them all right now.

  • Rows per hour

    Dear All,
    I have a table with 2 rows and one has varchar type data and the other is the time stamp (04/02/2013 19:44:40).
    Now I want to write a query to count number of rows per hour in the table with date ...strcutre is as follows :
    ddata varchar2(20)
    ddate date with timestamp ;
    Require the output as follows :
    March 28th 12 AM - 20
    March 28th 1 AM - 40
    March 28th 2 AM - 40
    where March 28th 12 AM is the date with time
    and 20 - number of rows in that date and in that hour..
    Please advise..

    Hi,
    936074 wrote:
    Dear All,
    I have a table with 2 rows and one has varchar type data and the other is the time stamp (04/02/2013 19:44:40).
    Now I want to write a query to count number of rows per hour in the table with date ...strcutre is as follows :
    Whenever you have a problem, post CREATE TABLE and INSERT statements for a little sample data, and the results you want from that data.
    >
    ddata varchar2(20)
    ddate date with timestamp ;What is this? DATE and TIMESTAMP are 2 different datatypes.
    If ddate is a DATE, then it is not a TIMESTAMP.
    If ddate is a TIMESTAMP, then it is not a DATE.
    Require the output as follows :
    March 28th 12 AM - 20
    March 28th 1 AM - 40
    March 28th 2 AM - 40
    where March 28th 12 AM is the date with time
    and 20 - number of rows in that date and in that hour..
    Please advise..Here's one way:
    SELECT    TRUNC (ddate, 'HH')           AS hour
    ,       COUNT (*)                AS cnt
    FROM       table_x
    GROUP BY  TRUNC (ddate, 'HH')
    ORDER BY  TRUNC (ddate, 'HH')     -- Or hour
    ;TRUNC (ddate) will return a DATE, regardless of whether ddate is a DATE or a TIMESTAMP.

  • What is the Maximum Number of Concurrent Sessions allowed on a Shared Exchange Mailbox ?

    Hi,
    I have a query that how many concurrent sessions are allowed on a Resource Mailbox ?
    E.g. I have a scenario in which i run a Helpdesk, and it has an email address ([email protected]), where company employees can email thier IT Issues/requests.
    Now I have hired say 50 Service Desk agents, now is it possible that all 50 can access the IThelpdesk mailbox at one time ? Are there any limits on the number of the concurrent sessions of the mailbox ? What are the the permutations and combinations in this
    case ?
    ** The mailbox is on Exchange Server 2003**
    Regards,
    Tojo Thankachan
    +91 7875039665

    Hi,
    Exchange Server 2003 SP1 imposes a restriction on the number of permitted MAPI sessions per user. By default, the maximum number of permitted MAPI sessions per user is set to a hexadecimal value of 0x20 after you apply Exchange Server 2003 SP1.
    Generally, Event ID 9646 will be logged in the application event log of your Exchange Server 2003 computer when a client opens many MAPI sessions. Here is a KB descripted the details of it:
    http://support.microsoft.com/kb/842022
    For more information about MAPI session limit, please refer to:
    http://technet.microsoft.com/en-us/library/dd159906(v=exchg.80).aspx
    Thanks,
    Winnie Liang
    TechNet Community Support

  • VPN 3005 Peak Concurrent Sessions

    Hi
    I have an old VPN 3005 concentrator that need replacement. At the webinterface under monitoring -> sessions I can see that my Peak Concurrent Sessions is 19. The question is if its 19 sessions peak since last reboot or a specefic time period?
    I've 200 vpn session available in the 3005, i planning to replace it with an ASA 5505 with max 25 VPN sessions.
    Best Regards, Steffen.              

    The peak concurrent sessions count from the last reboot or reset on.
    If you go for the ASA 5505, you need the Security-Plus-Version, only that supports 25 Users.
    Sent from Cisco Technical Support iPad App

  • Limit the number of session per user in the Wired dot1x environment with ISE 1.2

    Hello,
    I need to check if there is any configuration/workaround to limit the number of sessions/access per user in the Wired dot1x configuration.
    I need to check if this feature is available or not to solve the following scenario:
    I have 2 SW ports configured to use dot1x authentication with ISE 1.2 server.
    If user A connects to the 1st port and authenticated then he will placed on a VLAN based on the authorization profile.
    The case, that I need to deny the same user to connect on a different machine with the same credentials.
    The ISE itself does not have this feature currently,  the only feature available is to limit the number of sessions for the guest user.
    Is there any workaround on the Cisco switches to solve this? Cisco WLC has this feature and for the VPN we can limit the number of sessions also from the ASA itself.
    Thanks.

    limit number of session per user using wired dot1x is not available in 1.3

  • Whats the limit of max no of concurrent sessions in oracle9i database

    Hi,
    pls let me know whats the limit of max no of concurrent sessions in oracle9i database .
    Thanks.

    Hi,
    Oracle no longer offers licensing by the number of concurrent sessions.
    There used to be 2 initialization parameters : - LICENSE_MAX_SESSIONS and LICENSE_SESSIONS_WARNING . these have been deprecated.
    Therefore Jaffer's statements stands.....
    Cheers...rCube.

  • How much data does the apple maps app use per hour ?

    hello,
    i would like to know, if somebody could give me a rough number of how much the Apple Maps app uses per hour for navigation ?

    Apple's Maps app uses vector graphics, so it doesn't have to download data everytime your view changes, & also has an offline mode...you can download quite a large area over WiFi & then use this cache to navigate.
    So, I really wouldn't worry too much about its data usage. Most tests I've read indicate it uses about 80% less data than Google Maps.

  • 12GB per hour of HD footage instead of 29GB?

    Hi,
    I recently switched over to HD camera (Sony HDR-HC1E). This is a DV tape cam.
    Im editing in imovie 6.0.4.
    I always back up my files by exporting via imovie "full quality" when i used to do this with SD content i would get a DV file as result, now on HD i get a .mov file.
    I used to get a 12GB file for a 60min movie. Now with HD i am getting 29GB per hour.
    I hear other people talking about 12GB per hour for HD content.
    Can anyone please tell me how this is possible?
    I am going through external hard drives at lightning speed!
    Thanks
    Dave

    Hi Dave
    There's actually a big difference between a DV stream (whether recorded to tape or file) and a .mov file.
    DV or HDV footage is recorded at 25Mbps - megabits per second. This translates to 90000Mb per hour, divide by 8 to convert bits to bytes, and you get 11.2GB/hour. That's constant, whether on the tape or saved as a DV file. Note that DV is pretty compressed.
    Now, when iMovie (or any other video conversion program) saves a .mov file, it's no longer a DV stream. It can be any of the codecs (video formats) that your program supports, and there are a wide range of codecs for both SD and HD. These different codecs will use different file sizes depending on their level of compression. (Just like mp3, a compressed audio codec, vs AIFF, an uncompressed codec.)
    You can choose to optimize video on import or choose a smaller format on export (large, rather than full size) which will reduce the frame size of your footage, which may be a good solution for you, depending on what you ultimately plan to do with the material. (Edit: actually, not with iMovie 6 - thanks, Karsten Newer versions of iMovie will help you there. )
    Matt
    Message was edited by: Matt Clifton

  • What setting is 'DVD quality' widescreen - ie about 3gb per hour?

    I have videod (isn't that a such a quaint 20th century word for the podcast age?) a conference and I want to archive the footage to store on a DVD for later reediting.
    The "full quality" setting is massive, I only have 90 mins, but a 20 min clip takes up over 10Gb
    The 'CD-rom quality' is just not not dvd quality.
    (I am using iMovie 06 btw, i will move onto 08 when it is finished)
    Ideally, I would just burn the whole lot raw with iDVD and import it again if i need to reedit - but (for copyright as opposed to technical reasons i suppose) we can't just put a dvd in the slot and rip it like we can an audio cd in iTunes. I have tried the workarounds - but none of them worked for me.
    Anyway, I digress: What setting is 'DVD quality' widescreen - ie about 3gb per hour?

    Hi there.
    *Keep the quality*
    0nce you have compressed data - you can't get the original quality back - so store as full quality as possible - and in several formats so there is always a backup.
    Media
    data cds don't hold that much - 700mb - so forget about them for quality productions and archiving
    dvd-roms hold much more - 4,700mb (you can get dual layer ones that double it)
    *'share' settings*
    Now, you have 2 options for saving the movie;
    1. as a file on a DVD-Rom (a compact .mov or a massive.dv)
    2. as a proper playable DVD (iDVD)
    If the "full quality" iM setting is too big a file for a dvd-rom (and you will be lucky to get 10 mins of footage in 4.7gb), then you could 'iDVD' it and that way you will get a good quality movie up to nearly 2 hours on a disc disc that can be played on most machines (and could even be ripped back into an editable form using third party software)
    Alternatively, save it using 'expert settings' listed above and you will probably get good enough results for a longer film without having to burn it as a playable (but uneditable) dvd.
    Bear in mind that unless you are using a pro camera, you may not notice the much difference with the higher settings.
    Good luck - seeing your work on the big screen is a blast!

Maybe you are looking for