Sql Max Simultaneous calls

Hello
I have a table with name,startdate,enddate and I would like to know for today what was the max Simultaneous calls there were.
ex
Danny,'14-JUL-2008 14:35:21','14-JUL-2008 14:35:29'
Danny,'14-JUL-2008 14:35:22','14-JUL-2008 14:35:23'
Danny,'14-JUL-2008 14:35:20','14-JUL-2008 14:35:28'

Based on test data from Isotope, maybe that can give you some ideas:
SQL> with t as (
  2  select 'Danny' as name,
  3         to_date('14-JUL-2008 11:35:21','DD-MON-YYYY HH24:MI:SS') as start_date,
  4         to_date('14-JUL-2008 11:35:25','DD-MON-YYYY HH24:MI:SS') as end_date
  5  from dual union all
  6  select 'Danny' as name,
  7         to_date('14-JUL-2008 11:35:22','DD-MON-YYYY HH24:MI:SS'),
  8         to_date('14-JUL-2008 11:35:23','DD-MON-YYYY HH24:MI:SS')
  9  from dual union all
10  select 'Danny' as name,
11         to_date('14-JUL-2008 11:35:26','DD-MON-YYYY HH24:MI:SS'),
12         to_date('14-JUL-2008 11:35:29','DD-MON-YYYY HH24:MI:SS')
13  from dual union all
14  select 'Danny' as name,
15         to_date('14-JUL-2008 11:35:28','DD-MON-YYYY HH24:MI:SS'),
16         to_date('14-JUL-2008 11:35:37','DD-MON-YYYY HH24:MI:SS')
17  from dual union all
18  select 'Danny' as name,
19         to_date('14-JUL-2008 14:35:21','DD-MON-YYYY HH24:MI:SS') ,
20         to_date('14-JUL-2008 14:35:29','DD-MON-YYYY HH24:MI:SS')
21  from dual union all
22  select 'Danny' as name,
23         to_date('14-JUL-2008 14:35:22','DD-MON-YYYY HH24:MI:SS'),
24         to_date('14-JUL-2008 14:35:23','DD-MON-YYYY HH24:MI:SS')
25  from dual union all
26  select 'Danny' as name,
27         to_date('14-JUL-2008 14:35:20','DD-MON-YYYY HH24:MI:SS'),
28         to_date('14-JUL-2008 14:35:28','DD-MON-YYYY HH24:MI:SS')
29  from dual)
30  -- End of test data
31  select max(count(*))
32    from (select name,
33                 start_date,
34                 end_date,
35                 sum(interval_change) over(partition by name order by end_date, start_date) interval_no
36            from (select name,
37                         start_date,
38                         end_date,
39                         case
40                           when (lag(end_date)
41                                 over(partition by name order by end_date,
42                                      start_date) - start_date) > 0 then
43                            0
44                           else
45                            1
46                         end interval_change
47                    from t))
48   group by name, interval_no
49  ;
MAX(COUNT(*))
            3You can as well search this forum for term overlap to see another approaches.
Best regards
Maxim

