Traversing through dates

Hi There,
Suppose I have a table in the following format,
id , start_dt, end_dt, transaction_dt.
Basically I will have a transaction for a contract whose start date and end date are start_dt and end_dt respectively, for a transaction date which is txn_dt. So I want to find out all the dates between start_dt and end_dt for which there is no transaction. Can you please suggest me a query or a logic?
Thanks,
JJ

As Rob already shows, the connect by sample seems not to be restrictive enough:
SQL>
SQL> with t
  2  as
  3  (
  4       select 1 id, to_date('1/2/2007','dd-mm-yyyy') st, to_date('7/2/2007','dd-mm-yyyy') ed, to_date('1/2/2007','dd-mm-yyyy') tx from dual
  5       union all
  6       select 2 id, to_date('1/2/2007','dd-mm-yyyy') , to_date('7/2/2007','dd-mm-yyyy') , to_date('2/2/2007','dd-mm-yyyy') from dual
  7       union all
  8       select 3 id, to_date('1/2/2007','dd-mm-yyyy') , to_date('7/2/2007','dd-mm-yyyy') , to_date('3/2/2007','dd-mm-yyyy') from dual
  9       union all
10       select 4 id, to_date('1/2/2007','dd-mm-yyyy') , to_date('7/2/2007','dd-mm-yyyy') , to_date('7/2/2007','dd-mm-yyyy') from dual
11       union all
12       select 5 as id, date '2008-01-01', date '2008-01-03', date '2008-01-02' from dual
13  )
14  select nt.dt
15    from t,
16           (select t1.st + (level-1) dt
17         from dual,(select min(st) st,max(ed) ed from t group by st,ed) t1
18       connect by level <= (t1.ed - t1.st)+1) nt
19   where t.tx(+) = nt.dt
20       and t.tx is null
21  order by nt.dt
22  /
DT
04.02.07
04.02.07
04.02.07
04.02.07
04.02.07
04.02.07
04.02.07
04.02.07
05.02.07
05.02.07
05.02.07
05.02.07
05.02.07
05.02.07
05.02.07
05.02.07
06.02.07
06.02.07
06.02.07
06.02.07
06.02.07
06.02.07
06.02.07
06.02.07
01.01.08
03.01.08
03.01.08
03.01.08
03.01.08
29 rows selected.This seems to work however using a row identifier and the DBMS_RANDOM trick to prevent the loop cycle detection:
SQL>
SQL> with mytable as (
  2  select 1 as id, date '2007-02-01' as start_dt, date '2007-02-07' as end_dt, date '2007-02-01' as transaction_dt from dual union all
  3  select 2, date '2007-02-01', date '2007-02-07', date '2007-02-02' from dual union all
  4  select 3, date '2007-02-01', date '2007-02-07', date '2007-02-03' from dual union all
  5  select 4, date '2007-02-01', date '2007-02-07', date '2007-02-07' from dual union all
  6  select 5 as id, date '2008-01-01' as start_dt, date '2008-01-03' as end_dt, date '2008-01-02' as transaction_dt from dual),
  7  distinct_periods1 as
  8  ( select distinct start_dt startdate
  9           , end_dt enddate
10        from mytable
11  ),
12  distinct_periods as
13  ( select rownum as rowno,
14             startdate
15           , enddate
16        from distinct_periods1
17  )
18  , all_days as
19  ( select startdate
20           , enddate
21           , startdate + level - 1 as day
22        from distinct_periods
23        connect by rowno = prior rowno
24        and prior dbms_random.value is not null
25        and level <= enddate - startdate + 1
26  )
27  select
28  startdate,
29  enddate,
30  day
31  from all_days
32  minus
33  select start_dt,end_dt,transaction_dt
34  from mytable;
STARTDAT ENDDATE  DAY
01.02.07 07.02.07 04.02.07
01.02.07 07.02.07 05.02.07
01.02.07 07.02.07 06.02.07
01.01.08 03.01.08 01.01.08
01.01.08 03.01.08 03.01.08Regards,
Randolf
Oracle related stuff blog:
http://oracle-randolf.blogspot.com/
SQLTools++ for Oracle:
http://www.sqltools-plusplus.org:7676/
http://sourceforge.net/projects/sqlt-pp/

