maximum value without a group of

I have data such as that below, but can't seem to get the maximum value of a line.


ID SCORE STATUS ATTRNO
12 989 17 ACTIVE
12 122 17 INACTIVE
33 17 ACTIVE 1099

I want to be able to get out:

33 17 ACTIVE 1099

I'm not 'group by', because it returns all rows. Any guidance would be greatly appreciated.

Thank you!

What is information of primary key for this table?

Maybe you can go for this->

select *
fromm table1
where ID = (
               select max(ID)
               from   table1
           );

N.B.: Not tested...

Kind regards.

LOULOU.

Tags: Database

Similar Questions

  • Decode the values without ETL (Group Dimension values)

    Hello guys, I have a question that is partly triggered by me not wanting to change the default ETLs.

    I have values in a dimension to come as table:

    Area A
    Region B
    Region C
    Region D
    Region E

    However, I'm hoping to re - org the hierarchy as below:

    A new region
    D new region

    Essentially, there is a new org structure where we Group (consolidation) old parts in new and rename values.

    I know it can be done in ETL but y at - it everywhere else where this is possible? Perhaps in the business layer? Is there a place in the business layer where we can decode the values and combine them?

    Regards and thanks in advance for your help,.

    Hello

    You can do to the RPD layer with an instruction box on a column of logic. However I really wouldn't say that because it means that if the group never changes you need to release a new RPD to get change.

    Why not build a task custom ETL that you can set to run after the vanilla who takes just these values, consolidates necessary (perhaps using a lookup table to find the old-> new maps) and then load it the new value in a column of extension on the dimension or the extension of related dimension, i.e. W_ORG_DX. Then, you can simply display this column in the presentation layer for users. Unless the table in question has millions of people off the coast of columns, just let him do this mapping for each row in the table for each ETL.

    I think it would be a very simple task and would mean that you can change the mappings easily through the table if necessary. This also means that you don't need to touch the vanilla ETL mappings and are not changing the values in the columns of vanilla, as you mentioned that you didn't want to do.

    Kind regards

    Matt

  • SQL select max value in a group

    Hi all!

    Newbie question here... I'm a bit confused by how accomplish getting the maximum value for a group within a game when I have several tables going on results.

    I need to capture only the T2. BI_TASK_CD and MAX (T2. BI_WRKFLW_TASK_SEQ_NBR) for each unique "SO NBR.

    So, in this example below, I should finish with only 3 rows for re ' 2227510 ', ' 2211700', 2227515'


    I have:
    SELECT 
    T1.MSTR_SO_NBR AS "SO NBR",
    T1.BI_WRKFLW_TASK_SEQ_NBR,
    T1.BI_TASK_CD,
    T1.BI_EVENT_DT_TM,
    T1.BI_CRITICAL_TASK_SW,
    T2.BI_TASK_CD as "T2.BI_TASK_CD",
    T2.BI_WRKFLW_TASK_SEQ_NBR as "T2.BI_WRKFLW_TASK_SEQ_NBR",
    T2.BI_EVENT_DT_TM as "T2.BI_EVENT_DT_TM",
    T2.BI_CRITICAL_TASK_SW as "T2.BI_CRITICAL_TASK_SW"
    
    FROM
    (SELECT DISTINCT
      BI_SO_MASTER.BI_SO_NBR as "MSTR_SO_NBR",
      BI_SO_DET_VIEW_1.BI_SO_NBR,
      BI_WRKFLW_TASKS.BI_WRKFLW_TASK_SEQ_NBR,
      BI_WRKFLW_TASKS.BI_TASK_CD,
      BI_WRKFLW_TASKS.BI_EVENT_DT_TM,
      BI_WRKFLW_TASKS.BI_CRITICAL_TASK_SW
    FROM(XXX)
    ...
    ) T1
    
    LEFT OUTER JOIN
    
     (SELECT DISTINCT
           --BI_SO_MASTER.BI_SO_NBR,
           BI_SO_DET_VIEW_1.BI_SO_NBR,
           BI_WRKFLW_TASKS.BI_WRKFLW_TASK_SEQ_NBR,
           BI_WRKFLW_TASKS.BI_TASK_CD,
           BI_WRKFLW_TASKS.BI_EVENT_DT_TM,
           BI_WRKFLW_TASKS.BI_CRITICAL_TASK_SW 
     FROM(XXX)  
    ...
    ) T2
    
    ON 
    T1.BI_SO_NBR = T2.BI_SO_NBR 
    
    WHERE
    T2.BI_WRKFLW_TASK_SEQ_NBR < T1.BI_WRKFLW_TASK_SEQ_NBR
    AND T1.BI_SO_NBR IN ('2227510', '2211700', '2227515')
    
    ORDER BY 
    "SO NBR" ASC,
    T2.BI_WRKFLW_TASK_SEQ_NBR DESC
    Current result set:
    SO NBR  BI_WRKFLW_TASK_SEQ_NBR BI_TASK_CD BI_EVENT_DT_TM      BI_CRITICAL_TASK_SW T2.BI_TASK_CD T2.BI_WRKFLW_TASK_SEQ_NBR T2.BI_EVENT_DT_TM   T2.BI_CRITICAL_TASK_SW                                         
    ------- ---------------------- ---------- ------------------- ------------------- ------------- ------------------------- ------------------- ----------------------                                         
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   ENGWORVIPG    20                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   SERVCOORD     19                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   ENGWORVIPG    17                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   ENGSTKASGN    16                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   ENGNWO        13                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   PAYCOLLECT    12                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   PRESENTVAL    11                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   RATEMINDEM    10                        2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   STKREVIEW     9                         2012-01-16 11:37:14 Y                                                              
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   ENGROWIPG     8                         2012-01-16 11:37:14 Y                                                              
    2227510 33                     OPSCREW    2012-08-27 10:50:25 Y                   PAYCOLLECT    21                        2012-08-27 10:51:47 Y                                                              
    2227510 33                     OPSCREW    2012-08-27 10:50:25 Y                   PRESENTVAL    20                        2012-08-27 10:51:44 Y                                                              
    2227510 33                     OPSCREW    2012-08-27 10:50:25 Y                   RATEMINDEM    19                        2012-08-27 10:51:41 Y                                                              
    2227510 33                     OPSCREW    2012-08-27 10:50:25 Y                   CHARGES       9                         2012-08-27 10:51:35 Y                                                              
    2227510 33                     OPSCREW    2012-08-27 10:50:25 Y                   CBMRETIRE     1                         2012-08-27 10:50:45 Y                                                              
    2227515 33                     OPSCREW    2012-08-27 11:01:46 Y                   PAYCOLLECT    21                        2012-08-27 11:03:07 Y                                                              
    2227515 33                     OPSCREW    2012-08-27 11:01:46 Y                   PRESENTVAL    20                        2012-08-27 11:03:04 Y                                                              
    2227515 33                     OPSCREW    2012-08-27 11:01:46 Y                   RATEMINDEM    19                        2012-08-27 11:03:02 Y                                                              
    2227515 33                     OPSCREW    2012-08-27 11:01:46 Y                   CHARGES       9                         2012-08-27 11:02:58 Y                                                              
    2227515 33                     OPSCREW    2012-08-27 11:01:46 Y                   CBMRETIRE     1                         2012-08-27 11:02:08 Y                                                              
    Desire the result set:
    SO NBR  BI_WRKFLW_TASK_SEQ_NBR BI_TASK_CD BI_EVENT_DT_TM      BI_CRITICAL_TASK_SW T2.BI_TASK_CD T2.BI_WRKFLW_TASK_SEQ_NBR T2.BI_EVENT_DT_TM   T2.BI_CRITICAL_TASK_SW                                         
    ------- ---------------------- ---------- ------------------- ------------------- ------------- ------------------------- ------------------- ----------------------                                         
    2211700 21                     OPSCREW    2012-01-16 11:37:14 Y                   ENGWORVIPG    20                        2012-01-16 11:37:14 Y                                                                                                 
    2227510 33                     OPSCREW    2012-08-27 10:50:25 Y                   PAYCOLLECT    21                        2012-08-27 10:51:47 Y                                                                                                 
    2227515 33                     OPSCREW    2012-08-27 11:01:46 Y                   PAYCOLLECT    21                        2012-08-27 11:03:07 Y                                                                                                 
    Thanks for your help!

    :) John

    This sounds like a job for and analytic function. Something like:

    SELECT "SO NBR", BI_WRKFLW_TASK_SEQ_NBR, BI_TASK_CD, BI_EVENT_DT_TM,
           BI_CRITICAL_TASK_SW, "T2.BI_TASK_CD", "T2.BI_WRKFLW_TASK_SEQ_NBR",
           "T2.BI_EVENT_DT_TM", "T2.BI_CRITICAL_TASK_SW"
    FROM (SELECT T1.MSTR_SO_NBR AS "SO NBR",
                 T1.BI_WRKFLW_TASK_SEQ_NBR,
                 T1.BI_TASK_CD,
                 T1.BI_EVENT_DT_TM,
                 T1.BI_CRITICAL_TASK_SW,
                 T2.BI_TASK_CD as "T2.BI_TASK_CD",
                 T2.BI_WRKFLW_TASK_SEQ_NBR as "T2.BI_WRKFLW_TASK_SEQ_NBR",
                 T2.BI_EVENT_DT_TM as "T2.BI_EVENT_DT_TM",
                 T2.BI_CRITICAL_TASK_SW as "T2.BI_CRITICAL_TASK_SW",
                 ROW_NUMBER() OVER (PARTITION BY T1.MSTR_SO_NBR
                                    ORDER BY T2.BI_WRKFLW_TASK_SEQ_NBR desc) rn
          FROM (SELECT DISTINCT BI_SO_MASTER.BI_SO_NBR as "MSTR_SO_NBR",
                                BI_SO_DET_VIEW_1.BI_SO_NBR,
                                BI_WRKFLW_TASKS.BI_WRKFLW_TASK_SEQ_NBR,
                                BI_WRKFLW_TASKS.BI_TASK_CD,
                                BI_WRKFLW_TASKS.BI_EVENT_DT_TM,
                                BI_WRKFLW_TASKS.BI_CRITICAL_TASK_SW
                FROM(XXX)
                  ...) T1
                   LEFT OUTER JOIN (SELECT DISTINCT BI_SO_DET_VIEW_1.BI_SO_NBR,
                                           BI_WRKFLW_TASKS.BI_WRKFLW_TASK_SEQ_NBR,
                                           BI_WRKFLW_TASKS.BI_TASK_CD,
                                           BI_WRKFLW_TASKS.BI_EVENT_DT_TM,
                                           BI_WRKFLW_TASKS.BI_CRITICAL_TASK_SW
                                    FROM(XXX)
                                    ...) T2
                      ON T1.BI_SO_NBR = T2.BI_SO_NBR
          WHERE T2.BI_WRKFLW_TASK_SEQ_NBR < T1.BI_WRKFLW_TASK_SEQ_NBR
            AND T1.BI_SO_NBR IN ('2227510', '2211700', '2227515'))
    WHERE rn = 1
    ORDER BY "SO NBR" ASC, T2.BI_WRKFLW_TASK_SEQ_NBR DESC
    

    John

  • maximum value for a column in a table without using rownum and rowid, group

    Hi all

    Is it possible to recover the maximum value in a column of a table without help:
    1 rownum and rowid.
    2. the Group
    3. any built-in function of Oracle.

    Kindly let me know if possible.


    Kind regards.

    Published by: J2EE_Life on January 23, 2012 21:06
    select e1.empno
      from scott.emp e1
      left outer join scott.emp e2 on e1.empno < e2.empno
     where e2.empno is null
    
  • Needing a maximum date using the group value of

    Create table student (dept number(10), dep_name varchar2(10),join_date date,years_attended number(10),end_date date);
     
    insert into student values (1,'I',to_date('3/7/1917','MM/DD/YYYY'),4,to_date('8/26/1987','MM/DD/YYYY'));
    insert into student values (1,'I',to_date('1/1/1900','MM/DD/YYYY'),4,to_date('8/26/1932','MM/DD/YYYY'));
    insert into student values (1,'D',to_date('1/1/1920','MM/DD/YYYY'),5,to_date('8/26/1994','MM/DD/YYYY'));
    insert into student values (1,'C',to_date('1/1/1920','MM/DD/YYYY'),6,to_date('8/26/1945','MM/DD/YYYY'));
    insert into student values (2,'I',to_date('7/1/1900','MM/DD/YYYY'),3,to_date('8/26/1932','MM/DD/YYYY'));
    insert into student values (2,'I',to_date('8/16/1916','MM/DD/YYYY'),9,to_date('8/26/1923','MM/DD/YYYY'));
    insert into student values (2,'D',to_date('8/16/1916','MM/DD/YYYY'),10,to_date('8/26/1987','MM/DD/YYYY'));
    insert into student values (3,'I',to_date('3/7/1917','MM/DD/YYYY'),4,to_date('8/26/1987','MM/DD/YYYY'));
    insert into student values (3,'D',to_date('7/28/1920','MM/DD/YYYY'),6,to_date('8/26/1945','MM/DD/YYYY'));
    insert into student values (3,'I',to_date('7/28/1920','MM/DD/YYYY'),8,to_date('8/26/1965','MM/DD/YYYY'));
    insert into student values (4,'I',to_date('12/31/1924','MM/DD/YYYY'),2,to_date('8/26/1998','MM/DD/YYYY'));
    insert into student values (4,'I',to_date('6/10/1929','MM/DD/YYYY'),1,to_date('8/26/1943','MM/DD/YYYY'));
    insert into student values (4,'C',to_date('1/17/1927','MM/DD/YYYY'),4,to_date('8/26/1955','MM/DD/YYYY'));
    insert into student values (4,'C',to_date('6/10/1929','MM/DD/YYYY'),30,to_date('8/26/1967','MM/DD/YYYY'));
    insert into student values (5,'D',to_date('2/10/1931','MM/DD/YYYY'),2,to_date('8/26/1943','MM/DD/YYYY'));
    insert into student values (5,'I',to_date('2/10/1931','MM/DD/YYYY'),24,to_date('8/26/1962','MM/DD/YYYY'));
    commit;
    I need a join_date of date value maximum for each Department. If max (join_date) has two records for each dept max (end_date) are to be considered. I used a select query
    select * from student where join_date in (select 
    max(join_date) from student group by dept);
    gives me the following result
    1     D     1/1/1920     5     8/26/1994
    1     C     1/1/1920     6     8/26/1945
    2     I     8/16/1916     9     8/26/1923
    2     D     8/16/1916     10     8/26/1987
    3     D     7/28/1920     6     8/26/1945
    3     I     7/28/1920     8     8/26/1965
    4     I     6/10/1929     1     8/26/1943
    4     C     6/10/1929     30     8/26/1967
    5     D     2/10/1931     2     8/26/1943
    5     I     2/10/1931     24     8/26/1962
    But I'm looking for the result that gives me only a maximum value for each column dept. First of all, it should look like to a maximum value of join_date, so two records even join_date max (end_date) are to be considered. The result should be sumthing like this
    1     D     1/1/1920     5     8/26/1994
    2     D     8/16/1916     10     8/26/1987
    3     I     7/28/1920     8     8/26/1965
    4     C     6/10/1929     30     8/26/1967
    5     I     2/10/1931     24     8/26/1962
    Can you please tell me how to rewrite the select query for results above.

    Published by: user11872870 on August 2, 2011 17:29

    Published by: user11872870 on August 2, 2011 17:36

    Hello

    This is called a Query Top - N , and this is a way to do it:

    WITH     got_r_num     AS
    (
         SELECT     student.*
         ,     ROW_NUMBER () OVER ( PARTITION BY  dept
                                   ORDER BY          join_date     DESC
                             ,                end_date     DESC
                           )      AS r_num
         FROM    student
    )
    SELECT       dept, dep_name, join_date, years_attended, end_date
    FROM       got_r_num
    WHERE       r_num     = 1
    ORDER BY  dept
    ;
    

    Another way is similar to what you posted:

    SELECT    *
    FROM       student
    WHERE        (dept, join_date, end_date)
                   IN (
                        SELECT    dept
                   ,       MAX (join_date)
                   ,       MAX (end_date) KEEP (DENSE_RANK LAST ORDER BY join_date)
                   FROM      student
                   GROUP BY     dept
                   );
    

    I suspect that the first way (using ROW_NUMBER) will be faster.
    In addition, the ROW_NUMBER approach is guaranteed to return only 1 line by Department using the approach of GROUP BY, if there is a link on join_date and end_date then it will return all the contenders in this Department. using ROW_NUMBER, it is easy to add expressions to tie-break as much as you want, and, if there is still a tie, it will be arbirarily pick, one lines involved in the tie as #1.

    Thanks for posting the CREATE TABLE and INSERT! It is very useful.

    Published by: Frank Kulash, August 2, 2011 21:00
    Added GROUP BY alternative

  • Maximum value such as a number or a string

    Hallo,

    I calculated the maximum value of a channel. The next step is to use this value for further computation. My problem is that I can't use this value as a number. It is just a string. I tried with

    ChnPropGet then I got the number. But I can't use it for calculations. Anyone have an idea how I can fix this problem?

    I've attached a screenshot of my script. I use the German version of 12 DIAdem.

    Thanks for the help...

    Hello LePot,

    the properties. The function returns the property in its native type. If you navigate to the maximum property of a channel, it will return the value as a floating point number. You can check this by running the following script:

    (The script assumes that the dataset example is which has a number of Group 3 with a channel named "Res_Schall_1". But your chains should give you the same result with the message box showing "double."

    Dim Maximum
    Maximum = Data.Root.ChannelGroups (3). Channels ("Res_Schall_1"). Properties ('minimum'). Value
    MsgBox (TypeName (Maximum))

    If you ever want to convert a number represented as a string, be careful when you use "CDbl". This VBScript function assumes that the number is formatted by using the language of oyur BONES, especially the decimal setting (in '. 'or', '). If the setting of the operating system does not match the way the number is converted to a string, you have a problem. That's why the offer DIAdem::Str() to go a certain number to string s and Val() to go the opposite direction. Using CDbl can create rellay average errors that are difficult to detect.

    Andreas

  • Count the occurrences of the maximum values

    Hello

    I don't know if I simply not thinking clearly this morning or not, but I find it difficult to write a query which I believe should be simple enough.  I'm trying to find the number of occurrences of a maximum value for each value in a range.

    Here's the situation:

    I have a table that stores the scores on the Act and SAT tests for students, as well as their student number identification codes and test. The table can store notes reviews multiple with same code test (in this case A01) for each student, the student can take the Act or SAT several times.

    In my case, I need to know the number of students who earned a maximum test between 14 and 25 grouped by test score.  So if I had 500 students, and 300 of them took the test ACT, then my output can resemble:

    REVIEW NOTE number of STUDENTS

    14                                   12

    15                                   18

    16                                   45

    17                                   55

    18                                   100

    19                                   35

    20                                   15

    21                                   10

    22                                   5

    23                                   3

    24                                   1

    25                                   1

    Although there may be 400 scores in tests with the test code (A01), I'm only willing to count the maximum score that the student has received.

    Fields:

    ID: sortest_pidm

    Test code: sortest_tesc_code

    Test score: sortest_test_score

    I'm going to use this as part of a larger query to track the retention of students with different ACT and SAT scores.

    Thanks for any help you can provide.  If anything is unclear, please feel free to ask for clarification.

    Bob

    It should work. Just check the table and column names.

    SELECT max_sortest_test_score, COUNT (*)

    FROM (SELECT sortest_pidm, MAX (sortest_test_score) max_sortest_test_score

    OF test_scores

    WHERE sortest_tesc_code = "A01".

    GROUP BY sortest_pidm)

    GROUP BY max_sortest_test_score

    ORDER BY 1;

  • Datepicker apex 4.0 - maximum value bug

    Hi all

    I have a number of dates in my page of simple form, and I applied a maximum date on a field of DOB to be '-16y "(without the quotes)

    The features of this element works as expected, and validation does not apply for other dates.

    However the jquery datepicker applies the restrictive selection on other date fields that do not have a maximum value.

    Has it been met before (I searched the forum but found too many references to filter / walk in)

    See you soon,.

    ScottWe

    A bug was recorded, and this problem will be fixed in the next version of the product. Thank you for reporting this issue.

    Thank you
    JS

  • Organize the maximum values of magnitude of several strain gages according to their location.

    "There are 32 gauges installed on a 53' (is) 636" span beam which are 20 ' apart. The first pledge is 26 "support. The attached vi gives the amplitudes of the peaks of each pledge individually by changing the columns and rows in the control. Now, these maximum values should be prepared according to the spacing of the beam and join these points with a spline curve.

    Open the vi, give the path of the attached excel sheet. Now, in the beginning cluster attribute column 3, 620 to line in the end cluster assign to column 4, 845 to line. Now, run the vi. Assign the columns start and end must be (3,4), (5,6), (7,8) and so forth, to get the maximum amplitudes of each extensometer.

    Vlaminck

    Greetings Vgrchada.

    You can independently change the column and the row of every beginning and end by a beam control based on the name. Look at the example that attached. I changed the star and end constants controls because they will be handled programmatically (so there is no need for human beings humans interact with them) always use for the line start and end values, because there is where all the data are. As for the columns, use the iteration of the loop counter For (with differences appropriate, while it starts where it should) another possibility is to build a table with all indexes and use the property auto-index of the loop For (this in the case where the columns are not side by side).

    I would like to know how it works. (I have not tested this code, but the principle should at least help you find your way)

    Kind regards.

  • Calculate the maximum value of the sub-table when creating using a structure of case and records the shift

    I have two 1 d arrays that contain cyclical information (a bit like a sine wave).  One that contains information about the position in degrees and another that contains the couple.  I would like to calculate the value of maximum torque whenever the station is within a certain range (for example, 30 to 80 degrees).  The beaches are repeated - that is why it is cyclical.   I use the function "in the range", a structure of the case and the shift records to build a new table with the values that are included in the beach I said - that was easy part (see attached VI).  I'm struggling with a way to calculate a maximum value for each sub-table formed when the values are 'in range '.   Your help is very appreciated.

    vt92 solution worked!  I agree that there should be a simpler solution, but your to works fine.  Thank you very much.

  • maximum values of five table 2d

    Hi, I have a vi that reads in the values of a 2D array, and then uses this information. I currently use the vi 'Table Max and Min' to find the maximum values of the table. It can be beneficial for my application find the maximum of 5 or any other number of values in the table. My current plan is to use a loop that detects that the maximum value of the original array and then subtract this value and repeat the operation once 5 or greater. However, I believe that it is innefficient and can take a long time in a vi that must run pretty quickly. I would like suggestions. Thanks in advance.

    It would be a bit faster

    After overhaul at 1 d

    Sort the table (from the smallest to largest)

    Turn the tide (the biggest to the smallest now

    Get the highest values since the beginning

  • Determine the maximum value and the minimum value for each value in the 2D array

    Hello, I need help please. Sorry my English is not very good. I have table 2D in which each value describes a waveform, I needed a time interval to determine the minimum and maximum value of each element of the array.


  • Persistent for the subtraction of the background image collection (how to get the maximum value of each pixel in a series of images IMAQ)

    Hi all

    I have a system of LabVIEW which takes advantage IMAQ tools and features of the Vision Development Module.  A useful feature that I put in place is to be able to take a snapshot of the video stream and then subtract this single image among the subsequent images.

    What I want to do is to collect a series of images instead of one, and then create a unique image of these frameworks is just the maximum value of pixels in each pixel (a bit like a display persistent).

    It would probably be very easy to be implemented by converting the image to a table and then by doing math number on the table and then turning into an image, but I hope that someone here may know how to use the IMAQ/VDM tools to do this in a way more compact.

    Thank you very much

    MK

    How about using Max comparison IMAQ operation?

  • How to set the maximum value of the slide in run mode

    Hello

    I have a number of files to process, the files are going to be covered in the runtime. I want to use a slider that controls a single in the process at some point file. As the total number of files cannot be pre-be determined, I wonder how I can configure the maximum value of the slider when running (after I know how many files in the pool).

    Any help will be greatly appreciated.

    JACIE

    Right-click on the property and select change writing.  Now you can wire a constant to the property node.

  • What is the maximum value of the specification number?

    Hello

    What is the maximum value of the specification number? When I put the number "UPDATE SpecNumManager SET StartingBlockNumber = 99999999"

    I create a few specs, I encounter error showing below when I try to save them. is this a bug? my version is v6111, thanks

    Thank you

    Terry

    Sql command execution error ' insert into specSummary (pkid, ActiveSigDocGroupSequence, AmberSLA, CreatedDate, EffectiveDate, fkAffiliate, fkCountry, fkGlobalSuccessionSpec, fkOriginatingTemplate, fkPermissionTemplate, fkProcessTemplate, fkSpecBusinessUnit, fkTaxonomyNode, SpecStatusID, GlobalSuccessionState, InactiveDate, IsHidden, IssueNum, IsTemplate, langCreatedIn, LastEdit, OriginatorID, OriginatorNameHistorical, OrigLangID, RedSLA, securityAccessLevel, SpecID, SpecNum, SpecNumber, SpecType, replaces, theOriginator, WorkflowStartDate) values (' 20205484dea2 - 2 ca 6-41eb-9806 - cce52513e7d4 ', '0', '0', August 19, 2013 10:01:27 ', August 19, 2013 10:01:27 ', NULL, NULL, NULL, NULL, '6000d0acb239-b9c6 - 478-a - 8 c 99-4ec741d2a1a5', "57566dc3c46b-b2fe-4276-ae7f-f7f1c28a913f") , NULL, "2141e3469193 - 4A 05-4953-9ef4-8bc08c1b1fb8 ', '2090111 c 6416-6de4-4707-b498-48a18671ca27', '-1234567890', 12/31/9999 00:00:00 ', ' 0', N '001', '0', '0', August 19, 2013 10:01:45 ', ' 0', not admin, Prodika ', ' 0', '0', '0', '2147d635d721 - 2ca 2-411 c-beed-d1584f7498ff', N '100000002', ' 100000002-001 ', ' 2147', NULL, ' 20533b94710f-5396-4487-bdd5-08d21365eefa»(, 19 août 2013 10:01:45 ') '.

    Specification numbers are 7 digits long. I believe that by default, the starting number is 5000000.

Maybe you are looking for