Accidentally I enlarge a window. Best way to return to its original size?

Sometimes I accidentally enlarge a window. What is the best way to return to its original sign?

Usually there is a place in the window where three colors of dots are, and the Green dot can make the screen larger and then the same one can make it smaller again.
Not sure if this helps...
Good luck & happy computing!

Similar Messages

  • What is the best way of returning group-by sql results in Toplink?

    I have many-to-many relationship between Employee and Project; so,
    a Employee can have many Projects, and a Project can be owned by many Employees.
    I have three tables in the database:
    Employee(id int, name varchar(32)),
    Project(id int, name varchar(32)), and
    Employee_Project(employee_id int, project_id int), which is the join-table between Employee and Project.
    Now, I want to find out for each employee, how many projects does the employee has.
    The sql query that achieves what I want would look like this:
    select e.id, count(*) as numProjects
    from employee e, employee_project ep
    where e.id = ep.employee_id
    group by e.id
    Just for information, currently I am using a named ReadAllQuery and I write my own sql in
    the Workbench rather than using the ExpressionBuilder.
    Now, my two questions are :
    1. Since there is a "group by e.id" on the query, only e.id can appear in the select clause.
    This prevent me from returning the full Employee pojo using ReadAllQuery.
    I can change the query to a nested query like this
    select e.eid, e.name, emp.cnt as numProjects
    from employee e,
    (select e_inner.id, count(*) as cnt
    from employee e_inner, employee_project ep_inner
    where e_inner.id = ep_inner.employee_id
    group by e_inner.id) emp
    where e.id = emp.id
    but, I don't like the complication of having extra join because of the nested query. Is there a
    better way of doing something like this?
    2. The second question is what is the best way of returning the count(*) or the numProjects.
    What I did right now is that I have a ReadAllQuery that returns a List<Employee>; then for
    each returned Employee pojo, I call a method getNumProjects() to get the count(*) information.
    I had an extra column "numProjects" in the Employee table and in the Employee descriptor, and
    I set this attribute to be "ReadOnly" on the Workbench; (the value for this dummy "numProjects"
    column in the database is always 0). So far this works ok. However, since the numProjects is
    transient, I need to set the query to refreshIdentityMapResult() or otherwise the Employee object
    in the cache could contain stale numProjects information. What I worry is that refreshIdentityMapResult()
    will cause the query to always hit the database and beat the purpose of having a cache. Also, if
    there are multiple concurrent queries to the database, I worry that there will be a race condition
    of updating this transient "numProjects" attribute. What are the better way of returning this kind
    of transient information such as count(*)? Can I have the query to return something like a tuple
    containing the Employee pojo and an int for the count(*), rather than just a Employee pojo with the
    transient int inside the pojo? Please advise.
    I greatly appreciate any help.
    Thanks,
    Frans

    No I don't want to modify the set of attributes after TopLink returns it to me. But I don't
    quite understand why this matters?
    I understand that I can use ReportQuery to return all the Employee's attributes plus the int count(*)
    and then I can iterate through the list of ReportQueryResult to construct the Employee pojo myself.
    I was hesitant of doing this because I think there will be a performance cost of not being able to
    use lazy fetching. For example, in the case of large result sets and the client only needs a few of them,
    if we use the above aproach, we need to iterate through all of them and wastefully create all the Employee
    pojos. On the other hand, if we let Toplink directly return a list of Employee pojo, then we can tell
    Toplink to use ScrollableCursor and to fetch only the first several rows. Please advise.
    Thanks.

  • Best way to return an array of values from c++?

    I have a a group of structs made of a mix of primitive types in c++. I need to return these to Java but Im not sure the best way to return them quickly.
    Should I create a class corresponding to the structure in Java then create the class in C++ and set its fields and return that? Or should I create arrays of different primitive types and return those? Can I even do that? Say, store a group of arrays of different types in a jobjectArray and return that? If I can, what would be the return type? Object[][]?

    Java side:
    package jni;
    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    * @author Ian Schneider
    public class Struct {
        static {
            System.loadLibrary("struct");
        public static void doit() {
            ByteBuffer bytes = ByteBuffer.allocateDirect(structSize());
            bytes.order(ByteOrder.nativeOrder());
            getData(bytes);
            System.out.println("int : " + bytes.getInt());
            System.out.println("double : " + bytes.getDouble());
        private static native void getData(ByteBuffer bytes);
        private static native int structSize();
        public static void main(String[] args) throws Exception {
            doit();
    }C side (I'm not a C programmer, so be nice):
    #include "jni_Struct.h"
    struct foo {
      int x;
      double y;
    } foo;
    JNIEXPORT void JNICALL Java_jni_Struct_getData
      (JNIEnv * env, jobject obj, jobject buf) {
      struct foo * f = (void*) malloc(sizeof(foo));
      f->x = 123;
      f->y = 456.;
      void * data = (void *) (*env)->GetDirectBufferAddress(env,buf);
      memcpy(data,f,sizeof(foo));
      free(f);
    JNIEXPORT jint JNICALL Java_jni_Struct_structSize
      (JNIEnv * env, jobject obj) {
      return sizeof(foo);
    }This is a bit simplistic as foo is static in size (no pointers), but hopefully you get the point.

  • Best way to return more than 1 value in a function?

    Hi all,
    What's the best way to return more than 1 value from a function? returning a cursor? varray? objects? etc? I thought of a cursor first, but i was hesitant since i am not sure if the cursor will be automatically closed when you return a cursor(open cursor no longer used is bad). Example:
    BEGIN
    OPEN c_temp_cursor;
    RETURN c_temp_cursor;
    END;
    With above example, c_temp_cursor is remained open. Or is it automatically closed once it exits from the function? Need some suggestions and expert advice.
    Thanks.
    Note: Function is to be used to return and not a procedure (This is a requirement. Can't explain the details on why).
    Edited by: dongzky on Jul 3, 2010 4:17 PM
    typo: "ir exists" to "it exits" (in bold)

    First create your pl/sql table type
    CREATE OR REPLACE TYPE pmc_tab AS TABLE OF NUMBER;
    Then a table:-
    CREATE TABLE v_stats_daily(start_date date, field1 number, field2 number, field3 number);
    Some insert into the table so we've got test data...
    insert into v_stats_daily values('08-OCT-2003',10,20,30);
    insert into v_stats_daily values('08-OCT-2003',40,50,60);
    insert into v_stats_daily values('08-OCT-2003',70,80,90);
    Then create your function:-
    CREATE OR REPLACE FUNCTION PMC_STATS
    (pStatDate Date) RETURN pmc_tab IS
    MyArray pmc_tab;
    vstat1 NUMBER;
    vstat2 NUMBER;
    vstat3 NUMBER;
    BEGIN
    MyArray := pmc_tab();
    select sum(Field1), sum(field2),sum(field3)
    into vstat1, vstat2,vstat3
    from v_stats_daily
    where Start_date = pStatDate;
    MyArray.extend;
    MyArray(1) := vstat1;
    MyArray.extend;
    MyArray(2) := vstat2;
    MyArray.extend;
    MyArray(3) := vstat3;
    RETURN MyArray;
    END;
    In SQL*Plus:-
    SQL>set serverout on
    Then a lump of PL/SQL to run your function:-
    DECLARE
    MyDate DATE;
    MyArray pmc_tab;
    i NUMBER;
    numOut NUMBER;
    BEGIN
    MyArray := pmc_stats('08-OCT-2003');
    dbms_output.put_line('Table count: '||to_char(MyArray.count));
    for i in 1..MyArray.last LOOP
    numOut := MyArray(i);
    --if numOut is null then
    dbms_output.put_line('Value: '||to_char(numOut));
    --end if;
    END LOOP;
    END;
    Your output will look like:-
    Table count: 3
    Value: 120
    Value: 150
    Value: 180
    Hope this helps,

  • Best way to return structured data?procedure or function?

    Hi everyone.
    I cannot choose the best way to return, from java stored procedure, some data.
    for example , which is best way to write this method:
    public STRUCT function(input parameters) { STRUCT result     ...   return result; }
    or
    public void procedure(input parameters, STRUCT[] struct) { STRUCT result     ...   struct[0] = result; }
    in the last way, the wrapper obviously will be: CREATE PROCEDURE name(... IN datatype, data OUT STRUCT)
    Which is best way in efficiency ?
    thank you ;)

    da`,
    By "efficiency", I assume you mean, best performance/least time.
    In my experience, the only way to discover this is to compare the two, since there are many factors that affect the situation.
    Good Luck,
    Avi.

  • HT1198 I shared disk space and my iPhoto library as described in this article. When creating the disk image, I thought I had set aside enough space to allow for growth (50G). I'm running out of space. What's the best way to increase the disk image size?

    I shared disk space and my iPhoto library as described in this article. When creating the disk image, I thought I had set aside enough space to allow for growth (50G). I'm running out of space. What's the best way to increase the disk image size?

    Done. Thank you, Allan.
    The sparse image article you sent a link to needs a little updating (or there's some variability in prompts (no password was required) with my OS and/or Disk Utility version), but it worked.
    Phew! It would have been much more time consuming to use Time Machine to recover all my photos after repartitioning the drive. 

  • Best way for Recovey for a TB size Databases for 9iR2 ?

    Hi,
    Could anyone let me know the best ways to keep recovery window as small as posible with TB size database.
    Regards
    KC

    KC,
    The best way to keep your recovery window as small as possible is to have a standby database that is continually updated. In this manner if you every lose your primary database you can fail over to the standby database.
    If your employeer will not spend the extra money on a standby database then there are many things you have to consider.
    Some examples:
    What is your data like?
    Do you have any tablespaces that can be specified as read-only? From the Oracle documentation " The primary purpose of read-only tablespaces is to eliminate the need to perform backup and recovery of large, static portions of a database"
    Can you partition any of the tables?
    What is your recovery window requirements? (For a Full Database Restoration because lose of site, File corruption on system, deletion of a database file, deletion of multiple database files...and so on.)
    Where are your backups kept? (Do you have to get tapes from a 3rd party vendor like Iron Mountain? How long are your backups kept on site? How often are you doing log switches and backing up your archivelogs?)
    What is your database traffic like? Are there many changes occuring on the database constantly?
    Are incrementaly backups a possibility on your system?
    How are you taking the backups? Are you using RMAN, scripted files or 3rd party software?
    And the list goes on. You can not really just throw out there "recovery window as small as possible with TB size database", you really need to look at your entire system and the options you have available.
    Edited by: Tim Boles on Apr 29, 2009 1:16 PM

  • (New to C# here) What is the best way to return false in a function if it cannot be executed successfully?

    In Javascript or PHP you can have a function that could return, for example, a string in case of success and false in case of failure.
    I've noticed (in the few days I've been learning C#) that you need to define a type of value that the function will return, so you need to return that type of value but in case of failure you can't return false.
    What is the best way to achieve this behavior and is there an example I can see?
    Thank you in advance,
    Juan

    Juan, be aware that returning null won't work with value types, such as an int, which can't be null. You'd have to use a nullable value type. A nullable int would be declared with a "?", such as:
    int? someOtherFunction(int param)
    if(something goes great)
    return param * 42;
    return null;
    And you have to use it like this:
    int? result = someOtherFunction(666);
    if (result != null) // you can also use result.HasValue
    // it worked, do something with the result
    // if you're doing math with the result, no problem
    int x = result * 2;
    // but if you're assigning it to another an int, you need to use this syntax
    int y = result.Value;
    Before nullable value types came along, for a method that returned an int, I'd use a value of something that wouldn't normally be returned by that method to indicate failure, such as a -1.
    ~~Bonnie DeWitt [C# MVP]
    That's something very very important to keep in mind. Can save you from a lot of headaches!
    So if you have an int function and it might return NULL, if you are doing Math with the return value you can use it directly, but if you're assigning it to another variable you have to use .Value?
    Thanks

  • What is the best way to reduce a .mov file size

    I had a music DVD that I converted to a .mov so that I could cut and paste in QT pro which i have done.
    Now I have a .mov file that is 46 gigabits in size and I want to reduce it considerably without ruining the quality of sound or visual.
    Whats the best way to do this.
    Thanks

    punt

  • Best way to deal with different screen sizes

    Hi !
    We have been a small company using java for our client ( http://www.topbridge.com ) . The Swing client has used panels with absolute positions so the client would fit in 800x600 screen. Since java is 'run everywhere' we would like to rewrite it so it also possible to run on smaller screens ( zaurus ) . Any suggestions about best way to do this? Is there any layout method that would try to fit everything within a given screen size?
    Thank you!

    The Swing client has used panels with absolute positions
    Well there's your problem: your UI was written by someone who didn't know how to write a UI.
    Always sketch your UI on paper, break it into logical sections rather than dealing with everything in one go (your code should break down accordingly in any case) and for each of those sections determine where space should be allocated when resizing - from this, the decision of which layout managers to use will fall out naturally.

  • Display Server Name on the title of the WINDOW : Best Way to Implement

    our weblogic is deployed in a clustered environment(group of weblogic instances)(say for eg) Server01,Server02,Server03). Every time the request will go to any one of the weblogic instances. Now i need to display the server name on the title of the IE window.
    Web Application : - Server02(request 1)
    Web Application : - Server03(request 2)
    For that i've followed the following approach.
    <filter>
    <filter-name>AppFilter</filter-name>
    <filter-class>com.src.app.AppFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>AppFilter</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    All request will go thro' the filter.
    In filter, dofilter method of AppFilter, set the server name as below.
    request.setAttribute("HOSTNAME", (" " + InetAddress.getLocalHost().getHostName()));
    In all jsp title,do the following.
    <title>WEB Application <%= request.getAttribute("HOSTNAME") %></title>
    This is working fine. I would like to know, if there's any better way of doing this?

    Thanks for all your replies
    user13118480,
    We have one admin server and 3 managed servers.
    3 managed servers are in different machines(sprd01,sprd02,sprd03).
    we have a big ip configured against these managed servers. we expose only the big ip to the end user.
    Based on load, the admin server will route the request to any one of the managed servers.
    Reason for displaying the server name on window
    The reason for displaying the Server Name (m/c name where managed server is running) on the window , is to help the developers to find out
    the current logs.
    log (app.log - logger file - log4j ) will go to sprd01,sprd02,sprd03.
    now if we display the servername on the window, then we can direct go the machine and look for the logs.
    otherwise,developer has to search for all in all the boxes.(sprd01,sprd02,sprd03)
    Questions:
    --Now i would like here more abt the Host HTTP header.
    *1. is my approach to retreive the host machine name is good? is there any other simple way to get the host name?*
    *2. as per your answer, are you asking me to get the host name from httpheader. request.getRemoteHost()?*
    *3. is there any way i can set the title of the browser window from filter itself instead of setting requestAttribute in filter and reading the same in*
    all the jsp's?
    4. Is there any better way to implement this requirement?
    baftos,
    Reason for using a filter.
    Tomorrow if i dont want to display the machine name in the window,
    then all i need to do , is to change the filter statement as follows, instead of changing all the jsp's.
    request.setAttribute("HOSTNAME", "");

  • Best way to organize classes to keep size small

    I have Flash MX 2004. I want to write some actionscript
    classes that i can import into my actionscript. I also want a user
    using my classes to be able to choose which class might get used to
    encode data. Is there a way that my main class (let's call it
    Service) can choose which file to reference for another class? For
    instance, if I want my Service class to be a communication channel
    and I want to have it encode data as XML i could choose a class
    called SerializeXML. If I wanted my data encoded as a PHP object, i
    would use SerializePHP.
    Ideally using my main Service class in your Flash file would
    not unnecessarily include classes that do not get used. For
    instance if I'm developing my Flash project to speak with a PHP
    server, there would be no need for SerializeXML.
    Is there some easy way to do this? I'm also hoping to make my
    class very easy to use so the users don't have to write a ton of
    code to choose SerializeXML vs. SerializePHP.

    Two things. Most classes are pretty small and don't add much
    weight to a published file anyways. But…
    import com.sneakyimp.serialize.*
    Doesn't actually import/include the whole package in the
    published swf file. It just provides a shortcut for any reference.
    The actual class will only be compiled and put into the file if it
    is instantiated or if any of its methods are used on another class
    instance that has been cast to that class. (I think. I'm a bit new
    to the whole class thing. In my head I've got it straight, but I'm
    not sure I've explained it properly.)

  • Best way to return large resultsets

    Hi everyone,
    I have a servlet that searches a (large) database by complex queries and sends the results to an applet. Since the database is quite large and the queries can be quite general, it is entirely possible that a particular query can generate a million rows.
    My question is, how do I approach this problem from a design standpoint? For instance, should I send the query without limits and get all the results (possibly a million) back? Or should I get only a few rows, say 50,000, at a time by using the SQL limit construct or some other method? Or should I use some totally different approach?
    The reason I am asking this question is that I have never had to deal with such large results and the expertise on this group will help me avoid some of the design pitfalls at the very outset. Of course, there is the question of whether the servlet should send so may results at once to the applet, but thats probably for another forum.
    Thanks in advance,
    Alan

    If you are using a one of the premiere databases (Oracle, SQL Server, Informix) I am fairly confident that it would be best to allow the database to manage both the efficiency of the query, and the efficiency of the transport.
    QUERY EFFICIENCY
    Query efficiences in all databases are optimized by the DBMS to a general algorithm. That means there are assumptions made by the DBMS as to the 'acceptable' number of rows to process, the number of tables to join, the number of rows that will be returned, etc. These general algorithms do an excellent job on 95+% of queries run against database. However, f you fall outside the bounds of these general algorithms, you will run into escalating performance problems. Luckily, SQL syntax provides enourmous flexibility in how to get your data from the database, and you can code the SQL to 'help' the database do a better job when SQL performance becomes a problem. On the extreme, it is possible that you will issue a query that overwhelms the database, and the physical resources available to the database (memory, CPU, I/O channels, etc). Sometimes this can happen even when a ResultSet returns only a single row. In the case of a single row returned, it is the intermediate processing (table joins, sorts, etc) that overwhelms the resources. You can help manage the memory resource issue by purchasing more memory (obviously), or re-code the SQL to a more apply a more efficent algorithm (make the optimizer do a better job), or you may as a last resort, have to break the SQL up into seperate SQL statements, using more granual approach (this is your "where id < 1000"). BTW: If you do have to use this approach, in most casees using the BETWEEN is often more efficient.
    TRANSPORT
    Most if not all of the JDBC drivers return the ResultSet data in 'blocks' of rows, that are delivered on an as needed basis to your program. Some databases alllow you to specify the size of these 'blocks' to aid in the optimization of your batch style processes. Assuming that this is true for your JDBC driver, you cannot manage it better than the JDBC driver implementation, so you should not try. In all cases, you should allow the database to handle as much of the data manipulation and transport logic as possible. They have 1000's of programmers working overtime to optimzie that code. They just have you out numbered, and while it's possible that you can code an efficiency, it's possible that you will be unable to take advantage of future efficiencies within the database due to your proprietary efficiencies.
    You have some interesting, and important decisions to make. I'm not sure how much control of the architecture is available, but you may want to consider alternatives to moving these large amounts of data around through the JDBC architecture. Is it possible to store this information on the server, and have it fetched using FTP or some other simple transport? Far less CPU usage, and more efficient use of your bandwith.
    So in case it wasn't clear, no, I don't think you should break up the SQL initially. If it were me, I would probably spend the time in putting out some metic based information to allow you to better judge where you are having slow downs when or if any should occur. With something like this, I have seen I.T. spend hours and hours tuning SQL just to find out that the network was the problem (or vice versa). I would also go ahead and run the expected queries outside of application and determine what kind of problems there are before coding of the application is finished.
    Hey, this got a bit wordy, sorry. Hopefully there is something in here that can help you...Joel

  • Best way to return complex datasets out of a procedure

    Dear Oracle experts,
    I'm presently writing on a procedure which should return a kind of datastructure which contains some rows of a table (SIGFacts) which are selected in dependence of
    a result set in a cursor.
    I would like to return this result set in a manner which enables external programs to
    fetch this data.
    What I tried in the procedure below is to create a record and make it accessible from external programs outside Oracle (see below).
    But I'm not sure whether this is a suitable method.
    I'm wondering about several questions :
    Is it suitable to give back a record or should I always give back a Cursor ?
    If I should give back a cursor, how could I fetch all the data within the record into a cursor ?
    And a stupid beginners question :
    How can I use the record from a external program ?
    (My procedure belongs to a package. The record is defined in the Package head ((see below))
    procedure PROCFINDINITIALSWITCHSTATE (SwitchID INTEGER, StartTime TIMESTAMP, ausgabe2 out nocopy SIGFACTTABLE) is
    cursor cursor0 (SwitchID Integer) is
    select var_ref from DynamicLines where BELONGSTOSWITCHID = SwitchID;
    cursor cursor1 (StartTime timestamp, VarRef Integer) RETURN SigFacts%ROWTYPE is
    Select * from SIGFacts where (NewValue=1) AND DT<= StartTime AND
    Var_ref = VarRef AND rownum = 1 order by DT DESC;
    tempRecord SIGFACTTYPE;
    tempTable SIGFACTTABLE;
    BEGIN
    tempTable := SIGFACTTABLE(); --Loeschen der tempTable (Initialisierung mit NULL)
    for datensatz in cursor0(SwitchID) loop
    for datensatz2 in cursor1 (StartTime, datensatz.Var_Ref) loop
    tempTable.extend(1); -- Hinzufuegen eines (zunaechst leeren) Datensatzes
    tempTable(tempTable.count).AUTOID := datensatz2.AUTOID;
    tempTable(tempTable.count).VAR_REF := datensatz2.VAR_REF;
    tempTable(tempTable.count).DT := datensatz2.DT;
    tempTable(tempTable.count).MACHINES_REF := datensatz2.MACHINES_REF;
    tempTable(tempTable.count).VARIABLESID := datensatz2.VARIABLESID;
    tempTable(tempTable.count).OLDVALUE := datensatz2.OLDVALUE;
    tempTable(tempTable.count).NEWVALUE := datensatz2.NEWVALUE;
    tempTable(tempTable.count).PRODUCTS_REF := datensatz2.PRODUCTS_REF;
    tempTable(tempTable.count).USERS_REF := datensatz2.USERS_REF;
    tempTable(tempTable.count).LINE_ID := datensatz2.LINE_ID;
    end loop;
    end loop;
    --return tempTable
    END PROCFINDINITIALSWITCHSTATE;
    I declared the Record in the Head section of the same package.
    type SIGFACTTYPE is record(
    AUTOID SIGFACTS.AUTOID%type, Var_Ref SIGFACTS.Var_ref%type, DT SIGFACTS.DT%type
    , machines_ref SIGFACTS.machines_ref%type, variablesid SIGFACTS.variablesid%type
    , oldvalue SIGFACTS.oldvalue%type,
    newvalue SIGFACTS.newvalue%type, products_ref SIGFACTS.products_ref%type
    , users_ref SIGFACTS.users_ref%type, line_id SIGFACTS.line_id%type
    type SIGFACTTABLE is table of SIGFACTTYPE;

    Dear Oracle experts,
    I'm presently writing on a procedure which should return a kind of datastructure which contains some rows of a table (SIGFacts) which are selected in dependence of
    a result set in a cursor.
    I would like to return this result set in a manner which enables external programs to
    fetch this data.
    What I tried in the procedure below is to create a record and make it accessible from external programs outside Oracle (see below).
    But I'm not sure whether this is a suitable method.
    I'm wondering about several questions :
    Is it suitable to give back a record or should I always give back a Cursor ?
    If I should give back a cursor, how could I fetch all the data within the record into a cursor ?
    And a stupid beginners question :
    How can I use the record from a external program ?
    (My procedure belongs to a package. The record is defined in the Package head ((see below))
    procedure PROCFINDINITIALSWITCHSTATE (SwitchID INTEGER, StartTime TIMESTAMP, ausgabe2 out nocopy SIGFACTTABLE) is
    cursor cursor0 (SwitchID Integer) is
    select var_ref from DynamicLines where BELONGSTOSWITCHID = SwitchID;
    cursor cursor1 (StartTime timestamp, VarRef Integer) RETURN SigFacts%ROWTYPE is
    Select * from SIGFacts where (NewValue=1) AND DT<= StartTime AND
    Var_ref = VarRef AND rownum = 1 order by DT DESC;
    tempRecord SIGFACTTYPE;
    tempTable SIGFACTTABLE;
    BEGIN
    tempTable := SIGFACTTABLE(); --Loeschen der tempTable (Initialisierung mit NULL)
    for datensatz in cursor0(SwitchID) loop
    for datensatz2 in cursor1 (StartTime, datensatz.Var_Ref) loop
    tempTable.extend(1); -- Hinzufuegen eines (zunaechst leeren) Datensatzes
    tempTable(tempTable.count).AUTOID := datensatz2.AUTOID;
    tempTable(tempTable.count).VAR_REF := datensatz2.VAR_REF;
    tempTable(tempTable.count).DT := datensatz2.DT;
    tempTable(tempTable.count).MACHINES_REF := datensatz2.MACHINES_REF;
    tempTable(tempTable.count).VARIABLESID := datensatz2.VARIABLESID;
    tempTable(tempTable.count).OLDVALUE := datensatz2.OLDVALUE;
    tempTable(tempTable.count).NEWVALUE := datensatz2.NEWVALUE;
    tempTable(tempTable.count).PRODUCTS_REF := datensatz2.PRODUCTS_REF;
    tempTable(tempTable.count).USERS_REF := datensatz2.USERS_REF;
    tempTable(tempTable.count).LINE_ID := datensatz2.LINE_ID;
    end loop;
    end loop;
    --return tempTable
    END PROCFINDINITIALSWITCHSTATE;
    I declared the Record in the Head section of the same package.
    type SIGFACTTYPE is record(
    AUTOID SIGFACTS.AUTOID%type, Var_Ref SIGFACTS.Var_ref%type, DT SIGFACTS.DT%type
    , machines_ref SIGFACTS.machines_ref%type, variablesid SIGFACTS.variablesid%type
    , oldvalue SIGFACTS.oldvalue%type,
    newvalue SIGFACTS.newvalue%type, products_ref SIGFACTS.products_ref%type
    , users_ref SIGFACTS.users_ref%type, line_id SIGFACTS.line_id%type
    type SIGFACTTABLE is table of SIGFACTTYPE;

  • My iPad screem is very big any way to put back to original size i can not open any program

    my iPad screen is very big any advise how to put back to the original size? i can not open anything i have one big iten in all my screen

    Try double-tapping the screen with 3 fingers, then make sure that Settings > General > Accessibility > Zoom is 'off'

Maybe you are looking for