How to create table containe blob column view?

Hi, I would like to aske any type of blob data
I have data containe blob clolumn type table

I want to create view this table how do?
and


If I created the table view blob column data will be responsible for memory or what because that will cause some performance issues because the table contains enormous data?


Thank you

You must create the view as

  CREATE OR REPLACE VIEW 
  AS
     SELECT col1, col2, col3.....
     FROM    
     WHERE   
     ...etc...

The Act of creating the view will not otherwise the data in the table underlying, all it will do is create a view definition.
Select only the view will select data.

If you don't need to select the BLOB column in the view, then you would not include it in the list of the columns in the view definition.
If your LOB data are stored online, then it may be a significant selection of the view, even if the BLOB column is not indicated in the list of the columns in the view.

Published by: dombrooks on June 1, 2009 10:12

Tags: Database

Similar Questions

  • How to find DB tables containing specific columns (ORG_ID / ORGANIZATION_ID)

    Hi all, I would like to know if someone has developed a script to find all tables containing the columns (fields) specific.


    I'm on a migration project where I don't have access to the source of the DB, I just ask for queries and I to reflect all the tables DB containing specific data of organization.

    So the first step was to understand used tables and I get them, now I understand what tables have Org_id / Organization_ID and fields of the SOURCE of the LANGUAGE/LANGUAGE (source DB has much set Org and many languages also, so I need to filter the 100total 6ORG_ID and 2 languages of 8 total installed)

    Can anyone help?

    Thank you

    Best regards

    Pietro

    Hello

    You can see this:

    Find all tables in db with the name of the column of a particular string?

    Kind regards

    MihaiF

  • How to create table of the method

    Hello-

    Could someone please tell me how can I create an af:table with more than one column of an AppsModule method.

    When I have a 1 d table return for example:

    public String [] createTable()}
    String [] str = new String [1];
    return str;
    }

    I can get as a table and a column is created. But how do I get mutiple columns in a table. I want to write a method that when inserted on jsp page create table with multiple columns.

    I use ADF 11 g.

    Please suggest.

    Greetings-
    Rohit

    Hello

    to do this, you use a matrix, or a list of arrays of objects. The object represents the contents of the line, e.g., person. The Person class then have setter/getter for each property you want to display in a column

    Frank

  • How to MERGE when the target table contains invisible columns?

    Oracle running on Oracle Linux 6.4 12.1.0.2.0 database:

    During his studies of FUSION with invisible columns, I discovered that invisible columns in the target table cannot be read. Workaround seems to be

    MERGE INTO (SELECT <column list> FROM <target table>) AS <alias>
    

    However, the documentation does not seem to allow this. Here are the details.

    Test data

    > CREATE TABLE t_target(
      k1 NUMBER PRIMARY KEY,
      c1 NUMBER,
      i1 NUMBER invisible
    )
    
    table T_TARGET created.
    
    > INSERT INTO t_target (k1,c1,i1)
    SELECT 2, 2, 2 FROM dual
    UNION ALL
    SELECT 3, 3, 3 FROM dual
    UNION ALL
    SELECT 4, 4, 4 FROM dual
    
    3 rows inserted.
    
    > CREATE TABLE t_source(
      k1 NUMBER PRIMARY KEY,
      c1 NUMBER,
      i1 NUMBER invisible
    )
    table T_SOURCE created.
    
    > INSERT INTO t_source (k1,c1,i1)
    SELECT 1, 1, 1 FROM dual
    UNION ALL
    SELECT 2, 2, 9999 FROM dual
    UNION ALL
    SELECT 3, 3, 3 FROM dual
    
    3 rows inserted.
    

    First try

    Please note that I have a WHERE clause in the WHEN MATCHED clause. Its purpose is to avoid the update of a row when data are already correct. The WHERE clause is trying to read the invisible column of the target table.

    > MERGE INTO t_target o
    USING (
      SELECT k1, c1, i1 FROM t_source
    ) n
    ON (o.k1 = n.k1)
    WHEN MATCHED THEN UPDATE SET
      c1=n.c1, i1=n.i1
      WHERE 1 IN (
        decode(o.c1,n.c1,0,1),
        decode(o.i1,n.i1,0,1)
      )
    WHEN NOT MATCHED THEN INSERT
      (k1, c1, i1)
      VALUES(n.k1, n.c1, n.i1)
    ...
    Error at Command Line : 10 Column : 12
    Error report -
    SQL Error: ORA-00904: "O"."I1": invalid identifier
    

    As you can see, I put a subquery after the USING clause so that 'n.i1' would be 'visible', but this is not enough since the 'I1' column in the target table is always invisible.

    Second test

    > MERGE INTO (
      SELECT k1, c1, i1 FROM t_target
    ) o
    USING (
      SELECT k1, c1, i1 FROM t_source
    ) n
    ON (o.k1 = n.k1)
    WHEN MATCHED THEN UPDATE SET
      c1=n.c1, i1=n.i1
      WHERE 1 IN (
        decode(o.c1,n.c1,0,1),
        decode(o.i1,n.i1,0,1)
      )
    WHEN NOT MATCHED THEN INSERT
      (k1, c1, i1)
      VALUES(n.k1, n.c1, n.i1)
    
    2 rows merged.
    

    Here I used a subquery in the INTO clause thus, and it worked.

    Unfortunately, this does not seem to be admitted in the documentation: IN fact refers to a table or a view as schema objects.

    Description of merge.gif follows

    My question is:

    How can I refer to invisible columns in the target table without creating a new object? My workaround using a subquery solution seems to work very well, but can I recommend if it is not documented?

    Can I replace a "inline view" for a view and still be supported?

    During his studies of FUSION with invisible columns, I discovered that invisible columns in the target table cannot be read. Workaround seems to be

    However, the documentation does not seem to allow this. Here are the details.

    Here I used a subquery in the INTO clause thus, and it worked.

    Unfortunately, this does not seem to be admitted in the documentation: IN fact refers to a table or a view as schema objects.

    My question is:

    How can I refer to invisible columns in the target table without creating a new object? My workaround using a subquery solution seems to work very well, but can I recommend if it is not documented?

    Can I replace a "inline view" for a view and still be supported?

    But the documentation DO ALLOWS not only! You use a view - a view online and those that can be changed in a MERGE statement.

    All versions of the doc for FUSION since 9i specifically say this:

    INTO clause

    Use the INTO target clause to specify the table or view you are updating or inserting into. To merge the data in a view, the view must be updated. Please refer to the "Notes on the editable views" for more information.

    Here are the links for the doc. 9i, 10g, 11g and c 12, ALL OF THEM (the last three), except 9i have this EXACT clause above.

    SQL statements: INDICATED to ROLLBACK FALLS, 15 of 19

    http://docs.Oracle.com/CD/B19306_01/server.102/b14200/statements_9016.htm

    http://docs.Oracle.com/CD/B28359_01/server.111/b28286/statements_9016.htm

    https://docs.Oracle.com/database/121/SQLRF/statements_9016.htm

    9i doc does not have this specific quote in the INTO clause section, but it doesn't have that quote a little later:

    Limitation of the update of a view
    • You cannot specify DEFAULT when refreshing a view.
    • You cannot update a column referenced in the ON condition clause.
    merge_insert_clause

    The merge_insert_clause specifies the values to insert into the column of the target table, if the condition of the ON clause is false. If the insert clause is executed, then all insert triggers defined on the target table are activated.

    Restrictions on the merger in a view

    You cannot specify DEFAULT when refreshing a view.

    If your "workaround" isn't really a workaround solution. You SHOULD use an inline view if you need to reference a column "invisible" in the target table, since otherwise, these columns are INVISIBLE!

    My workaround using a subquery solution seems to work very well, but can I recommend if it is not documented?

    You can recomment it because IT IS documented.

  • How can I read a BLOB column with images and write a directory

    Hello

    I have a few paintings with a Blob column, in the columns there are documents (word, excel, images... etc), I have read the column of table and save a directory



    How can I do


    Version 9.2.08

    LS - ltr/bdados3/repser
    ls - ld /bdados3/

    view the results of above OS commands

  • How to create indexes on the column xmtype

    Hello

    I have a table as follows

    CREATE TABLE T_TEST_XML (ID_PROCESSUS NUMBER, TXT_XML XMLTYPE);


    I query the table above very frequently with the query

    SELECT * FROM TXS T_TEST_XML WHERE EXISTSNODE (TXS. TXT_XML, '/ order [status = "PEN"]') = 1


    How to create function function index on the TXT_XML column for the xpath expression/order [status = "PEN"]' to improve the query performance?

    Thank you

    In fact if you are limited to the use of older software

    1 consider to define an XML schema and store XML using storage relational object.

    or

    2. If you need to store XML as CLOB to create the index on extractValue(), rather than existsNode() and provide the underlying value at the SQL level rather than the XPATH level.

    SQL> DROP TABLE T_TEST_XML
      2  /
    
    Table dropped.
    
    SQL> CREATE TABLE T_TEST_XML (PROCESS_ID NUMBER, TXT_XML XMLTYPE)
      2  /
    
    Table created.
    
    SQL> create INDEX T_TEXT_XML_IDX on T_TEST_XML( extractValue(TXT_XML,'/order/status'))
      2  /
    
    Index created.
    
    SQL> set autotrace on explain
    SQL> --
    SQL> SELECT *
      2    FROM T_TEST_XML TXS
      3   WHERE ExistsNode(TXT_XML,'/order[status="PEN"]') = 1
      4  /
    
    no rows selected
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 3001212210
    
    ---------------------------------------------------------------------------------
    | Id  | Operation          | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT   |            |     1 |  2017 |    31   (0)| 00:00:01 |
    |   1 |  NESTED LOOPS SEMI |            |     1 |  2017 |    31   (0)| 00:00:01 |
    |   2 |   TABLE ACCESS FULL| T_TEST_XML |     1 |  2015 |     2   (0)| 00:00:01 |
    |*  3 |   XPATH EVALUATION |            |       |       |            |          |
    ---------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       3 - filter("P"."C_01$"='PEN')
    
    Note
    -----
       - dynamic sampling used for this statement (level=2)
    
    SQL> SELECT *
      2    FROM T_TEST_XML TXS
      3   WHERE extractValue(TXT_XML,'/order/status') = 'PEN'
      4  /
    
    no rows selected
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 1430727070
    
    ----------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name           | Rows  | Bytes | Cost (%CPU)| Time     |
    ----------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |                |     1 |  2015 |     1   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_TEST_XML     |     1 |  2015 |     1   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | T_TEXT_XML_IDX |     1 |       |     1   (0)| 00:00:01 |
    ----------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access(EXTRACTVALUE(SYS_MAKEXML(0,"SYS_NC00003$"),'/order/status',null,0,0,5242
                  93,133120)='PEN')
    
    Note
    -----
       - dynamic sampling used for this statement (level=2)
    
    SQL>
    SQL>
    SQL>
    SQL>
    SQL>
    SQL>
    

    This allows the index press questioning on any status value, rather than just the PEN

  • How to create a trigger on a view

    Hi all

    I am trying to create a trigger on a view that is used to update a few columns in the base table. As I am new to the trigger, an example will be appreciated.

    Thanks in advance.

    You would probably be, test the trigger by performing an insert or an update on the view in question and checking that the trigger did what you expected for the base tables.

    Justin

  • How to create tables without visible lines?

    How an a table with no visible vertical and horizontal lines dividing the rows and columns?

    Owen,

    Luca

    Just turn off the borders of the cells.

  • How to create Table View with even a column name but another Table?

    Hi all

    I have the problem to create a tableview with the same column name, but in the other table.

    Table I: -.

    Table - PAC051MPROFORMA

    Column - MNR, visitid

    Table - PAC051TPROFORMA
    Column - MNR, visitid

    Table - PAC052MTRANSBILL
    Column - MNR, visitid

    Then, I want to create a table for this table. It comes to my SQL

    Pacviewproforma CREATE VIEW (MNR, visitid, MNR, visitid, MNR, visitid)

    Like some PAC051MPROFORMA.mrn, PAC051MPROFORMA.visitid, PAC051TPROFORMA.mrn, PAC051TPROFORMA.visitid, PAC052MTRANSBILL.mrn, PAC052MTRANSBILL.visitid

    where

    * (a.PAC051MPROFORMA.mrn = PAC051TPROFORMA.mrn) *.
    and
    * (a.PAC051TPROFORMA.mrn = PAC052TRANSBILL.mrn) *.

    SQL return this error ORA-00957 =: duplicate column name

    Can I change this SQL for

    Pacviewproforma CREATE VIEW (MNR, visitid)

    Like some PAC051MPROFORMA.mrn, PAC051MPROFORMA.visitid, PAC051TPROFORMA.mrn, PAC051TPROFORMA.visitid, PAC052MTRANSBILL.mrn, PAC052MTRANSBILL.visitid

    where

    * (a.PAC051MPROFORMA.mrn = PAC051TPROFORMA.mrn) *.
    and
    * (a.PAC051TPROFORMA.mrn = PAC052TRANSBILL.mrn) *.
    This time this error return = ORA-01730: number of column names specified invalid

    What should I do?

    Thank you...

    Hello

    SQL> CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
     10  where
     11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
     12  and
     13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
                                             *
    ERROR at line 1:
    ORA-00957: duplicate column name
    

    Please give different names to each column.

    Something like that...

    SQL> CREATE OR REPLACE VIEW pacviewproforma (MPROFORMA_mrn,MPROFORMA_visitid,TPROFORMA_mrn,TPROFORMA
    _visitid,MTRANSBILL_mrn,MTRANSBILL_visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
     10  where
     11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
     12  and
     13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    
    View created.
    
    SQL> DESC  pacviewproforma;
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     MPROFORMA_MRN                                      NUMBER
     MPROFORMA_VISITID                                  NUMBER
     TPROFORMA_MRN                                      NUMBER
     TPROFORMA_VISITID                                  NUMBER
     MTRANSBILL_MRN                                     NUMBER
     MTRANSBILL_VISITID                                 NUMBER
    

    ORA-01730: number of column names specified invalid

    The list of the nmae column you specified for the CREATE VIEW must correspond with the list of SELECTION in the view.

    Twinkle

  • How to create the container element using Vi types in teststand

    Hello

    I want to create containers in the Array element in teststand, which different downhill element. for example I like, .txt file

    Name height, age, color

    A, 20, 186, black

    B, 30 170, white

    first line should be elements of the container, and the second line should be the value of the element. Raising must be string, number or boolean.

    Then, in the second container to new element in the first row and value in the third row.

    And all this container must be below the table of the fileglobals element or people of the country.

    Is there any suggestions how?

    Thank you much in advance.

    Kind regards

    Ankit.

    Hi Pierre,.

    I edited your VI test and successfully wrote the table of container to a variable existing non "Locals.dummy99" (see screenshot).

    Best regards

    Christoph

  • How to create a layout three columns of expandable width?

    Hi all

    Using JDeveloper 12.1.3.

    I am trying to create a three-column page layout, two rows, with the column widths of 40%, 10%, 40% and 50% line heights, 50%.  If it's important, the middle column could be a fixed width.  In HTML, it would be something like below:


    <table>
         <tr style="height:50%">
              <td rowspan="2" style="width:40%"></td>
              <td rowspan="2" style="width:10%"></td>
              <td style="width:40%"></td>
         </tr>
         <tr  style="height:50%">
              <td></td>
         </tr>
    </table>  
    

    Any suggestions on how I would go all this in the ADF?  < af:panelSplitter > does not have a % value and < af:gridLayout > is not working correctly or the other.

    I intend to put the tables completely stretched in the 1st and 3rd columns and a group of buttons in the 2nd column.  The end result is looks a bit like a personalized shuttle component.

    Hello

    Why do you use for the design of ADF page html tags?

    for use of three column layout - panelStrtechLayout

    She start, Center, end, high and low side and you can set the width in pixels for each facet according to your requirement

    Here's the value upper and lower facet width 0px use only 3 columns

    Thank you

  • How to create an auto adjustment column on dashboard

    I have a problem with obiee 1.1.1.7.

    I have a dashboard with 2 columns placed side by side and I want to have the column on the left with the minimum size to display the content of the section and the right column fill the rest of the browser window. The left column contains a small guest and the right a PivotTable.

    Reach 1.1.1.6 result is trivial: you only need to set the width property of the column on the left to a small number of point (for example 15pt) and Obiee expands the column to match the fast size.

    1.1.1.7 I tried all combinations of formatting for column, section options and dashboard, but I can't understand how to achieve the same result: in the same case, I kinda left column but with scroll bar (I don't want scrollbar, I want a column wide enough to display the prompt). in the same case, left column is too large and the guest lies in the middle of the section.

    Can someone help me?

    Thank you

    Luke

    @Srini - using specific this column doesn't expand to match the fast size.  Wouldn't be better to use "minimum size"?  Then the quick column would increase if necessary without a horizontal scroll bar.

    @luc - sets the quick column 'size minimue' and give a value of 15px or other.  Set the report column to a width of 'size' of 100%.  You should be all set.

  • How to create table selectable line or not based on the value of the line

    Hello.

    JDeveloper 11.1.1.2

    Is it possible to make a selectable table row or not based on a value in the line.

    That is to say. lets say that the row contains a Boolean LOCKED = TRUE.
    This line should not be selectable.

    A line whose value LOCKED = FALSE should be selectable.

    / Erik

    Erik,

    No particular reason to disable a selection of lines for a particular line? If I'm an end user, I would be clicking on the same line of thought again and again my mouse does not ;) (call me dumb :)). How do you differentiate this line (using inlineStyle / styleClass) based on the value of line? In addition, you can disable the other buttons when a row with a particular value is selected (so that the user knows that the selected line is not treatable).

    Arun-

  • How to create table of 288 HP push button in the PXI-6509 (3pcs)

    Hi all

    Need help...

    I am a beginner in labview. & her first time use OR for my project.

    We must push buttom about 288 HP control panel. We use PXI-6509 (3 pcs)

    & I do a code (in tie).

    but some time appear as a bug if we push a button push button after all. but some time is ok.

    Please correct the code.

    Thank you very much...

    It seems to work fine for me.  What do you mean by "sometimes appear like a bug?  How is it not behave like you want.

    A few recommendations:

    1. There is no logical reason for the node feedback on some of your cables of the error.

    2. you can turn some of your groups of buttons in a cluster.  This way you can work on changing the value of a cluster and do not have to set up 100's of changes made to the values of the individual controls.  You'd also be abe to easily use the cluster to table to transform your cluster of Boolean Boolean rather than building tables table by manually cabling up to 100's of controls.

  • How to create table of controls (Images, buttons) in ActionScript

    Hello!

    Could someone help with ActionScript and Playbook SDK?

    How can I create a two-dimensional array of controls (buttons, images, text fields) in ActionScript?

    And how do I use radio buttons in ActionScript?

    Hey,.

    keys and parts do not have ID like in html and javascript. That being said, its impossible to do it like that. the best approach is to create your own class that extends the LabelButton (or whatever component you need) and have an id property that is implemented. so, you can set a code personal to her. I've implemented what you asked below. You can apply this to other components as well enough to make changes to the class and modify the extension. Here is the code:

    LabelButtonTest.as (main application class):

    package
    {
        import flash.display.Sprite;
        import flash.display.StageAlign;
        import flash.display.StageScaleMode;
        import flash.events.MouseEvent;
    
        [SWF(width="1024", height="600", backgroundColor="#CCCCCC", frameRate="30")]
        public class LabelButtonTest extends Sprite
        {
            private var myButtons:Array;
    
            public function LabelButtonTest()
            {
                super();
    
                // support autoOrients
                stage.align = StageAlign.TOP_LEFT;
                stage.scaleMode = StageScaleMode.NO_SCALE;
    
                /*
                 *  Initialize your array of 2 X N (in our case we will be using 10)
                */
    
                myButtons = new Array(new Array(), new Array());
    
                /*
                 * Now we set up our array, first doing the first row and
                 * set up 10 buttons with their own ID using the constructor
                 * for our custom class CustomLabelButton(ID)
                */
    
                for (var i:int = 0; i < 10; i++)
                {
                    var myBtn:CustomLabelButton = new CustomLabelButton(i);
    
                    myBtn.label = "Button " + i;
                    myBtn.setSize(100, 50);
    
                    myBtn.addEventListener(MouseEvent.CLICK, onClickEvent);
    
                    myButtons[0].push(myBtn);
    
                }
    
                /*
                 * We do the same for the second row of buttons, starting
                 * with 10
                */
    
                for (var i:int = 10; i < 20; i++)
                {
                    var myBtn:CustomLabelButton = new CustomLabelButton(i);
    
                    myBtn.label = "Button " + i;
                    myBtn.setSize(100, 50);
    
                    myBtn.addEventListener(MouseEvent.CLICK, onClickEvent);
    
                    myButtons[1].push(myBtn);
                } 
    
                /*
                 * Finally we cycle through our arrays and add them to our display
                 * this wil produce two rows of 10 buttons going accross
                 * each when clicked will call the funciton onClickEvent and
                 * trace out their ID to the debugger
                */
    
                for (var i:int = 0; i < 10; i++)
                {
                    var myBtn:CustomLabelButton = myButtons[0][i];
                    var xPos:int = (i * 100) + 10;
                    var yPos:int = 10;
    
                    myBtn.setPosition(xPos,yPos);
    
                    addChild(myBtn);
                }
    
                for (var i:int = 0; i < 10; i++)
                {
                    var myBtn:CustomLabelButton = myButtons[1][i];
                    var xPos:int = (i * 100) + 10;
                    var yPos:int = 60;
    
                    myBtn.setPosition(xPos,yPos);
    
                    addChild(myBtn);
                }
    
            }
            public function onClickEvent(e:MouseEvent):void
            {
                /*
                 * Print out ID of the button thats clicked
                */
                trace("the button ID is: " + e.target.id);
            }
        }
    }
    

    CustomLabelButton.as (our custom label with the ID property button class):

    package
    {
        import qnx.ui.buttons.LabelButton;
    
        public class CustomLabelButton extends LabelButton
        {
            private var _id:int;
    
            public function CustomLabelButton(num:int = 0)
            {
                super();
    
                id = num;
    
            }
            public function set id(num:int):void
            {
                _id = num;
            }
            public function get id():int
            {
                return _id;
            }
        }
    }
    

    run the code and see how it works. I hope that's what you're looking for. Good luck!

Maybe you are looking for

  • Satellite A200-1CR: Question about upgrade HARD drive

    Hi all...I would like to ask something... I have toshiba Satellite A200-1cr with 120 GB HARD drive... I would like to change my HARD drive. I found a disk hard 2.5 "with 250 GB. My questions are the following: (1) my knowledge of the workstations are

  • How to connect table 1 d boolean selector case?

    Hello I use two types of sensor to a controller. It is the first part. When I tried to get my sensor with labview real-time, I found some unwanted data. for example, after each set of data of 5/10, suddenly I had (o.oo o.oo) data type. interesting is

  • automatic file naming and saving data

    Hello I'm building a program where there will be several scan-V for each temperature value. I would like to make automatic data backup them. To explain in more detail: I want the program to generate a new file on its own, give a file name according t

  • How to remove or uninstall 'PC Security Guardian' a fake antivirus?

    How to remove or uninstall 'PC Security Guardian' a fake antivirus?

  • USB ports do not recognize my mouse

    I have a Sony 64 bit computer with Vista. I had the same Logitech VX Nano mouse before but she had to be replaced. I also had computer problems and restored the whole system using the F10 key. Now my new mouse, who has just arrived, this is the same