Similar Messages

  • How to find the number simultaneous call at a given moment on UCCX ?

    Hello,
    I would to know how to find the number simultaneous call at a given moment on UCCX ?
    it's on UCCX or UCCX RTMT, I don't know thanks a lot for your help.
    Aubert

    Hi Gergely,
    I should made a report on the number simultaneous call at a given moment on UCC on the server (all calls on the server)..

  • Conversion of java Array to oracle SQL Array while calling Stored Procedure

    How java Array can be converted to oracle SQL array while calling Stored procedure with callable statement.
    i.e java Array ---> Sql Array in Oracle while setting the datatypes to callable statement arguments.

    Look at:
    http://forum.java.sun.com/thread.jsp?forum=48&thread=376735&tstart=0&trange=15
    Paul

  • Java.sql.SQLException: Cannot call rollback when using distributed transac

    Hi all,
    I am getting the below exception trace when I tried to rollback the data in WLI.I am getting the db connection Object from DBControl.
    java.sql.SQLException: Cannot call rollback when using distributed transactions
    at weblogic.jdbc.wrapper.JTAConnection.rollback(JTAConnection.java:313)
    at controls.DailyFeedFileJavaImpl.excuteBatch(DailyFeedFileJavaImpl.jcs:
    904)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java
    :371)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:42
    3)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:39
    6)
    at com.bea.wlw.runtime.jcs.container.JcsProxy.invoke(JcsProxy.java:381)
    at $Proxy59.excuteBatch(Unknown Source)
    at QnbDailyFeedProcess.feedFileJavaObjExcuteBatch(QnbDailyFeedProcess.jp
    d:274)
    at QnbDailyFeedProcess_wf$ImplControlSend15.invoke(QnbDailyFeedProcess_w
    f.java:146)
    at com.bea.wli.bpm.runtime.Perform.execute(Perform.java:32)
    at com.bea.wli.bpm.runtime.ProcessState.executeInternalCallback(ProcessS
    tate.java:726)
    at QnbDailyFeedProcess_wf$_ProcessState.executeInternalCallback(QnbDaily
    FeedProcess_wf.java:311)
    at com.bea.wli.bpm.runtime.ProcessState.executeInternalCallback(ProcessS
    tate.java:685)
    at com.bea.wli.bpm.runtime.ProcessState.processNodeOrchestration(Process
    State.java:681)
    at sun.reflect.GeneratedMethodAccessor193.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java
    :371)
    at com.bea.wli.bpm.runtime.JpdInternalDispMethod.invoke(JpdInternalDispM
    ethod.java:87)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:42
    3)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:39
    6)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:24

    shanmuga gomathi nayagam wrote:
    Hi all,
    I am getting the below exception trace when I tried to rollback the data in WLI.I am getting the db connection Object from DBControl.
    java.sql.SQLException: Cannot call rollback when using distributed transactions
    at weblogic.jdbc.wrapper.JTAConnection.rollback(JTAConnection.java:313)Hi, Ideally, you should obtain the Transaction object and roll it back/ set it
    to rollback only.
    Joe
    at controls.DailyFeedFileJavaImpl.excuteBatch(DailyFeedFileJavaImpl.jcs:
    904)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java
    :371)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:42
    3)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:39
    6)
    at com.bea.wlw.runtime.jcs.container.JcsProxy.invoke(JcsProxy.java:381)
    at $Proxy59.excuteBatch(Unknown Source)
    at QnbDailyFeedProcess.feedFileJavaObjExcuteBatch(QnbDailyFeedProcess.jp
    d:274)
    at QnbDailyFeedProcess_wf$ImplControlSend15.invoke(QnbDailyFeedProcess_w
    f.java:146)
    at com.bea.wli.bpm.runtime.Perform.execute(Perform.java:32)
    at com.bea.wli.bpm.runtime.ProcessState.executeInternalCallback(ProcessS
    tate.java:726)
    at QnbDailyFeedProcess_wf$_ProcessState.executeInternalCallback(QnbDaily
    FeedProcess_wf.java:311)
    at com.bea.wli.bpm.runtime.ProcessState.executeInternalCallback(ProcessS
    tate.java:685)
    at com.bea.wli.bpm.runtime.ProcessState.processNodeOrchestration(Process
    State.java:681)
    at sun.reflect.GeneratedMethodAccessor193.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.runtime.core.dispatcher.DispMethod.invoke(DispMethod.java
    :371)
    at com.bea.wli.bpm.runtime.JpdInternalDispMethod.invoke(JpdInternalDispM
    ethod.java:87)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:42
    3)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:39
    6)
    at com.bea.wlw.runtime.core.container.Invocable.invoke(Invocable.java:24

  • Improve built in SQL MAX function

    Hi
    I am trying to improve the performance of the built in SQL max function. right now searching through over 500,000 rows takes lot of time which can be reduced. Can anyone suggest me something which would be helpful in this or may be give me a link if it has been discussed before?
    Anything is appreciated.
    Thanks

    Tolls wrote:
    Um...considering you were planning on improving on the MAX function, I sort of thought you might actually know how to use it. Otherwise how would you know it was running slowly?thanks Tolls i'd figured it out right after i posted it. i guess i was too excited after reading (you got it in milliseconds) that posted right away without doing anything myself..but yeah it did make it super fast..thanks a lot for your help and time..
    cotton.m wrote:
    d_khakh wrote:
    hi tolls thanks for getting back
    could u explain how did u do that? i found out how to create index..i have the following statement:
    create index col on table2 (col2);
    cud u tell me how to go from here and find the max in col2..thanks again for ur help?
    sigh
    Where to go from here? Just execute your damn query. If you really did create the index on the right column and your database isn't stupid and there isn't a lot more to this problem then you told us about like some where clauses then that's it. She's as fast as she's going to get.
    And remember, it's impolite to converse in a public forum while chewing your cud. Unless of course you actually meant "could" but were just too lazy to type it. Don't be lazy, use full words. Thanks.like i said above..i figured it out after some time.
    i wasn't being lazy ..thats msn talk..i thought people understood that..anyways your point noted too.

  • Use Chains, or PL/SQL Block of calls.

    I currently have a half dozen cron jobs that kick off different batches of processing. Originally, these were generally a sequence of C programs that did different operations (fetch student info from student record system and load into IdM system, process directory changes, etc). Over the years, most of the program logic has been rewritten as PL/SQL packages and the cron jobs basically drop into SQL*PLUS and do things like:
    prompt "Do Spbpers delta"
    execute simon.employee_maint.Spbpers_Delta;
    commit;
    prompt "Do People.Update_From_Employees"
    execute simon.People_Maint.Update_From_Employees;
    commit;
    prompt "Do SGBSTDN_Full"
    execute Simon.Bstudent_Maint.Sgbstdn_Full;
    commit;
    prompt "Do SPRIDEN_Full (Student)"
    execute Simon.Bstudent_Maint.Spriden_Full;
    These procedures generally connect to other Oracle databases and get or push data around, and are hitting a number of different databases. The biggest of these scripts has 45 execute statements in it. (This script started in 1992.....)
    Anyway, we are getting some issues with and it is time to clean things up. This is my first foray into Scheduler and I am hoping to get some philosophical guidance on how best I should restructure things. One obvious thing, is to break up the big script into a couple of smaller ones. In some cases, order matters and in other, it doesn't - although I would prefer not to have several jobs hitting the admin system at the same time.
    I have been playing a bit with the scheduler, mostly via the EM web interface, and have come up with a few questions - some pretty specific, others more stylistic.
    1) Procedures as jobs - it seemed to want stand alone procedures, and NOT procedures that were part of a package. True?
    2) How fine grained should I make the steps in a chain? For example, I call 5 procedures in the same package (student_maint), each to to some specific aspect of the processing (each represents a different source table). Should I create 5 programs, and make them 5 steps in the chain, or just have 5 calls in a PL/SQL block in one program?
    3) I don't care what order these 5 run in, but I don't want more than one running at once - thoughts on approaches to this?
    4) I will on occasion want to turn off sets of these tasks (like when the remote system is going to be down for an upgrade) - how best to structure things to make this easy to do (and how do I do this?)
    The Scheduler system seems to be a very rich and flexible environment, with a lot more options and features than I need, but I feel I should do more than just scheduling a single program with 45 procedure calls in it....

    Hi,
    I can try to answer some of these questions
    1) Procedures as jobs - it seemed to want stand alone procedures, and NOT procedures that were part of a package. True?
    False. The EM interface does have this restriction, but if you use dbms_scheduler directly there is no such restrisction. Even in the EM interface you can workaround this by using a PL/SQL block which calls the package procedure (although argument handling is a little less flexible this way).
    2) How fine grained should I make the steps in a chain? For example, I call 5 procedures in the same package (student_maint), each to to some specific aspect of the processing (each represents a different source table). Should I create 5 programs, and make them 5 steps in the chain, or just have 5 calls in a PL/SQL block in one program?
    The answer to this depends on what you are doing. If the 5 steps run serially one after the other, using one pl/sql block may be easier. If you want some pieces to run in parallel, then creating a simple chain is better. A bit more effort spent setting up the chain will result in much faster execution times if you can run pieces in parallel.
    3) I don't care what order these 5 run in, but I don't want more than one running at once - thoughts on approaches to this?
    This has come up on the forum a few times and there are basically two different approaches. One is to use dbms_lock to ensure that only one runs at a time. This is the easiest way and the way that I recommend.
    The other way is to set up a job class with a resource consumer group and put into effect a resource consumer plan that specifies that only one session from that resource consumer group can run at a time. This is easily extensible to cases where you want 2 or more running at a time from a certain job class (which dbms_lock doesn't support).
    Code on how to set this up and more discussion is located here
    Run Jobs One After Another
    4) I will on occasion want to turn off sets of these tasks (like when the remote system is going to be down for an upgrade) - how best to structure things to make this easy to do (and how do I do this?)
    Jobs and programs can be disabled. But if a job or chain tries to run a disabled program it will result in a failure (though it will be retried if you say that the job can be restarted).
    [ 5) ] The Scheduler system seems to be a very rich and flexible environment, with a lot more options and features than I need, but I feel I should do more than just scheduling a single program with 45 procedure calls in it....
    The Scheduler was intended to accommodate a wide range of usage from simple one-off background tasks to complex sequences of interrelated tasks. As with any other software development you should use it in the simplest way possible that does what you need it to do.
    Hope this helps. Feel free to post any further questions.
    -Ravi

  • Simultaneously call not working properly

    Dear all,
    I have some problems regarding lync 2013 simultaneously call. Some users have turn off simultaneusely call amny days ago but the call still call both lync phone and their mobile. I cannot find why this mat happens. Any help is apriciated

    This is not the solution and this issue shouldn't be happening in the 1st place. Once in a while if the user data get messed up and start acting wired, this will be the 1st step to troubleshoot. I assume that this is one off event. Is there any other users
    have this issue?
    http://thamaraw.com

  • Simultaneous call seems to be on even though it shows off

    Hi,
    I have a client where the simultaneous call is in effect. But when I check the user's call forwarding setting it shows off. Does anyone know of a way to fix it or if you are more technical can you perhaps point me to the database table where these entries
    are kept.
    Thanks,

    Hi,
    Would you please elaborate your environment (have HLB or not)?
    please try to enable simultaneous and enter other number. Then turn off it to check if this this it works.
    Please try to disable the user and then enable it again.
    If you deploy HLB for FE Pool, please try to create a new cookie persistence profile based on the default cookie persistence profile, and then test the issue again.
    Here is a similar case may help you:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/c454357c-9804-4965-bef4-504677de265e/simultaneous-ring-lync-mobility-double-sip-invite?forum=ocsmobility
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • "Max simultaneous tempalate requests" is shown as "-1", set and restart yields unstable server

    After CHF4 applied to CF901 (standard) and updated to run JRE7 on Windows server 2008, "Max simultaneous tempalate requests" is shown as "-1". 
    We checked the neo-runtime.xml and all of the limits look normal.  We have no idea where does that "-1" come from.
    We try setting it to a sensible value (i.e. 25) and then restart, and the CF server becomes very unstable.  We couldn't even log into CF Administrator.  The other live CF site would go down for a few minutes, and up again for the next few minutes.  CPU activity is close to 0, RAM usage is stable.  CF server logs shows nothing wrong, but http log did not get requests from IIS when it's down.
    What's wrong?
    Bug report filed: https://bugbase.adobe.com/index.cfm?event=bug&id=3528480

    Not a good plan, IMHO.
    Once that $cred object is created, the user can discover the password:
    $cred.GetNetworkCredential().password
    I think you'd be much better off creating a constrained, delegated remote session endpoint on a server somewhere, using the admin credentials as the RunAs account, and then creating some functions in the session to restart servers or services and limit the
    session to just running those functions.  You can add whatever logging you want as part of the functions, and audit using the Powershell event logs on the server.
    http://blogs.technet.com/b/heyscriptingguy/archive/2014/04/02/build-constrained-powershell-endpoint-using-configuration-file.aspx
    Give the users you want to be able to perform server and service restarts Execute permssions for the endpoint.
    They won't have any knowledge of the admin account that's being used, and can't do anything you haven't given then a function for.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • SQL task fails calling procedure but only change was adding an insert

    Have a SQL task that calls a procedure.  Works fine until I added a block of code that does an insert.  Then I get an error such as this
    ssis procedure Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly
    What the heck?  The parameters havent changed and it works fine when called directly in SSMS.  Its not a permissions issue either, checked that already.
    The statement I added is doing an INSERT INTO SELECT FROM
    Works fine in SSMS.  Is this another one of those issues where there are too many select statements and SSIS is getting confused?  

    Disregard.  I should have paid closer attention to the execution results in the package, as there were actually 2 errors.  It was the first error that was the culprit.  Once I fixed that the other error went away.

  • IOS 7 Facetime - How to prevent from simultaneously calling 2 devices?

    Facetime on my wife's phone (iPhone 4) simultaneously calls my phone and my iPad every time.
    I use my phone no for Facetime on my phone and my email id on my ipad and short of getting her to store them under different contacts, can't think of a way to resolve this...

    I have the same problem.  I have a personal iPhone and a work issued iPhone, both numbers are listed in family/friend contacts so when they initiate a facetime call to me (no ability to pick which phone number), both my personal and work phones ring simultaneously.  It seems like they should be able to choose which number to place a facetime call to (or email address for that matter).  Please help!!  This is ridiculous.

  • Linksys PAP2T G711 codec on simultaneous calls

    Hi, PAP2T is using g711 on simultaneous call. I had forced the Line 1 & Line 2 to use g729 & g723 respectively. But still when u make the second call, (while first line is on call) it comes to the switch with g711.
    Since the PAP2T used from asian country, g711 could not get that much bandwidth. It connects but quality is very poor.
    Is there a way that I can configure to make linksys pap2t not to use g711 at any point of time. If anybody have a solution, please advise me..
    Product Name:PAP2T
    Software Version:5.1.1(LS)
    thanks

    Go to page Line 1 or line 2. At the bottom you'll find dffernt protocol. Select g729 af force PAP2 to only ue this potocol by deselcting gthe others and y selecting only use prefer protocol.
    have yo try to call the second line when the first is in use ? i thnk it's does'nt work !
    Regards

  • Set max simultaneous downloads, max entires in downloads list

    When the christ is firefox going to have a set max simultaneous downloads option in about:config at the very least? Also since there's an issue with saving files and the downloads list why isn't there an option to set max number of entires in the downloads manager list? thanks.

    What then is the current position ? Is it settable within prefs but not from the User Interface. https://developer.mozilla.org/en/Mozilla_Networking_Preferences

  • Max simultaneous On-Net calls supported by CUCM 4.x

    Does anyone have any information on this?

    I'm not sure Cisco quantifies this. They do give the following numbers for 4.x.
    Maximum of 7500 IP phones per Cisco CallManager server (configuration-dependent)
    Maximum of 100,000 busy-hour call completions (BHCCs) per Cisco CallManager server (configuration-dependent)
    Eight Cisco CallManager servers per cluster
    Maximum of 250,000 BHCCs per Cisco CallManager cluster (configuration-dependent)
    Maximum of 30,000 IP phones per cluster (configuration-dependent)
    From this doc:
    http://www.cisco.com/en/US/prod/collateral/voicesw/ps6788/vcallcon/ps556/product_data_sheet0900aecd801979f0.html
    Hope this helps.
    Brandon

  • Fatal PL/SQL error when calling imported java code

    Hi,
    I'm developing reports using Report builder 9.0.2 under Win2k and I have the following problem:
    I select data into fieds A and B.
    I created 2 formulas fA and fB that call a PLSQL function from my report in order to convert A and B based on other data.
    I also have a formula fC which is actually fA-fB
    I have 3 summary columns on fA, fB and fC. I don't display any of those columns on the report but I created other formulas columns fA_Fmt, fB_Fmt,... to format the values using an imported java class.
    This java class is static.
    so fA_Fmt looks like this:
    function fA_Fmt return Char is
    begin
    return MyJavaClassPackageName.formatValue( :fA, report_global_variable );
    end;
    When I run my report under report builder, I get a REP-1401 report error like "fA_Fmt formula: fatal PL/SQL error occured
    ORA-39565: Message not found, product RDBMS, facility: ORA"
    This happens randomly on any of the formulas.
    Sometimes I even get a java.lang.StaskOverFlowError and I have to close and restart report builder.
    I've tried to debug and I even caught the exception.
    The parameters passed to the java method are fine.
    The exception number is 105101 and after a couple of exceptions like this, visual C++ runtime library tells me there's a runtime error in rwbuilder.exe and the application crashes.
    I don't know if it's Java, if it's Report builder or even Win2k.
    Anyway, I'm stuck with that and I don't know what to do to fix it.
    Any idea or work around?
    Thanks
    Manu

    Hi Manu
    I suspect the line given below:
    return MyJavaClassPackageName.formatValue( :fA, report_global_variable );
    Do not pass report values directly. Instead, assign it to a temporary variable and try again. See if this works:
    temp1 <Variable_Type>;
    temp2 <Variable_Type>;
    temp1 := :fA;
    temp2 := report_global_variable;
    return MyJavaClassPackageName.formatValue( temp1, temp2 );
    Note: You may also hit Fatal PL/SQL errors if the arguments happen to be invalid.
    Regards
    Sripathy

