Merge not supported on table space

Hi all

I'm working on an existing table that has a unique id. It should be expanded with additional id, which we will call a group id.

Assume there is a table
create table t
(
  object_id number not null,
  f1        varchar2(100) not null,
  f2        varchar2(100) not null,
  f3        varchar2(100) not null,
  f4        mdsys.sdo_geometry,
  group_id  number
);
The object_id is the PK and obviously unique. The group_id must be unique for each distinct f1, f2, f3 combination.

I like the merge statement, also for the updates, because of its flexible syntax. I wanted to do:
merge into t
using ( select distinct 
               f1
       ,       f2
       ,       f3
       ,       rownum group_id
       from    t ) g
on    (        t.f1 = g.f1
        and    t.f2 = g.f2
        and    t.f3 = g.f3 )
when matched then update
        set    t.group_id = g.group_id;
but I get an ORA-29886: feature not supported for the field index. (I'm on Oracle Database 10 g Enterprise Edition Release 10.2.0.4.0)

Of course, it is easy to write a pl/sql loop (and I did), but is there a way to do this in pure sql in a single update statement in an elegant way?

Thank you!

Boneist wrote:
Assuming that object_id is a primary key, then I would do something like:

update t
set    t.group_id = (select t2.dr
from   (select t1.*, dense_rank() over (partition by t1.f1, t1.f2 order by t1.f1, t1.f2) dr
from   t t1) t2
where  t2.object_id = t.object_id)

Works better without the PARTITION BY clause ;)

UPDATE t
SET group_id = (
  SELECT dr
  FROM (
    SELECT object_id,
           dense_rank() over(order by f1, f2, f3) dr
    FROM t
  ) v
  WHERE v.object_id = t.object_id
)
;

Of course, it is easy to write a pl/sql loop (and I did), but is there a way to do this in pure sql in a single update statement in an elegant way?

Boneist suggested (without partition), or somewhere in between with a FORALL statement.

For example:

DECLARE

 gid_tab sys.odcinumberlist;
 oid_tab sys.odcinumberlist;

BEGIN

  select object_id,
         dense_rank() over(order by f1, f2, f3)
  bulk collect into oid_tab, gid_tab
  from t
  ;

  forall i in 1..oid_tab.count
   update t
   set group_id = gid_tab(i)
   where object_id = oid_tab(i)
  ;

END;
/

According to the volume of data to process, you may need to test with a LIMIT of COLLECT clause in BULK as well.

Edited by: odie_63 Feb 4. 2011 15:26

Tags: Database