Similar Messages

  • Code to traverse through wpfgrid and click on the wpfimage for the corresponding in Coded UI

    Hi,
    I have a wpf application which has wpftable having columns as name, type, created date, modified date and an image. (On click on this image, edit and delete button will be displayed for each row).
    I am trying to do edit and delete operations for a row by giving input as the name as name is unique. I need coded ui test method  to traverse through this wpftable identify the row with the name provided, click on the image and select edit or delete
    options.
    Please refer the screenshot below:
    Please anyone provided me code for this in c# for coded ui test. Because for the wpfimage properties added in my respository are very less. Hence facing this issue.
    Thanks in advance.
    Regards,
    G.Madhavi

    Sure Edward.
    Below is the method I have used. As I have already described the input for my method is the WpfTable, the name for which I need to perform edit or delete options and columnindex (this is used because I need to click on the image. And I have such similar
    tables across the application and want to reuse the method. The rowindex changes based on the input name but the columnindex would be same).
    Please refer the screenshot above forbetter understanding.
    public boolVerifyEditing(WpfTableTargetTable, stringName, string columnIndex)
                 bool searchRes = false;
                 int rowIndex = 0;
                 foreach (WpfRow UIRow in TargetTable.Rows)
                     foreach (UITestControl cell in UIRow.Cells as UITestControlCollection)
                         var cellcontents = cell.GetChildren();
                         foreach (var content in cellcontents)
                             WpfText wpfText = content as WpfText;
                            if (wpfText!= null && wpfText.DisplayText.Equals(Name, StringComparison.OrdinalIgnoreCase))
                                 cell.Container = TargetTable;
                                cell.SearchProperties.Add(WpfCell.PropertyNames.RowIndex, rowIndex.ToString());
                                cell.SearchProperties.Add(WpfCell.PropertyNames.ColumnIndex, columnIndex);
                                var contents = cell.GetChildren();
                                foreach (var child in contents)
                                     WpfImage image = child as WpfImage;
                                     Mouse.Click(image);
                                     searchRes = true;
                                     break;
                                 if (searchRes)
                                     break;
                         if (searchRes)
                             break;
                     if (searchRes)
                         break;
                     rowIndex++;
                 return searchRes;
    I will use this method, which clicks on the row for which I need to perform edit or delete operations. Then I click on Edit or delete button.
    This suffices my requirement. Hope this helpothershaving same issue.
    Regards,
    Madhavi

  • Urgent: how to traverse through records using ADF ReadOnly Form

    Hi Guru's,
    I am new to ADF.
    I am having an requirement where i need to show the records in "ADF Read Only Form" where my query fetch more than one record, now i want to traverse through all the record as we do in ADF Table. How can i achieve this using ADF Readonly Form.
    Please suggest me on urgent basis.
    Thanks
    SPC

    Hi,
    What is your JDev version? Did you try setting the rowSelection property of the table?
    Ex :
      <af:table value="#{bindings.EmpView1.collectionModel}" var="row" rows="#{bindings.EmpView1.rangeSize}"
                              emptyText="#{bindings.EmpView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                              fetchSize="#{bindings.EmpView1.rangeSize}" rowBandingInterval="0"
                              selectedRowKeys="#{bindings.EmpView1.collectionModel.selectedRow}"
                              selectionListener="#{bindings.EmpView1.collectionModel.makeCurrent}" rowSelection="single"
                              id="t1">-Arun

  • MaxDB backup problem through Data protector

    When I start the Online MaxDB database backup through Data Protector GUI the backup fails with error as below,
    Normal] From: BSM@ttcsap10 "MAXDB_Online" Time: 6/17/10 4:30:49 AM
    OB2BAR application on "ttcmaxdr" successfully started.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:50
    Executing the dbmcli command: `user_logon'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:50
    Executing the dbmcli command: `dbm_configset -raw set_variable_1 OB2OPTS=""'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:50
    Executing the dbmcli command: `dbm_configset -raw set_variable_2 OB2APPNAME=MAX'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:50
    Executing the dbmcli command: `dbm_configset -raw set_variable_3 OB2BARHOSTNAME=ttcmaxdr'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:50
    Executing the dbmcli command: `dbm_configset -raw set_variable_4 TimeoutWaitFiles=30'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:51
    Executing the dbmcli command: `dbm_configset -raw BSI_ENV /var/opt/omni/tmp/MAX.bsi_env'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:51
    Executing the dbmcli command: `medium_put BACKDP-Data[2]/1 /var/opt/omni/tmp/MAX.BACKDP-Data[2].1 PIPE DATA 0 8'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:51
    Executing the dbmcli command: `medium_put BACKDP-Data[2]/2 /var/opt/omni/tmp/MAX.BACKDP-Data[2].2 PIPE DATA 0 8'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:51
    Executing the dbmcli command: `util_connect'.
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:30:51
    Executing the dbmcli command: `backup_start BACKDP-Data[2] DATA'.
    [Critical] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:31:45
    Error: SAPDB responded with:
    -24988,ERR_SQL: SQL error
    -903,Host file I/O error
    3,Data backup failed
    17,Servertask Info: because Error in backup task occured
    10,Job 2 (Backup / Restore Medium Task) [executing] WaitingT170 Result=3700
    6,Error in backup task occured, Error code 3700 "hostfile_error"
    1,Backupmedium #1 (/var/opt/omni/tmp/MAX.BACKDP-Data[2].1) Wrong file type
    6,Backup error occured, Error code 3700 "hostfile_error"
    17,Servertask Info: because Error in backup task occured
    10,Job 1 (Backup / Restore Medium Task) [executing] WaitingT170 Result=3700
    6,Error in backup task occured, Error code 3700 "hostfile_error"
    [Normal] From: OB2BAR_SAPDBBAR@ttcmaxdr "MAX" Time: 06/17/10 04:31:45
    Executing the dbmcli command: `exit'.
    [Normal] From: BSM@ttcsap10 "MAXDB_Online" Time: 6/17/10 4:31:46 AM
    OB2BAR application on "ttcmaxdr" disconnected.
    [Critical] From: BSM@ttcsap10 "MAXDB_Online" Time: 6/17/10 4:31:46 AM
    None of the Disk Agents completed successfully.
    Session has failed.
    [Normal] From: BSM@ttcsap10 "MAXDB_Online" Time: 6/17/10 4:31:46 AM
    Backup Statistics:
    Session Queuing Time (hours) 0.00
    Completed Disk Agents ........ 0
    Failed Disk Agents ........... 0
    Aborted Disk Agents .......... 0
    Disk Agents Total ........... 0
    ========================================
    Completed Media Agents ....... 0
    Failed Media Agents .......... 0
    Aborted Media Agents ......... 0
    Media Agents Total .......... 0
    ========================================
    Mbytes Total ................. 0 MB
    Used Media Total ............. 0
    Disk Agent Errors Total ...... 0
    But I have noticed the error is because of this line as below,
    Executing the dbmcli command: `medium_put BACKDP-Data[2]/1 /var/opt/omni/tmp/MAX.BACKDP-Data[2].1 PIPE DATA 0 8'.
    Actually it should execute the dbmcli command as
    medium_put BACKDP-Data[2]/1 /var/opt/omni/tmp/MAX.BACKDP-Data[2].1 PIPE DATA 0 8 NO NO \" \" "BACK"
    But I donu2019t know where to make changes so that when I start the backup through DP GUI it should use backup tool as u201CBACKu201D
    But same DP backup specification is working through MaxDB Database Manager GUI.
    Any solution appreciatedu2026
    Thanks,
    Subba

    Hi Natalia,
    Thanks for the reply...Please find the answer as below,
    -> What is the version of Data Protector?
    Data Protector 5.5
    -> What is the version of the database?
    SAP MaxDB 7.6
    -> According your information you could use the DBMGUI to create the medium of u201CBACKu201D type and create the databackup using this medium. Correct?
    Yes
    The problems are with Data Protector GUI, not with MAXDB or DBMGUI. Correct?
    Yes
    Please let me know where to make any changes or any enviornment settings to be done in Data Protector GUI so that it will use the medium "BACK" as backup tool while i start the backup through Data Protector GUI.
    Thanks,
    Subba

  • Need help  traversing through files

    i have a folder with 99,999 xml files. i need to access each and everyone of these files to look for a certain value.my question is: is there any convenient way of traversing through these files?
    File xmlfile = new File("");
    File onefolder = new File("C:\\Documents and Settings\\drstempprojects\\Desktop\\Compiled\\NLB_Recam");
    String[] arroffiles = onefolder.list();
    for (int i=0;i<arroffiles.length;i++) {
        xmlfile = new File("...\\NLB_Recam\\" + arroffiles);
    this method is inefficient and takes a hell load of memory since we are creating an array of 99,999 strings and using each array slot only once. i'm pretty sure there are better solutions to this. suggestions pls anyone?thanks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    i'm pretty sure there are better solutions to this. suggestions pls anyoneDon't store 100k files in the same directory.

  • Retrieve Data from the Webservice through Data connection in Adobe Form

    hi
                                            i done Student ejb application
    i.e, Create,Update,Retrieve,Delete operation. I create the WebServices to these operations. Present  i connect the webservice through data connection . create operation is done successfully, but i dont know how to retrieve the the student details through data connection. how i can bind the retrieve values to the table in adobe form .how to bind from webservices to adobe form without context node.

    I had the same problem in SAP B1 2007. Report worked fine except when it was open from B1. Generally there may be different problems. In my case the same problem was caused by using some procedure which was in a specific schema. Changing the schema into "dbo" solved the problem.
    Radoslaw Blaniarz

  • Connecting through Data Source using JNDI

    I would like to connect my application to sql server database through data
    source using JNDI. But when i try to bind the data source object with the
    logical name, i am getting following exception. How can i ger rid of this
    error ? How can i provide the initial context ? I thought Java would create the default initial context by itself. But it doesn't seem to be true. Any type of help would be appreciated.
    -Prashant
    Exception :
    Naming Exception :Need to specify class name in environment or system
    property, or as an applet parameter, or in an application resource file:
    java.naming.factory.initial
    javax.naming.NoInitialContextException: Need to specify class name in
    environment or system property, or as an applet parameter, or in an
    application resource file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:651)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at
    javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:283)
    at javax.naming.InitialContext.bind(InitialContext.java:358)
    at RegDataSource.regDataSource(RegDataSource.java:30)
    at RegDataSource.main(RegDataSource.java:52)
    Source code :
    public class RegDataSource
    public RegDataSource()
    private void regDataSource()
    try
    com.microsoft.jdbcx.sqlserver.SQLServerDataSource sds =
    new
    com.microsoft.jdbcx.sqlserver.SQLServerDataSource();
    sds.setServerName("servername13");
    sds.setDatabaseName("test");
    Context ctx = new InitialContext();
    ctx.bind("jdbc/EmployeeDB", sds);
    catch(NamingException e)
    System.out.println("Naming Exception :" + e.getMessage()
    //+ "\n" + e.getExplanation()
    //+ "\n" + e.getResolvedObj()
    //+ "\n" + e.getResolvedName()
    e.printStackTrace();
    catch(Exception e)
    System.out.println("Exception :" + e.getMessage());
    public static void main(String[] args)
    RegDataSource regDataSource1 = new RegDataSource();
    regDataSource1.regDataSource();

    Thanks you very very much for your prompt reply and helping me out. I have following questions.
    1) Now i am able to bind data source object to the logical name. But the problem is that whenever i try to look up the data source object by providing logical name (i.e. DataSource ds = (DataSource)ctx.lookup("jdbc/EmployeeDB") ), it returns always null. I don't know why it doesn't return the correct data source object ?
    Following is the code used to bind datasource with the logical name
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.fscontext.RefFSContextFactory");
    env.put(Context.PROVIDER_URL, "file:/TEMP/jndi");
    Context ctx = new InitialContext(env);
    //Properties p = new Properties();
    //p.put(Context.INITIAL_CONTEXT_FACTORY,
    // "com.sun.jndi.fscontext.RefFSContextFactory");
    //Context ctx = new InitialContext(p);
    ctx.bind("jdbc/EmployeeDB", sds);
    Following is the code used to look up for the bound object
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.fscontext.RefFSContextFactory");
    env.put(Context.PROVIDER_URL, "file:/TEMP/jndi");
    Context ctx = new InitialContext(env);
    DataSource ds = (DataSource)ctx.lookup("jdbc/EmployeeDB");
    2) I am writing client server application in which my client is going to access the SQL Server 2000 to read/write database related data. The reason behind using the JNDI is that i don't want my client application to kwon which driver (sql) and database i am using. It is going to provide the great flexibility whenever i can make my application to use other database like Oracel, sybase, etc. without changing any code most probably. In this situation, which JNDI service provider to use ? I am not sure about "File System" service provider be the ideal choice for this type of situation. so please let me know which JNDI service provider is the ideal for this situation.
    Any type of help would be appreacited.

  • Traversing through Array

    I am trying to have an array of say size 30 and I want to traverse through it one by one and display the results digitally.
    I tried using INDEX ARRAY function but keeps on giving me a constant value and does not traverse through to the next element after displaying first one.
    Any advice please.

    Hi,
    I'm not sure I understand what function you tried to use. If it's the PropertyObject.GetArrayIndex, then the function will always return the array index string at a given offset in the array.
    The clasic way of traversing an array is to define an index for iterating, for example: Locals.index.
    Next insert a Label and a GoTo step.
    The GoTo step has to be configured as follows:
    1. Destination - 'Label'
    2. Precondition = Locals.index < GetNumElements(Locals.Array)
    3. PostExpression = Locals.index++
    In between the Label and GoTo step place your steps for accessing the array elements, based on the Locals.index.
    Hope this helps,
    Silvius
    Silvius Iancu

  • How do I go about this? Creating table while looping through dates?

    How do I do this? Creating table while looping through dates?
    I have a table with information like:
    ID---Date---Status
    1-------04/23-----Open
    1-------04/25-----Open
    2-------04/24-----Closed
    3-------04/26-----Closed
    What I want to do is create another table based on this per ID, but have all the dates/statuses on the same line as that ID number (as additional columns). The problem is that the number of columns needed is to be dynamically decided by the number of dates.
    To illustrate my example, I'm looking to achieve the following:
    ID---04/23 Status---04/24--Status---04/25--Status---04/26--Status
    1----Open--------------<null>-------------Open---------------<null>
    2----<null>------------Closed-------------<null>-------------<null>
    3----<null>------------<null>-------------<null>-------------Closed
    What would be the best way to go about this?
    Can someone please point me in the right direction?
    Would I need to do some looping?
    Thanks in advance!

    thedunnyman wrote:
    How do I do this? Creating table while looping through dates?
    I have a table with information like:
    ID---Date---Status
    1-------04/23-----Open
    1-------04/25-----Open
    2-------04/24-----Closed
    3-------04/26-----Closed
    What I want to do is create another table based on this per ID, but have all the dates/statuses on the same line as that ID number (as additional columns). The problem is that the number of columns needed is to be dynamically decided by the number of dates.
    To illustrate my example, I'm looking to achieve the following:
    ID---04/23 Status---04/24--Status---04/25--Status---04/26--Status
    1----Open--------------<null>-------------Open---------------<null>
    2----<null>------------Closed-------------<null>-------------<null>
    3----<null>------------<null>-------------<null>-------------Closed
    What would be the best way to go about this?
    Can someone please point me in the right direction?
    Would I need to do some looping?
    Thanks in advance!I hope you are asking about writing a query to DISPLAY the data that way ... not to actually create such a massively denormalized table ....

  • How to loop through data of ALV grid in Webdynpro for Abap view

    hello,
    I have a view with an ALV component(SALV_WD_TABLE). I just want to loop through the lines shown (particularly when the user has set filter).
    Can you help me to find how to reach the internal table ?
    In summary, I want to know the reverse method of BIND_TABLE()
    Thanks!

    Not really...
    Here is the solution :
      DATA lo_ui TYPE  if_salv_wd_table=>s_type_param_get_ui_info.
      lo_ui = lo_interfacecontroller->get_ui_info( ).
      DATA: lt_displayed     TYPE salv_bs_t_int,
            li_displayed     TYPE int4.
      lt_displayed = lo_ui-t_displayed_elements.
      check not lt_displayed is initial.
      loop at lt_displayed into li_displayed.
    Regards

  • PDF - Importing through Data Manager  -

    I am performing following steps. In the data manager, I am trying to import the PDF file. Then link it to the Main Table.
    While importing I am using "Link to Orginal File Only"
    PDF file is present in the share folder and the path of share folder does not have spaces. I get the following error message
    "There was an error opening this document. This file cannot be found".
    Actually file is available as well as path is correct and also acees to the sahre folder.
    I tried same thing through local drive from my desktop. I encounter the same message.
    When, I go and see PDFs table in the repository, I can see a record inserted with the correct path. I am not able top open up the PDF using Object --> View PDF.
    I am using MDM 7.1 SP 05.
    Please share your experience.

    Please let me know what version of MDM you are using... Can you give a try by uploading pdf from your local system.. This will make sure that there has nothing to do with the shared drive..
    Please revert with the results.
    Best Regards,
    Shiv
    Please also check this document, just to make sure you are not missing any step.
    [How to Import Pdf Document in MDM|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c01f54a2-99f1-2a10-5aa5-dcc50870e7f6]
    Best Regards,
    Shiv

  • Data load fron flat file through data synchronization

    Hi,
    Can anyone please help me out with a problem. I am doing a data load in my planning application through a flat file and using data synhronization for it. How can i specify during my data synchronization mapping to add values from the load file that are at the same intersection instead of overriding it.
    For e:g the load files have the following data
    Entity Period Year Version Scenario Account Value
    HO_ATR Jan FY09 Current CurrentScenario PAT 1000
    HO_ATR Jan FY09 Current CurrentScenario PAT 2000
    the value at the intersection HO_ATR->Jan->FY09->Current->CurrentScenario->PAT should be 3000.
    Is there any possibility? I dont want to give users rights to Admin Console for loading data.

    Hi Manmit,
    First let us know if you are in BW 3.5 or 7.0
    In either of the cases, just try including the fields X,Y,Date, Qty etc in the datasource with their respective length specifications.
    While loading the data using Infopackage, just make the setting for file format as Fixed length in your infopackage
    This will populate the values to the respective fields.
    Prathish

  • Colour distortion when running Keynote through data projector

    I regularly hook my MacBook up to a data projector, using (I think) a DVI to VGA connector, without any problems; have recently found some problems with colour distortion, though, to the point of everything on the data projector display appearing in shades of blue. Running the attached PC through the data projector, everything was absolutely fine, so it seems to be a problem with my MacBook display settings? Any suggestions for a quick fix?
    Thanks!

    When you bring up the monitors control panel, does it show on BOTH screens (internal and projector)? It should, and if you're not mirroring, ONLY change it on the projector. Make sure it matches the default for the projector. There no reason it shouldn't work, but that's the first place to check.

  • What's burning through data after only 3 days?

    Hi all, I'm a VERY recent iPhone convert - as in I just bought mine Friday night - and it looks as if I've already used 530mb of data??? I'm definitely a very responsible data user - especially since I only have a 2GB plan on Verizon - but I cannot fathom how I've already gone through 1/4 of my usage in barely 3 days. I'm guessing there's some setting I'm unaware of, like location services maybe?
    Help? Anyone?

    Go thru your settings like location services and turn off stuff you don't always need. If you have email set it so you fetch it instead of it being pushed to you. Go to settings, privacy, location services, scroll all the way down to system services and turn off stuff there, i only have cell network search and compass calibration on, if i use the phone for navigation i might turn on traffic there. Notifications as well, check thru those.

  • Add Channel data in blocks through Data Plugin.

    Hi,
    I have to create a plugin for a binary data file. I have no probelm creating the plugin, as I know all the required formats but now the issue is I am supposed to load channel values of a specific region of interset. For example, If data file has values of data for the time 0 to 13sec, then I am ssupposed to read in channel with data only between 5 to 9 secs. Can anyone please let me know how can I go about for selective data loading through plugin?
    Thanks,
    Priya

    Hi Priya,
    This is not a built-in feature in DIAdem, although R&D is looking into the feasibility of adding this as a feature at some point.  In the meantime I developed my own back-door way of getting the job done.  You can pass the reducing information in a text file of the same name (but different extension) as the binary file, then the DataPlugin can read the data reduction information and declare the binary block to start at the correct byte position, skip the correct number of values, and end at the correct last value for the desired interval.  Below is a simple example of a DataPlugin outfitted with the "Red" routines.
    Let me know if you have further questions,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Attachments:
    GigaLV Red.zip ‏40 KB

Maybe you are looking for

  • Macbook wont start after software update

    I ran the software update on my white macbook and now when the computer restarts it just spins. I have tried the hardware tests and it detects no problems. The computer will not restart it just spins and the fan goes for hours. Any help is appreciate

  • My Ipod touch 3rd Gen. will not turn on

    I have a 3rd gen ipod touch. I have tried charging it but it will not turn on or do anything. I have tried hooking it to my laptop but it will not show up as being connected. Any ideas?

  • How to create & handle policies?

    Question from a customer (anonymized): It is my understanding that the reference implementation comes with 4 sample policies:  Ad-pol, dto-pol, sub-pol, and vod-pol.  Without a policy file, both the f4fpackager and the Adobe Access SDK fail to genera

  • Syncing 2 devices to same computer

    My wife and I both have blackberries.  Can we both download photos to the same computer?  Hers worked fine.  When I plugged in my phone, it shut off the power and would not let me use the media manager.  Please help.

  • An imbedded URL in email Windows Mail will not open web page in Firefox?

    Using Vista Home Basic & Firefox 19.0