Maybe you are looking for

  • Alarm status drawing iow: recolour JInternalFrame components

    Greetings, Please have a look at this picture. It's a low res snapshot of a few quite complicated components. Most of the functionality isn't visible nor relevant in the example. What you're looking at is a real time process of some sort. Things can

  • IPhone 6plus apps stopped working after 8.1.1 update

    updated my new iPhone 6 plus to 8.1.1 and the maps app won't work just crashes everytime it's opened so everything that uses a link to it eg:- find my friend, find my phone, Argos app facebook if someone puts their location on which shows the map all

  • Jambox connection issues

    I'm having serious problems syncing a mini Jambox with my Macbook Pro through bluetooth. The moment the Jambox is set up as a bluetooth device, it cripples the whole machine, making it impossible to do anything-even removing the device from the bluet

  • Apple TV wont display after waking from sleep

    I recently bought a Apple TV for Christmas.  I hooked it up correctly and have been streaming music and videos from my computer as well as using Netflix.  However, once my Apple TV goes to sleep for the night and I try to restart it in the a.m.  the

  • Bit Depth Setting?

    I feel like I'm missing something that's very obvious-- sorry if I am. How do I set the bit depth for a new audio file? I want to create 24 bit audio files, but as soon as I create a new file, STP automatically makes it 16bit. The only setting I've s