Create arrays of ETL for Siebel

The script that I have generated some ODI Studio for creating tables ETL in Siebel includes this DDL:

CREATE TABLE SIEBEL. () S_ETL_INDUS_VER

INDUST_SIC VARCHAR2 (30 CHAR) NOT NULL,

NON-NULL, VERTICAL VARCHAR2 (30 CHAR)

CDC$ _SRC_LAST_UPDATE_DATE TIMESTAMP NOT NULL,

CDC$ _RPL_LAST_UPDATE_DATE TIMESTAMP NOT NULL,

CDC$ _DML_CODE VARCHAR2 (1 CHAR) NOT NULL

)

;

However this table already exists in my DB Siebel 8.1.1.11 as follows:

Name                                      Null?    Type

----------------------------------------- -------- -----------------

INDUST_SIC NOT NULL VARCHAR2 (30 CHAR)

VERTICAL VARCHAR2 (30 CHAR) NOT NULL

So I'll need to add additional columns in the existing SIEBEL. Table S_ETL_INDUS_VER. I will use today's date for Last_update_date columns as default. However, what value should I use for CDC$ _DML_CODE?

I thought about it - 'I', 'U', or '

Tags: Business Intelligence

Similar Questions

  • How do you create array of enumerations for transitions in a state machine?

    Hello

    I am trying to build a state machine, but I am struggling with understanding of the methods to determine what State to move to the next.  In other words, I have several States, but I don't want to go in any particular sequence.  If I States numbered 1 to 10, I want to be able to go 1-4-2-5-6-2-6-1-10 etc. in no particular order. I want the transition to the next State (and actions) to be determined by data stream, which may be random and require access to one of my 10 States at any time and in any order.

    I saw this photo on the white paper "Application Design Patterns: machinery of State", but it leaves out some important details.  How do I create the structure in BLUE showed 3 c?  When I try to create this table of enums, all are the same. I am not able to make a list of different enum values.  In other words, when I type '2', then all values in the Bulletin Board "2."

    There is a nice video example and easy to a state machine for the distribution of soda $0.15, however, this state machine moves in a single sequence of 5 cents, 10 cents to deliver; It does NOT illustrate the selection of a State "out of order".  I need to understand how a state machine can move State "5 cents" to distribute directly, with the addition of 10 cents in the State "5 cents.

    Can someone suggest a very good tutorial on how to make the switch to operate in a state machine?  I have read some documents available on ni.com, but, I can't find a good explanation of how do.  I remain confused.

    Or, you can just explain how they created the BLUE table in the attached picture?  Maybe I can understand it from there.

    Thank you

    Dave


  • Where to download the sample database for Siebel Innovation Pack delivery Oracle Cloud 2015?

    Hello

    Where to download the example for Siebel Innovation Pack 2015 database?

    I downloaded the complete packages for Siebel Innovation Pack 2015 for Windows 64 - bit Oracle Cloud delivery, but I can't find the sample database installation folder after downloading all available components.

    Please help, thanks.

    Hello

    DB sample installer are no longer available on Oracle Cloud delivery. To get the sample DB, you need to download the Group of hotfixes 5 of Siebel 15 "Patches and updates" section of the portal My Oracle Support (Patch Id: 22081062) and extract the image from the network using SNIC as usual. You may notice that SNIC now offers local ORACLE XE and sample database.

    Also if you select ORACLE XE options while creating the network image and inspect the network image files, you will miss the separate installers. This is because the sample for Oracle XE database Installer is included in the Web Client of Siebel (Mobile/Developer) and the local database setup is included in the Siebel tools.

    So when you run Setup of the Siebel Web Client for the installation of the patch group, you can choose to include the database, which is installed in quiet mode. Please try to install web client and let us know if it gives you the opportunity to choose to include the example database.

    For more details, please visit virtual library:

    http://docs.Oracle.com/CD/E63029_01/books/SiebInstWIN/SiebInstCOM_Image2.html#wp1995894 http://docs.Oracle.com/CD/E63029_01/Books/SiebInstWIN/SiebInstCOM_Image2.html#wp1995894

    Hope this information helps.

    Thank you best regards &,.

    Jean Arpit

  • Can someone tell me what I'm doing wrong when you create a native extension for iPad? (Very detailed)

    My company is developing a game for iPhone and iPad using Flash cs5.5 and Air3.0

    The customer requires that certain features be supported - these things as GameCenter, rating, etc... which none are currently supported by flash for the iOS.

    However, they provide us with a bunch of xCode example files on how they want things to work.

    My idea was to bridge the gap in functionality by creating a native extension using the xcode source that was given to me, giving me the required functionality.

    But first, I need to truly CREATE a native extension, even just a base echo/hello everyone... I followed all the steps of various guides and tutorials and I have managed to create an ipa and put it on my iPad 2 to test, but when the program starts, nothing happens, I find myself with a black screen. When I comment on the lines of code that initialize the extension, it fires just fine.

    (and Yes, I even tried to put things in try blocks where there was a mistake - no luck)

    So I hope that someone can read through the process of what I do below and point out what I am doing wrong, or what Miss me.

    What I use:

    Mini Mac running OS x 10.7.2 - this is used to run xCode 4.1 build 4B 110

    PC - Windows 7 home 64 bit - running Flash CS5.5 (version 11.5.1.3469) with the 3.0 SDK inside AIR. I also have the sdk 3.0 air in a separate file for the command-line running. (This is my primary development platform)

    The PC has flash builder installed, but I've never really used it, and I don't know how to use it... everything that has been built to date has been done using Flash CS5.5

    So, here's what I did.

    The first thing we do is to create a library static .a on mac.

    I open xcode and create a new project.

    • Select iOS framework and library, then select "Cocoa touch static library.
    • Give it a name, in this case "EchoExtension" and put it in a folder.
    • I then delete the file EchoExtension.h as all the samples I've seen so far do not use.
    • I then add 'FlashRuntimeExtension.h' to the project of the AIR3.0 sdk frameworks folder on my PC
    • I remove everything in my folder ".m", and then, next to several different examples and tutorials, type the following code:

    //

    EchoExtension.m

    EchoExtension

    //

    #include "FlashRuntimeExtensions.h".

    Echo FREObject (FREContext ctx, void * funcData, uint32_t argc, {FREObject argv)

    return argv [0];

    }

    //----------- Extention intializer and finalizer ----------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------ -

    A native context instance is created

    void ContextInitializer (void * extData, const uint8_t * ctxType, FREContext ctx, uint32_t * numFunctionsToTest, const FRENamedFunction * functionsToSet) {}

    Configure the number of functions in this extention

    for ease of reference, set the number of function that will use this extension.

    int FunctionCount = 1;

    set the number of function pointer reference that will use this extention.

    * numFunctionsToTest = FunctionCount;

    create an array to store all the functions that we will use.

    FRENamedFunction * func = (FRENamedFunction *) malloc (sizeof (FRENamedFunction) * FunctionCount);

    create a table for each function entry

    Func [0] .name = (const uint8_t *) "echo"; the name of the function

    Func [0] .functionData = NULL;                    the data type

    Func [0] .function = & echo;             the reference to the real function

    Save the array to a pointer.

    * functionsToSet = func;

    }

    A native context instance is deleted

    void ContextFinalizer (FREContext ctx) {}

    return;

    }

    Initialization of each extension function

    void ExtInitializer (void * extDataToSet, ctxInitializerToSet FREContextInitializer *, FREContextFinalizer * ctxFinalizerToSet) {}

    * extDataToSet = NULL;

    * ctxInitializerToSet = & ContextInitializer;

    * ctxFinalizerToSet = & ContextFinalizer;

    }

    Called when the extension is unloaded

    void ExtFinalizer (void * extData) {}

    return;

    }

    • I'll then 'product', 'building' and it creates libEchoExtension.a
    • I'm copying this .to file on my PC.

    I am now finished with this abandoned mac of God (* shudder *)
    Back on my PC, I create a folder for my test project. For all the intentions a purposes, we will call this "D:\src\EchoExtension" then I create 2 folders, one called "lib" and one called "app". Lib, it's where I'm going to create the actionscript source for my extension.

    • In my lib folder, I create a new fla in flash cs5.5, called "EchoExtension.fla".
    • I create my lib folder, the following:
      • com\extensions\EchoExtension\EchoExtension.as
      • a folder named 'Build' in which I place my libEchoExtension.a file.
    • I have in my EchoExtension.as file, place the following code:

    package com.extensions.EchoExtension

    {

    import flash.events.EventDispatcher;

    import flash.events.IEventDispatcher;

    import flash.external.ExtensionContext;

    SerializableAttribute public class EchoExtension extends EventDispatcher

    {

    protected var _extensionContext:ExtensionContext;

    /**

    * Constructor.

    */

    public void EchoExtension()

    {

    Super();

    Initialize the extension.

    _extensionContext = ExtensionContext.createExtensionContext ("com.extensions.EchoExtension", "main");

    }

    public void echo(Prompt:String):String

    {

    Return _extensionContext.call ("echo") as String;

    }

    }

    }

    • In my main fla, on the first layer of the time line, I put just the following code to make sure that did get file included when I publish the swc.

    import com.extensions.EchoExtension.EchoExtension;

    var ext:EchoExtension = new EchoExtension();

    Stop();

    • I then opened upwards from my fla publication settings, disable the swf - which I don't need, and check the swc and ensure it generates in my generation folder.  «. "/ Build/EchoExtension.swc.
    • I also updated the player Air 3.0 (which I can do because I managed integrated AIR 3.0 along side my AIR 2.6 and can build both without any problem)
    • I then publish the swc. So far so good. No problems.
    • I then made a copy of the CFC and rename it to EchoExtension.swc.zip, how I extracted the library.swf file and place it in the folder of my generation.
    • I then create extension.xml in case of generation that contains the following code:

    " < extension xmlns =" http://ns.Adobe.com/air/extension/2.5 ">

    com.extensions.EchoExtension < id > < /ID >

    < versionNumber > 1 < / versionNumber >

    <>platforms

    < platform name 'iPhone-ARMS' = >

    < applicationDeployment >

    < nativeLibrary > libEchoExtension.a < / nativeLibrary >

    < initializer > ExtInitializer < / initializer >

    < finalizer > ExtFinalizer < / finalizer >

    < / applicationDeployment >

    < / platform >

    < / platforms >

    < / extension >

    • Now, at this point, I'm a little suspicious, because I build for the iPad2... the platform is iPhone... I thought that may be a problem and at some point I have tested the same build on the iPhone4 and had the same results. I also tested using the name of the platform of the iPad-ARM and got the same results... So I don't think that's the problem, but I'm not sure.
    • Now, to make things easier, I created a batch file called "buildane.bat" in my file generation. That's what I use to create my .ane file and it contains the following command line:

    D:\SDKs\AirSDK30\bin\adt-Paquet - target ane EchoExtension.ane extension.xml - CFC EchoExtension.swc - iPhone-ARM library.swf libEchoExtension.a platform

    • I then open a command prompt and run buildane.bat and Ottoman. My donkey is created. My generation file now has the following files in it:
        • buildane.bat
        • EchoExtension.ane
        • EchoExtension.swc
        • EchoExtension.swc.zip
        • extension. XML
        • libEchoExtension.a
        • Library.swf

    Now that I have my swc, donkey and it's time to create my sample application that will be used to test my new extension.

    • I go back to my D:\src\EchoExtension folder and go to the folder app ealier, I created.
    • I then create a new flash project called EchoExtensionTester.fla
    • I open the action script settings, paths to library and add the CFC I created in my D:\src\EchoExtension\lib\build file to my project.
    • On my stage, I create a field called text txtInput, a field of dynamic text named txtEcho, and a couple of buttons called btnClear, btnRuntime and btnEcho
    • I open the first layer of the timeline, and place the following code:

    imports of base.

    import flash.desktop.NativeApplication;

    import flash.events.MouseEvent;

    import flash.text.TextField;

    import the extension of our swc.

    import com.extensions.EchoExtension.EchoExtension;

    the value of our input text to the need the softkeyboard field

    txtInput.needsSoftKeyboard = true;

    Add event handlers to our buttons.

    btnEcho.addEventListener (MouseEvent.CLICK, btnEcho_Click);

    btnClear.addEventListener (MouseEvent.CLICK, btnClear_Click);

    btnRunTime.addEventListener (MouseEvent.CLICK, btnRunTime_Click);

    create our variable expansion.

    var ext:EchoExtension;

    Try

    {

    initialize our extension of echo.

    Ext = new EchoExtension();

    } catch (error) {}

    txtEcho.text = 'Error when trying to create new EchoExtension:\n\n' + e;

    }

    Stop();

    Delete the text echo field

    function btnClear_Click(e:MouseEvent):void

    {

    txtEcho.text = "";

    }

    just to test, put the latest version of the air runtime in our text field, so we can make sure we run air 3.0

    function btnRunTime_Click(e:MouseEvent):void

    {

    txtEcho.text += "\nRuntime version =" + NativeApplication.nativeApplication.runtimeVersion; ".

    }

    call the extension, passing all that is in the text input field and get back and place it in our text echo field

    function btnEcho_Click(e:MouseEvent):void

    {

    txtEcho.text += "\n";

    Try

    {

    txtEcho.text += ext.echo (txtInput.text);

    } catch (error) {}

    txtEcho.text += "\nError call ext.echo:"+ e;»

    }

    }

    • I save the project, Open Air for the parameters of the iOS, then perform the following settings: (Yes, I know... I'll have to use adt to perform the build, but I need to first create the swf file)
      • File: EchoExtensionTester.ipa
      • AppName: EchoExtensionTester
      • Version 1.0
      • Landscape
      • Full screen on
      • Auto orientation is disabled
      • GPU rendering
      • device: iPad and iPhone
      • RES: high
      • Deployment: I use my certificate and profile provisionging that I use for my main project (that works) and defined for the test of the device.
    • I close the window and save again... but before I publish, I opened newly created "EchoExtensionTester - app.xml" which is located in my app folder.
    • I add the extensions <>< extensionID > com.extensions.EchoExtension < / extensionID > < / extensions > to the XML in the file so now it looks like this:

    <? XML version = "1.0" encoding = "UTF-8" standalone = 'no '? >

    " < application xmlns =" http://ns.Adobe.com/air/application/3.0 ">

    <>Extensions

    < extensionID > com.extensions.EchoExtension < / extensionID >

    < / extensions >

    < id > EchoExtensionTester < /ID >

    < versionNumber > 1.0 < / versionNumber >

    < file_name > EchoExtensionTester < / name of the file >

    < description / >

    <!-to locate the description, use the following format for the description element. < description > < text XML: lang = "fr" > App English description goes here < / text > < text XML: lang = "fr" > French App description goes here < / text > < XML text: lang = "ja" > Japanese App description goes here < / text > < / description >->

    < name > EchoExtensionTester < / name >

    <!-to locate the name, use the following format for the name element. < name > < text XML: lang = "fr" > insert here the name App English < / text > < text XML: lang = "fr" > insert here the French App name < / text > < XML text: lang = "ja" > insert here the Japanese App name < / text > < / name >->

    < copyright / >

    < initialWindow >

    < content > EchoExtensionTester.swf < / content >

    standard < systemChrome > < / systemChrome >

    < clear > false < / transparent >

    < visible > true < / visible >

    true < fullscreen > < / full screen >

    landscape of < aspectRatio > < / aspectRatio >

    GPU < renderMode > < / renderMode >

    < maximizable > true < / maximizable >

    < minimizable > true < / minimizable >

    < resizable > true < / resizable >

    < autoOrients > false < / autoOrients >

    < / initialWindow >

    < icon / >

    < customUpdateUI > false < / customUpdateUI >

    < allowBrowserInvocation > false < / allowBrowserInvocation >

    < iPhone >

    < InfoAdditions >

    <! [CDATA [< key > UIDeviceFamily < / key > < table > < String > 1 < / string > < string > 2 < / string > < / array >]] >

    < / InfoAdditions >

    < requestedDisplayResolution > top < / requestedDisplayResolution >

    < / iPhone >

    < / application >

    • I save the changes to the xml file and return to Flash. I then publish.
    • The swf file is created as it should be, but then I get the error message:

    Error creating files.

    A native implementation extension 'com.extensions.EchoExtension' required by the application is not found for the target platform.

    • Now, while it is a pain in the rear, I again, this was going to happen because in my reading tutorials and samples, they have all said that you use adt to build the ipa... but that is fine... all I wanted anyway, was the swf, which I now have in my app folder.
    • I close flash because I no longer need and I create a new batch file: (Note: I have change the name of the cert, profile and password for this post)

    CLS

    "D:\SDKs\AirSDK30\bin\adt" - package - target the ipa-ad-hoc - stores pkcs12 - keystore "D:\src\mycert.p12" - storepass MYPASSWORD-putting into service-profile "D:\src\myprovfile.mobileprovision" "EchoExtensionTester.ipa" "EchoExtensionTester - app.xml" "EchoExtensionTester.swf" - extdir... / lib/Build

    Set dummy = p

    ECHO done

    • I then open a command window in my app folder and run build.bat.
    • I wait about 2 minutes...
    • ...
    • ...
    • YAY! My ipa file was created without error reported so far... Time to copy this bad boy to the iPad and see what happens.
    • I opened iTunes, drag "EchoExtensionTester.ipa" to the applications, then synchronize my device...
    • ...
    • YAY! iTunes installed ipa on the device... and there is a white icon bright and shiney for Echo Extension tester...
    • I open the app... and...
    • nothing.
    • I'm waiting for
    • still nothing.
    • I go to the bathroom.
    • I'll be back... still nothing... just a black screen.
    • I press the home button on the iPad, the app minimized, I restore it... nothing... black screen.

    management of human resources. Time to do some trial and error to see if I can figure out what the distribution.

    • As a test, I opened my fla and I comment out the following lines:
      • Ext = new EchoExtension();
      • txtEcho.text += ext.echo (txtInput.text);
    • I then rebuild the swf... get the same error (don't care)... I then rebuild the ipa using the batch file... and reinstall it on the device when it is made.
    • Exactly the same thing...
    • I opened the xml file... and remove the < extensionID > com.extensions.EchoExtension < / extensionID > line, save and re - run the batch file again... Wait for the ipa ends, then run it on the device.
    • I start the program on the iPad and it starts perfectly... with the exception of the commented line of code actually create and call the extension, everything works as it should. The runtime on the device reports as 3.0.0.4080
    • A test, I opened the .fla save and uncomment the 2 lines, I commented out above... keep the xml file extensionID, I re - publish the ipa... of course, this time, it actually creates the flash API, because the id of the extension is not in the xml file.
    • I put the file API with the extension in place on the ipad code... The fire and make the txtInput text and press the button of the echo. I get the following error:
      • Error calling ext.echo: TypeError: Error #1009
    • I suspect it's because I failed to include the extension in the descriptor... but when I build it with the extensionid in the xml file, I just get a black screen. I'm 99% sure that the context of the extension in the ext object is null (because that's what happens when I run Flash debug without extension lines in the xml)

    And here I am stuck.

    Can someone tell me what I am doing wrong or what I forgot to do?

    Thank you.

    Hi can check you if the CFC of the native extension is linked as external?

    Next image can help locate and change the link type of CFC.

    The issue that many people face here (i.e. extension works fast/interpreter mode and only when they are packed in standard mode) occurs only when the SWC of the NE is not linked externally.

    I hope this helps.

    Kind regards

    Mathyas blabla

    IOS of the AIR

  • I downloaded and installed it and TB preconfigured mailbox of my wife rather than create a new one for me. Whats up with that?

    I downloaded and installed it and TB preconfigured mailbox of my wife rather than create a new one for me.
    The first time I ran it, there was his box mailbox and all the msg I whatever it either has no entry for a server, the login or password. IOt just configured everything to his mailbox! He did this IP address or what?

    Network, what type of network? you have a server?

  • I created a custom and registered with a specific name date format. However, when I open a new worksheet, my saved format does not display in the menu drop-down? Am hoping that I don't need to create the same format for each new sheet?

    I created a custom and registered with a specific name date format. However, when I open a new worksheet, my saved format does not appear in the menu drop-down? Am hoping that I don't need to create the same format for each new sheet?

    You must save the spreadsheet containing the new date as a model format and use this custom template for each new spreadsheet where you want that this date format personalized at your disposal.

  • Laptop HP 15-afi131dx: how to create a hot spare for my system? Can I use a 64 GB flash instead of a disk drive?

    This neophyte wants to create a backup disc for a possible recovery of the operating system.

    Step by step of baby, please!

    BruceWilliamJ

    Hello;

    Let me welcome you on the HP forums!

    I read your post about wanting to create a backup of your system and wanted to help.

    What I would say, because I have been using it without problem for years, is using a third party tool known as Macrium Reflect.

    Macrium reflect (MR) provides a FREE version that can be used to image and restore partitions or drives together.

    What I recommend is the following:
    (1) download and install Macrium reflect (MR)
    (2) run M. and choose the option: "Create an image of the partition (s) required to backup and restore Windows" to write a full backup to an external drive or USB key
    (3) use the option to create a CD or a USB startup key

    My experience is that SIR, when you use the option of Compression high, typically allows to compress the image file recorded at about 50% of the space USED in the OS partition.  This means that if you have a 40GB and 80GB OS partition is used, MR must only about 20 GB to store the image file.

    I use all the time and it usually takes less than 10 minutes to make the backup of the image and at the same time or less do a restore.

    In addition, MR has the ability to add a recovery Boot Menu entry.  This then allows you to boot into Windows re, and then you can use it to do a restore - when you cannot start Windows!

    NOW, you have the means to restore a full system that works for the external hard drive or USB key in a few minutes.

    If you need more information, then visit their Web site: http://www.macrium.com/reflectfree.aspx

    Good luck
    ========================================================================
    I'm a volunteer and I do not work for, or represent, HP.
    ---------------------------------------------------------------
    If my post helped you, please click on the Thumbs-Up symbol on my post to say thank you.
    If my posts resolved your issue please click "accept as a Solution.
    ========================================================================

  • Delete the partition created in reformatting/reinstall for A50

    Then when I got my Toshiba Satellite A50, he had no partition that I knew of, just a drive C with XP installed on it. But the disk that it came with to reformat the hard drive and reinstall XP is creating a partition!

    So it's not the original or set up installation I've had... I have an external hard drive, I don't want a partition.

    How can I delete the partition? I'm ready to completely reformat the entire hard drive again, but if so, how do I that?

    The Toshiba CD doesn't really give me a prompt to go reformatting the hard drive me...

    The other annoying, that of my C drive is NTFS, but the disc creates a drive NTFS and FAT32 other... too... which is really scary, is when the Toshiba disk loads, it says "loading Windows 98"... to my understanding of my laptop NEVER had 98 on it... I pray that this is not a 98 - xp upgrade. It seems that someone gave me the wrong drive with my laptop computer?

    Or am I worrying over nothing?

    Hello Lou

    Believe me worry for nothing! Please don t be confused about W98 loading message. The unit starts in DOS mode and it's the same as on W98.

    Now step by step explanation: I did the procedure of recovery many times and have a little experience with it.

    When starts, CD recovery menu displays with two options: modes of STANDARD facilities and EXPERT. STANDARD mode simply erase the whole HARD drive and creates one partition (the whole HARD disk capacity) for the installation of the OS.
    EXPERT mode should be used if you want to install the operating system on already created partition or if you want to create a new partition for the installation of the OS. Note You can create only the first partition it (C :) and you can not edit already created the partition.)

    In my opinion, it is always good to have two partitions, one for the operating system and installation and a second for recording data. You might not always drive external HARD with you. If something is wrong at any time, you can install the OS on the first partition without losing the data stored on the other.

    Anyway, to start the recovery procedure and choose the recovery STANDARD (option 1) procedure. The whole HARD drive will be formatted and Os will be installed on a partition.

    Bye and if you have any other questions please write again.

  • create the code lock for computer book note

    How to create the code lock for computer book notices

    Enter the BIOS, select the Security tab and set the power on password.

    I strongly recommend that you write the power on password and put somewhere safe. If you have forgotten the password turned on, you will find that you will need to send your laptop to be repaired by HP. This is not free of cost. Once a button inside the laptop password reset are over.

    I can't be more precise, as you have not identified your laptop with its full product name or product number.

  • How can I create a full recovery for OS and preinstalled software media?

    Hello
    My son´s accompanying the new Satelite L855-10U preinstalled OS and much other software already installed on the HARD drive, but no installation media, the client is supposed to create a tool from Toshiba.

    I created 6 Swedish recovery for the operating system using the tools Toshiba had installed on the HARD drive.

    To do this 6 Swedish, I created with the Toshiba Recovery tool contain the operating system and all other preinstalled software?

    How can I create the installation media full and usable if not for the operating system and all other preinstalled software?

    I can´t find all the information on the backup software pre-installed with the exception of the BONE. Is there complete information how to do the above, in the manual of the computer, or have you missed this information?

    I would like to know how I can create media backup complete and usable for the operating system as well as for all other preinstalled software, so I can recreate all the facilities of the plant at a new disk if/when the original HARD disk crashes.

    Is there a partition hidden with pre-installed software, and if so, how can I create a backup of this partition, or all the software, so I can reinstall everything if the HARD drive fails, if it is already not with the Swedes 6 Toshiba tool created for me?

    Forward to your response and to complete your customer documentation about the complete instructions for installation and recovery media creation.

    Thank you very much!

    Baltazar

    Hello

    On this forum, you will find a lot of useful comments on the recovery image saved on the HARD drive and its operation to the facility and the creation of recovery disks.
    All this is clearly and simply.

    Front of Toshiba offer new people for laptop in software development create recovery image. This recovery image will be created for each laptop model (specific hardware configuration). Recovery image contains the operating system, all necessary drivers, tools/utilities Toshiba specific and some other software like DVD/Blu-Ray, Microsoft Office test drive and the antivirus application. With this configuration every laptop owner can begin to use the laptop without having to install important applications.

    This package is then saved on the HARD drive and can be used for the installation of HARD drive recovery - http://aps2.toshiba-tro.de/kb0/HTD1303440001R01.htm. In other words, if something is wrong with HARD drive recovery facility you can reset the preinstalled operating system and reinstall recovery imae. After that make you have absolute same settings you had after purchase and first start of the laptop.
    HARD drive recovery image can not be used if:
    -HARD drive is defective
    -you have installed the version of the own BONE
    Structure of the HARD disk partitions - is changed
    Recovery image - HARD drive is deleted or moved to another partition or copied to the external device.

    To avoid all this Toshiba recommends the creation of recovery disks. Using these disks, you will be able to install the OS on the new drive HARD or in any other situation listed above.
    Please note: the use of recovery disks will remove all HARD drive, create the new recovery partition and install image recovery, so you still have the same settings.

    I hope I can help you with my explanation. If you have any other questions you are welcome.

  • How to create a usb bootable for IE captain?

    When I was doing the usb boot, I found articles with google, but they are all so outdated.

    Many say even using an 8G usb... which of course is not allowed now, as the required minimum is 16G.

    I use the Middle terminal to the USB.

    What is the process that is more up-to-date? And what is the code of sudo for this please?

    I tried the sudo Web site code, it turns out that say that there is no function "createinstallmedia".

    Hi Guoxuan,

    When you mention "createinstallmedia" looks like you want to create a bootable Installer for El Capitan.

    Note 'createinstallmedia' is not a function built-in, but is part of the package install, as shown in this article.

    Create an installer for OS X - Apple support bootable

    Use the "createinstallmedia" command in the Terminal

    1. Download the installer for OS X for the Mac App Store. Quit the installer if it opens automatically after downloading. The installation program will be located in your Applications folder.
    2. Mount your USB key or another volume. You can also use an internal secondary partition.
    3. Open the Terminal application, which is located in the Utilities folder of the Applications folder.
    4. Use the createinstallmedia command in a Terminal to create the bootable Installer. Examples of this command are in the next section. To get the detailed instructions for use, make sure that the app install OS X proper is in your Applications folder, then enter one of the following in a Terminal:

    Path for El Capitan:

    /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/Resources/createinstallmedia

    Note in step 4. the appropriate installation program should be in the Applications folder before you reach it.

    The article gives a more complete example of the command.

    The following examples assume that the OS X Installer is in your Applications folder and the name of your USB key or another volume is MyVolume:

    Example for El Capitan:

    sudo /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume --applicationpath /Applications/Install\ OS\ X\ El\ Capitan.app

    If you are just trying to create a bootable USB key, then you just install El Capitan on this disc as usual, by selecting the USB key as a destination.

    Update of OS X El Capitan - Apple Support

    Best regards.

  • Create a new collection for 2016

    Hi, I have to create a new collection for 2016 or OSX photos will do it automatically?

    Photos will automatically create collections of related moments and years of collections.

    You cannot influence how these libraries are created, it is fully automatic.

    But if you ask about the creation of a new library of Photos for 2016, then you must create the new library yourself.  Photos by default continues to use the last photo library you opened.

  • Is it possible to create a mailing list for labels in numbers in El Capitan 3.6.1 Avery?

    Is it possible to create a mailing list for Avery 8160 labels in numbers 3.6.1 in El Capitan?

    The short answer is, no, the number is not a good tool for this work. Or (I think) is the current version of Pages.

    SG

  • can I create a DLL file for labview that has DLL library with inside?

    Hello everyone,

    I am developing an application for the cards PCI devicenet in labview (beginner to labview) environment.  Is there a DLL file for the PCI card from the provider. But it's too complicated for a beginner to call each function in the DLL of labview. Therefore, I'm trying to re - use a VC ++ program (working properly) that calls some sellers DLL library functions.    To do this, I created the DLL file which includes all headers and libraries the provider DLL, as indicated in the attached figure. But I couln can't see the effect on the device. is it possible to create a DLL file for labview that has DLL library with inside? If this is not the case, how can I implement the program shown in figure?

    I would like to wish a huge as to advance.

    It is not something I have a lot of experience in so I don't know all the details of the restrictions or requirements etc - but it is certainly possible to create wrappers for the dll and then use them in LabVIEW - this is sometimes necessary to convert some native types/data structures in C/C++ into something that you can switch to your other DLL LabVIEW.

    There is a link here: http://digital.ni.com/public.nsf/allkb/06ECDC689DDA0F3D862574440074CD95

  • How can I create a language pack for Windows 7?

    How can I create a language pack for Windows 7

    No! You can use the language packs provided by Microsoft. "A programmer is just a tool that converts the caffeine in code" Deputy CLIP - http://www.winvistaside.de/

Maybe you are looking for