Similar Questions

  • The script generation is not supported for Table with XML or UDT column Types

    I get this message trying to generate a script to create a table with an XMLTYPE column.  We use the Oracle Developer Tools for Visual Studio to generate scripts as SQLDeveloper does still not support TFS integration.  He was always pretty easy to generate scripts and maintain control of source code in this way (with the exception of materialized views).  It was great, just right click and generate a script for the project and check it in.  Unfortunately as the adoption of XML grows, we find passage to the SQL Developer more often to perform tasks not supported and then return to the VS IDE to manage source code control.  Free of any chance that it will be supported in the future?

    Yes, our plan is to support several types as time goes by.

    You possibly can speed things along by voting or by filing a request for new feature here:

    http://Apex.Oracle.com/pls/Apex/f?p=18357:46

  • "of data type not supported" in the interactive report

    Hello

    I'm trying to download a file from a link to an itneractive report.

    In the section "attributes of report" interactive column, I defined in the section "links" in a column of the 'target', 'URL', and the URL like this:
    DOWNLOAD:CONVENTIONS:#FILE_BLOB#:#ID#::#MIME_TYPE#:#FICHIERS#:#LAST_UPDATE#::attachment:Conv
    When I run the interactive report, the link view this:
    Download: CONVENTIONS: [type]:188:C22.pdf:attachment:Conv of data not supported

    The table "CONVENTIONS" is defined as follows:
    ......
    ACTIVATE THE 'ID' NUMBER NOT NULL,
    VARCHAR2 (2048 BYTE) "FILES."
    'FILE_BLOB' BLOB,
    "LAST_UPDATE" DATE,
    'MIME_TYPE' VARCHAR2 (255 BYTE)

    Where is my mistake?

    Thanks for your help!

    Christian

    Hello Christina,

    Sorry Wizard, you need to use is the "form > form on Table with Report", because the normal create assistant interactive report allows you to enter a query.
    Once you have completed the wizard, take a look at the generated SQL statement (must use the dbms_lob.getlength) and the value in "number Format / Date" for this column.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • When you try to install Vista, receive the message "this computer hardware can not supported booting from this drive." Disk 0 unallocated space.

    Original title: Disk 0 space unallocated: when I tried to install Windows Vista.

    Unallocated space of disk 0: when I tried to install Windows Vista on my laptop and the screen table "Windows Installer"down I got the important message"hardware on this computer may not support booting to this disk. Make sure that the drive controller is enabled in the computer's BIOS menu "...

    Name: Disk 0 unallocated space total size 149.0 GB free space 149.0 GB Type: (empty).
    Please tell me what to do, I'm desperate. Thank you!!!

    Hi n m,

    Boot you from the DVD to start the installation, or have you started the installation in the existing version of Windows?

    I would like to know if you want to perform a new installation or an upgrade installation.

    You can not install Windows on an unallocated partition, if you install vista on brand\fresh the new hard disk, you will need to create partitions on the hard disk.

    Method 1:  Format the partition and then try to install Windows Vista.

    Important: The applications on the computer and all data will be lost when you format (New Installation) of the partition.

    Method 2: You can follow the steps mentioned in the article below

    Error message when you try to install Windows Vista on a computer that has initialized the hard drives: "this computer's hardware can not supported booting from this drive.

    http://support.Microsoft.com/kb/925481

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer
    ***************************************************************************

  • ORA-28132: the MERGE syntax IN does not support security policy

    Hello

    With the help of Oracle 11 g R2.

    I have the following problem:

    If the user attempts to perform a MERGE INTO statement on a table (T1), it receives the error ORA-28132: The MERGE IN syntax does not support security policy.

    Is there a way I can solve this problem by giving the user more rights on this specific table, T1? Or I need to rewrite the SQL code using UPDATE and INSERT instead MERGER?

    I can't grant POLICE ACCESS TAX-FREE, it would be too powerful privilege...

    Please advise,

    M.R.

    You may need to recreate the political VPD:

    Note:

    In previous versions of Oracle database, when you created a strategy Oracle virtual private database on an application that included the MERGE INTO statement, the MERGE INTO declaration could be avoided with a ORA-28132: Merge into syntax does not support security policies error, due to the presence of the virtual private database policy. From Oracle Database 11 g Release 2 (11.2.0.2), you can create policies on applications that include MERGE INTO operations. To do this, in the DBMS_RLS . ADD_POLICY statement_types parameter, include the INSERT , UPDATE , and DELETE statements, or simply omit statement_types setting altogether. Refer to the Oracle Database Security Guide for more information on the application of the strategies on specific types of SQL statement.

    FUSION

  • ORA-39726: operation column add/drag not supported on compressed tables

    Hello

    I have an error of the object.

    {noformat}

    SQL > select table_name, compression from dba_tables where owner = 'USER1' and table_name = "TABLE1_LT";

    TABLE_NAME COMPRESS
    ---------------------- --------
    TABLE1_LT DISABLED

    SQL > exec dbms_wm. DisableVersioning ('user1.table1', force = > true, ignore_last_error = > true);
    Dbms_wm BEGIN. DisableVersioning ('user1.table1', force = > true, ignore_last_error = > true); END;
    *
    ERROR on line 1:
    ORA-20231: table "User1. Table1' failed during
    DisableVersioning. Error:
    ORA-39726: operation column add/drag not supported on compressed tables
    ORA-06512: at "WMSYS.LT", line 9360
    ORA-06512: at line 1


    SQL > select sql_str in the all_wm_vt_errors;
    ALTER TABLE USER1. DROP COLUMN LTLOCK TABLE1_LT

    {noformat}

    How can I check, it's a table really compressed or OWM not in?

    Hello

    This is the right way to determine whether a table enabled version uses compression.  It could be another property table or tablespace that causes the same error will be triggered.  It is difficult to know exactly without the full table DDL.  If the dba_tables query was ACTIVE for this column, the inner workings of the Workspace Manager would have to set as unused column instead of a fall that could have prevented this error.  This behavior has been updated in 12 c to always define the column as unused anyway.  As a on 11.2.0.3, you can use ignore_last_error to jump the abandonment of all columns of metadata (version, nextver, delstatus, ltlock and createtime/retiretime if history is used).  Then when DisableVersioning is complete, you can issue the unused column from the game DDL manually for each of the columns.

    Kind regards

    Ben

  • Table 'dbc_user' in the descriptor of the item: 'user' does not exist in a space of accessible table by the data source.

    In my development environment, when I run the production server, I get the following error in the server.log. I have configured the data source for the production. I use ATG 10.1. Please help solve this problem. Here are the logs

    22:46:45, 765 full repository INFO [ProfileAdapterRepository] SQL boot

    22:46:45, 988 full repository INFO [AdminSqlRepository] SQL boot

    22:46:45, 990 Initializing INFO [AdminAccountInitializer] account database/atg/dynamo/security/AdminAccountManager of/atg/dynamo/security/SimpleXmlUserAuthority

    22:46:46, 450 ERROR [ProfileAdapterRepository] Table 'dbc_user' in the descriptor of the item: 'user' does not exist in a space of accessible table by the data source.  DatabaseMetaData.getColumns returns without columns.  Catalog = null Schema = null

    22:46:46, 466 WARN [ProfileAdapterRepository] atg.adapter.gsa.GSARepository-> loadColumnInfo: SQLException in Table.loadColumnInfo.  Try again.

    com MySQL.JDBC.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'atgcoredb.dbc_user' does not exist

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)

    at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)

    at com.mysql.jdbc.Util.getInstance(Util.java:382)

    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3603)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3535)

    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1989)

    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2150)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2620)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2570)

    at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1476)

    to com.mysql.jdbc.DatabaseMetaData$ 7.forEach(DatabaseMetaData.java:3966)

    at com.mysql.jdbc.IterateBlock.doForAll(IterateBlock.java:51)

    at com.mysql.jdbc.DatabaseMetaData.getPrimaryKeys(DatabaseMetaData.java:3950)

    at atg.adapter.gsa.Table.loadColumnInfo(Table.java:1926)

    at atg.adapter.gsa.GSARepository.loadColumnInfos(GSARepository.java:7534)

    to atg.adapter.gsa.GSARepository$ 1.run(GSARepository.java:5431)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:603)

    at java.lang.Thread.run(Thread.java:722)

    22:46:46, 467 WARN [ProfileAdapterRepository] unknown JDBC type for property: businessAddress, element type: user. Make sure that the column names in the database and match model.  The business_addr column is not found in the set of columns returned by the database: {} for this table.

    22:46:46, 470 ERROR [ProfileAdapterRepository] Table 'dbc_buyer_billing' in the descriptor of the item: 'user' does not exist in a space of accessible table by the data source.  DatabaseMetaData.getColumns returns without columns.  Catalog = null Schema = null

    22:46:46, 470 WARN [ProfileAdapterRepository] atg.adapter.gsa.GSARepository-> loadColumnInfo: SQLException in Table.loadColumnInfo.  Try again.

    com MySQL.JDBC.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'atgcoredb.dbc_buyer_billing' does not exist

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)

    at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)

    at com.mysql.jdbc.Util.getInstance(Util.java:382)

    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3603)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3535)

    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1989)

    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2150)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2620)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2570)

    at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1476)

    to com.mysql.jdbc.DatabaseMetaData$ 7.forEach(DatabaseMetaData.java:3966)

    at com.mysql.jdbc.IterateBlock.doForAll(IterateBlock.java:51)

    at com.mysql.jdbc.DatabaseMetaData.getPrimaryKeys(DatabaseMetaData.java:3950)

    at atg.adapter.gsa.Table.loadColumnInfo(Table.java:1926)

    at atg.adapter.gsa.GSARepository.loadColumnInfos(GSARepository.java:7534)

    to atg.adapter.gsa.GSARepository$ 1.run(GSARepository.java:5431)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:603)

    at java.lang.Thread.run(Thread.java:722)

    22:46:46, 471 WARN [ProfileAdapterRepository] unknown JDBC type for the property: myBillingAddrs, element type: user. Make sure that the column names in the database and match model.  The addr_id column is not found in the set of columns returned by the database: {} for this table.

    22:46:46, ERROR 611 [ProfileAdapterRepository] Table 'dbc_org_billing' in the descriptor of the item: "organization" does not exist in a space of accessible table by the data source.  DatabaseMetaData.getColumns returns without columns.  Catalog = null Schema = null

    22:46:46, 611 WARN [ProfileAdapterRepository] atg.adapter.gsa.GSARepository-> loadColumnInfo: SQLException in Table.loadColumnInfo.  Try again.

    com MySQL.JDBC.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'atgcoredb.dbc_org_billing' does not exist

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)

    at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)

    at com.mysql.jdbc.Util.getInstance(Util.java:382)

    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3603)

    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3535)

    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1989)

    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2150)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2620)

    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2570)

    at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1476)

    to com.mysql.jdbc.DatabaseMetaData$ 7.forEach(DatabaseMetaData.java:3966)

    at com.mysql.jdbc.IterateBlock.doForAll(IterateBlock.java:51)

    at com.mysql.jdbc.DatabaseMetaData.getPrimaryKeys(DatabaseMetaData.java:3950)

    at atg.adapter.gsa.Table.loadColumnInfo(Table.java:1926)

    at atg.adapter.gsa.GSARepository.loadColumnInfos(GSARepository.java:7534)

    to atg.adapter.gsa.GSARepository$ 1.run(GSARepository.java:5431)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:603)

    at java.lang.Thread.run(Thread.java:722)

    22:46:46, 612 WARN [ProfileAdapterRepository] unknown JDBC type for the property: myBillingAddrs, element type: Organization. Make sure that the column names in the database and match model.  The addr_id column is not found in the set of columns returned by the database: {} for this table.

    You want to run the B2BCommerce module? If so, then you must run the $dynamo_home /... / B2BCommerce/SQL/db_components/MySQL/b2b_user_ddl. SQL ddl because you are missing the B2BCommerce tables. If this isn't the case, you will have to redo without the B2BCommerce module.

    Thank you

    Joe

  • cannot set file error when trying to put the photoshop button in adobe muse, he is not 'supported color space. Resave image RGB or grayscale.

    cannot set file error when trying to put the photoshop button in adobe muse, he is not 'supported color space. Resave image RGB or grayscale.

    I believe that this is already the answer here:

    https://forums.Adobe.com/thread/1917435

    Thank you

    Sanjit

  • OGG-01028 object with the number of the object 80673 is compressed. Compression of the table is not supported.

    (1) I received an email like this:

    Event_alert

    2013-09-17 22:00:16 ERROR OGG - 01028 Oracle GoldenGate Capture for Oracle, ext_1.prm: object with the number of the object 80673 is compressed. Compression of the table is not supported.

    2013-09-17 22:00:16 ERROR OGG - 01668 Oracle GoldenGate Capture for Oracle, ext_1.prm: PROCESS ABENDING.

    (2) I have not found the OBJ

    SQL > select OBJECT_ID, OBJECT_NAME from dba_objects where object_id = 80673;

    no selected line

    (3) change a few times the process EXT recover;

    (4) my excerpt settings

    Cat ext_1.prm

    EXTRACT ext_1

    Ogg, ogg PASSWORD USERID

    TRANLOGOPTIONS EXCLUDEUSER ogg

    SETENV (NLS_LANG = AMERICAN_AMERICA. ZHS16GBK)

    -SETENV (NLS_LANG = AMERICAN_AMERICA. AL32UTF8)

    EXTTRAIL ./dirdat/t1

    DYNAMICRESOLUTION

    TABLE YBK.*;

    This is a bug that has been fixed

    Excerpt from abending with Table of Compression is not supported, even if the database has no tables compressed. (Doc ID 1510691.1)

    event text: Oracle GoldenGate Capture for Oracle, ext_1.prm: object with the number of the object 86173 is compressed. Compression of the table is not supported.

    tableexclude *. DBMS_TABCOMP_TEMP *.

  • My provider does not support tables MyISAM and InnoDB do I have a problem?

    Hello

    My provider does not support the MyISAM and InnoDB tables as a storage engine do I have a problem?

    Hello

    Most installations of MySQL 5.1 support both, it is possible to "lock out" one of the engines, but I have not met, (I suspect that the support does not know what you ask).

    The question you should ask yourself is, do you now or in the future support require operations or stored procedures? If the answer is Yes, then innodb is essential, as the tables myisam does not support these.

    PZ

  • Table space not reduce after deletion in oracle 10g

    Hello..

    Based on my system, I found that my oracle table space has not reduced after the deletion request. Why?... Could someone help me. As your info, I use oracle 10g.

    Thank you
    Balleur

    After you delete the table space will not be scheduled free. high tide are not reset. to find the space you want to recognize objects that you have deleted the data. This can be done in many ways.

    (1) move the objects.
    ALTER table move temp--> possibly the tablespace clause may be used. After that, you must rebuild the indexes of the tables.

    (2) with 10 g table can be shrunken or reorganize to free up space.

    change the movement line of table mytable enable;
    change the table mytable retractable;

    (3) import/export

    export the objects and delete and recreate with import.

  • Cannot convert a computer unalloacted on a new space, dynamic disks are not supported by this operating system or the configuration of the server. Dynamic disks are not supported on Clusters.

    I have 179 GB of a 50 GB hard disk on a new computer allowed. Try to make a new Simple Volume I get following error "the dynamic disks are not supported by this operating system or the configuration of the server. Dynamic disks are not supported on Clusters", please suggest what to do, i run Windows 7 Home basic.

    I have 179 GB of a 50 GB hard disk on a new computer allowed. Try to make a new Simple Volume I get following error "the dynamic disks are not supported by this operating system or the configuration of the server. Dynamic disks are not supported on Clusters", please suggest what to do, i run Windows 7 Home basic.

    Need additional details as
    Is it a laptop or a pc?
    Have you coveted your dynamic disk basic disk?
    What the structure of partition on your computer?

    recover with these details...

  • 'Merge files into a single PDF file' does not support Word documents

    I use Acrobat 9 and Office 2007.  I'm trying to convert 100 Word documents into one PDF file.  However, Word is not supported.  In acrobat, I go in the preferences and then convert them to PDF, Word is not listed.  I have excel and powerpoint, but not Word.  In any case as Word support documents?

    I had a hard time finding the answer on the web.  Finally found a forum with my response to share with others facing the same issue.  Last entry worked for me.

    http://community.Spiceworks.com/topic/213722-Acrobat-9-Pro-doesn-t-see-MS-Office-files-whe n-combination-files

  • Update ESXi3.5U3 to ESXi4 by vSphere update Utility error: host not supported - unhandled setting in startup disk page

    When I try to upgrade my ESXi3.5 Server (which is Xeon E5310 on ASUS DSBV/SAS box with 5 SATA drive on the SAS controller unRAID) to ESXi4

    I got error: unsupported Host - not support layout of startup disk

    What can I do now? Is this bug or just, do not boot from the local disk support?

    Since the fdisk-l to output provided, its clear that the 2nd partition is missing. The 2nd parition in ESXi Installable is the partition scratch (FAT16 file system), which is by default to 4 GB. During the upgrade the parition is resized to scrape (about 150 MB of space is used 4 GB) to extend the bootbanks of 49 MB to 256 MB.

    I don't know the exact reason why the partition scratch missing here since it is generally created during the default installation. One possibility could be that there was a parition scratch already available on a secondary drive during installation and setup it has not created on the primary drive.

    A standard partition for ESXi 3.5 with partition table scratch would look something like the following...

    Disk/dev/disk / vmhba1:0:0:0: 8589 MB, 8589934592 bytes

    Heads of 64, 32 sectors/track, 8192 bottles

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Device boot start end blocks Id system

    / dev/discs / 5 750 763904 5 Extended vmhba1:0:0:1

    / dev/discs / 751 4845 4193280 6 FAT16 vmhba1:0:0:2 < -.

  • Satellite Pro M70-113: is the update of the Bios as of 03/06/07 supports slic tables

    Hello
    Maybe someone knows if the update of the bios for toshiba satellite pro m70-113, dated 03/06/07 supports slic tables or not?
    For vista oem installation dvd?

    Thank you...

    You will not be able to find info accurate on the BIOS and what exactly is supported or not. If you just want to install Vista on your M70 I can just say that I installed Vista Ultimate on my Satellite M70-159 (PSM71E) without any problem.

Maybe you are looking for

  • What does not restart in the FFT functions way?

    Hi all I would like to know what that "restart average" made for the FFT functions. According to aid,"reboot on average indicates if the VI restarts the process chosen medium." If restart on average is set to TRUE, the restart of the VI the selected

  • I need a Windows 7 64 bit driver for my laptop

    Hello I got a laptop is here: laptop HP 2000-2d19WM I need help to find the drivers, I know that you can download classis shell to replace the Start button, but it makes my computer slow and my laptop is 64 bit if someone can help me. Thank you!

  • Write a question about basic series and Read.vi

    I tried to use the base series write and Read.vi to simulate the funtion of Hyperterminal, communication between the pc and the device via COM port. The question I have is, when I open the vi, under the name of resource VISA option, I don't think my

  • Windows Vista Edition Family Premium WIN.exe?

    Recently I went to log-in to my account on this computer, and a CMD box came with this huge list and the coding of this directory: 'C:\Windows\System32\install\WIN.exe '. I have never seen this before from today. Here is a screenshot of what I got fr

  • CODE 3 ADAPTERS

    HOW can I FIX YEAR ERROR CODE 3 for ADAPTERS in MY DEVICE MANAGER?