Impossible to add date in dumpfile using a file & export

Hi all

OS = SOLARIS SPARC 64-bit 11

DB = Oracle 12 c

I am planning a daily backup of the database using cron tasks, do I have to create a simple script. In this script, I will inaugurate the export dump using parameter files. The dump file must contain the date of the backup.

Since this is my first time this is done, I was looking around and found a method on the date of the addition in the dump file. But I still couldn't it works when I get home all in a parfile.

At first, I tried to run the backup without using the nominal file, and it works as below.

export ORACLE_SID = ELMTEST

Export mydate = "date"+ %Y %m %d"'"

echo $mydate

20141117

oraelm@hrmdbd01:/backup/Elm$ expdp system/manager@ELMTEST directory dpump_dir1 dumpfile = hrtestexp_ = $ {mydate} .dmp nologfile = y

Export: Release 12.1.0.1.0 - Production on Mon Nov 17 11:15:38 2014

Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle 12 c Enterprise Edition Release 12.1.0.1.0 - 64 bit Production database

With partitioning, Automatic Storage Management, OLAP, analytical advanced

and Real Application Testing options

Start "SYSTEM". "" SYS_EXPORT_SCHEMA_01 ": directory of system/***@ELMTEST = dpump_dir1 = hrtestexp_20141117.dmp nologfile dumpfile = y

Current estimation using BLOCKS method...

Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 0 KB

Processing object type SCHEMA_EXPORT/USER

Processing object type SCHEMA_EXPORT/ROLE_GRANT

Processing object type SCHEMA_EXPORT/DEFAULT_ROLE

Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA

Object type SCHEMA_EXPORT/SYNONYM/SYNONYM of treatment

Object type SCHEMA_EXPORT/TABLE/TABLE processing

Object type SCHEMA_EXPORT/TABLE/COMMENT of treatment

Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX

Object type SCHEMA_EXPORT/TABLE/CONSTRAINT/treatment

Object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS of treatment

Object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS treatment

Object type SCHEMA_EXPORT/STATISTICS/MARKER of treatment

Processing object type SCHEMA_EXPORT/POST_SCHEMA/PROCACT_SCHEMA

Main table 'SYSTEM '. "" SYS_EXPORT_SCHEMA_01 "properly load/unloaded

******************************************************************************

Empty the file system set. SYS_EXPORT_SCHEMA_01 is:

/Backup/Elm/hrtestexp_20141117.dmp

Work 'SYSTEM '. "" SYS_EXPORT_SCHEMA_01 "completed Mon Nov 17 11:16:39 2014 elapsed 0 00:00:59

However when I came all in my parameter file it failed.

UserID=System/Manager@ELMTEST

Directory = dpump_dir1

dumpfile = hrtestexp_$ {mydate} .dmp

logfile = test_exp.log

Export: Release 12.1.0.1.0 - Production on Mon Nov 17 11:18:25 2014

Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle 12 c Enterprise Edition Release 12.1.0.1.0 - 64 bit Production database

With partitioning, Automatic Storage Management, OLAP, analytical advanced

and Real Application Testing options

ORA-39001: invalid argument value

ORA-39000: bad dump file specification

ORA-39157: Error adding extension to file ' hrtestexp_$ {mydate} .dmp ".

ORA-07225: sldext: translation error, impossible to expand file name.

Additional information: 7217

Can someone help me on this please?

Thank you very much

Jason

To expand a bit on Richard to answer...

The reason why it works on the command line, not in the file because the command line itself is processed by the processor of the shell.  The shell bed processor line, performs substitutions (like your $mydate) environment variables and THEN load the requested executable (expdp) it passing the fully expanded command line.

On the other hand, him parfile is read and processed ONLY by expdp, which knows no substitution of environment variables.

There are several common ways to deal with this.

We have to leave everything right on the command line.

Another would be to have the shell script to write the nominal file as well:

export ORACLE_SID = ELMTEST

Export mydate = "date"+ %Y %m %d"'"

echo $mydate

20141117

export parfile = myparfile.txt

Directory = dpump_dir1 echo > $parfile

dumpfile = hrtestexp_ echo $ {mydate} .dmp > $parfile

echo nologfile = y > $parfile

oraelm@hrmdbd01:/backup/Elm$ system/manager@ELMTEST expdp parfile = $parfile

Another technique is to use the redirection of input:

oraelm@hrmdbd01:/backup/Elm$ expdp system/manager@ELMTEST<>

Directory = dpump_dir1

dumpfile = hrtestexp_$ {mydate} .dmp

nologfile = y

MOE

A few other comments

First of all, as already pointed out, the export is not a backup, at least not a physical backup.  To use export for recovery, you must first have a working database.  It will be no help if you have a failure of a support on a data file.

Second, you really need to capture a log file, rather than nologfile = y.  This log file can be valuable in any number of situations.  Why in the world would you delete?

Tags: Database

Similar Questions

  • How to add data to the SD card file?

    I use OutputStream to write data to a file on the sd card.

    Before you start coding, I assumed that we can use a similar api seek() but I couldn't find a way to move the file position.

    is it possible to add data using OutputStream or any other method?

    FileConnection.openOutputStream (long byteOffset)

    byteOffset - number of bytes to skip from the beginning of the file when the positioning of beginning of the OutputStream. If the supplied offset is greater than or equal to the current size of the file, the OutputStream is positioned at the end of the file to be added.

  • Problem of migration of data of characters using a whole export and import

    Hi there;

    I have a database in my local computer that does not support Turkish characters. My NLS_CHARACTERSET is WE8ISO8859P1, it should be changed to WE8ISO8859P9, because it supports the full Turkish characters. I would like to migrate character data using a full export and import and my strategy is the following:

    1. create a full export to a network location,

    2 create a new database in the local computer than NLS_CHARACTERSET is WE8ISO8859P9 (I wish NLS_TERRITORY NLS_LANGUAGE change by the way)

    3 and to implement a full import of database created.

    I've implemented the first step, but I could not implement the second step. I created the second step using Toad editor by clicking Create-> new database, but I can't connect to the new database. I need to connect the new database in order to perform the full import. How can I do this?

    Thanks in advance.

    Technical details

    NLS_LANGUAGE... AMERICAN

    NLS_TERRITORY... AMERICA

    NLS_CURRENCY... $

    NLS_ISO_CURRENCY... AMERICA

    NLS_NUMERIC_CHARACTERS.,.

    NLS_CHARACTERSET... WE8ISO8859P1

    NLS_CALENDAR... GREGORIAN

    NLS_DATE_FORMAT... DD-MON-RR

    NLS_DATE_LANGUAGE... AMERICAN

    NLS_SORT............................... BINARY

    NLS_TIME_FORMAT... HH.MI. SSXFF AM

    NLS_TIMESTAMP_FORMAT... DD-MON-RR HH.MI. SSXFF AM

    NLS_TIME_TZ_FORMAT... HH.MI. SSXFF AM TZR

    NLS_TIMESTAMP_TZ_FORMAT... DD-MON-RR HH.MI. SSXFF AM TZR

    NLS_DUAL_CURRENCY... $

    NLS_COMP............................... BINARY

    NLS_LENGTH_SEMANTICS... BYTE

    NLS_NCHAR_CONV_EXCP... FAKE

    NLS_NCHAR_CHARACTERSET... AL16UTF16

    NLS_RDBMS_VERSION... 10.2.0.1.0

    :

    First of all, if your applications run on Windows, do not use WE8ISO8859P9. Use TR8MSWIN1254.

    Second, if you create a new database, the database is not necessarily immediately accessible to the outside world. I don't know of a toad, and I have no idea if it performs all necessary steps required for the new base data is visible.  For example, in the toad itself, I guess you need to create a new connection that refers to the new SID of the newly created database and use this new link to connect. However, connections without a connection string using the parameter ORACLE_SID in the registry to indicate applications access which instance (database) to use.  To change the database accessed with a connection string empty, you must modify the registry (unless the toad has an option to do it for you). If you want to connect without changing the registry, you need a connection string. This requires the implementation of Oracle Listener to serve the new database (unless the default configuration is used and the database registers itself with the default listener). You must also edit the tnsnames.ora file to create an alias for the new database. Net or Net Configuration Manager Wizard can help you with this.

    I wonder if the database Configuration Wizard would not be a better tool to create a new Oracle databases.

    Thank you

    Sergiusz

  • Add data to the input csv file

    I'm using a csv file as my data entry for a test. Test data are simply saved in a table. How can I add these data from table to the CSV of origin, as an additional column, once you click on the stop button?

    To add a new column, the only way is to read the entire file, convert a 2D array, add the new column and then write the new 2D array in file. This is a limitation of the windows way written files and has nothing to do with LabVIEW.

  • multiple worksheet data in a single pdf file export

    Hi all

    I'm working on the creation of a report that has 5-7 worksheet containing a mixture of tables and graphs. I am able to export worksheets as separate pdf documents, but I was wondering if there is a solution that can be used to export all these sheets in a pdf file instead of 1 pdf for each worksheet.

    I doubt if it is possible, but figured it confirms with experts.

    Thank you.

    Hi Paul
    Not as far as I know. I think they have to be exported one by one. However, if you use Discoverer Desktop, you should be able to set up a script or a batch file to export.

    If you want more information please take a look at an article I did on the calendar that is available for free download on the site muy here: http://ascbi.com/downloads/downloads.htm

    Scroll down to the section called presentations Armstrong-Smith. The one you want is the 2nd on the list of the AUTOMATEDSCHEDULING

    This can help

    Best wishes
    Michael

  • When I try to sign and add dates in pdf forms, as I USED to be able to do...

    When I try to sign and add dates in pdf forms, as I USED to be able to do until I'm so-called 'improved', by selecting "fill and sign", the page will just blank and I'm drunk. What's wrong?

    Windows 7 Pro.

    Screenshot simply shows nothing else that a header with a tab said "Document" that would bring back me to the pdf document. All the pdf documents I've tried, and that was the most I've saved.

    Unfortunately, it came to my attention when I had little time and was both deal with the Australian Taxation office AND fill in the dates and sign and return that some docs of annual audit my accountants.

    Solved the problem simply uninstall the DC version and stalking a version of X Adobe Reader online and installation. Hey presto, everything fixed. As usual the lesson learned is: if it's not broken, don't fix it "." It happened because I agreed a recommended update. Like so many others, Adobe seems to have problems with the "newer".

    I now put on ' manually search for updates (so-called non recommended) and that's the way it will stay, and I do not seek. Also, if I try in the future, I keep the Setup program in a folder in my downloads, so I can come back easily, where an agency decides to remove older versions of availability.

  • Impossible to add storage as data store

    Hello

    I started with 4 esxi servers 5 to test the object with the method of assessment and added the common datastore on all 4 servers for virtual machines that worked very well. but the tests I formatted 2 esxi servers and installed ESXi 4 top, now when I am adding common storage in these 2 ESXi 4 Server I get the error attached, I have found the solution so that it can delete the partition with fdisk command to this logical unit number, but this LUN is common for all 4 servers and virtual machines running on it for 2 ESXi 5 host , so please, someone has the solution to this problem

    Another problem is that showing time in hostd.log file is different because I have configured in Setup esxi why its different time showing.

    Thank you Sam

    Please mark question answers

    Frank

    Am 03.09.2012 um 18:49 wrote sagar_arora [email protected]<>[email protected]>:

    Http://communities.vmware.com/index.jspaVMware communities >

    Impossible to add storage as data store

    sagar_arorahttp://communities.vmware.com/people/sagar_aroraresponse > in VMware ESXi 5 - see the discussion complete onhttp://communities.vmware.com/message/2108663#2108663

  • Add data in the dumpfile parameter in command exp

    Hello

    I have installed 10.2.0.1 on windows server 2003.

    I took the backup hot using the command.
    Exp username/pwd FILE=C:\DataBaseBackups\3AMNEO.DMP LOG=C:\DataBaseBackups\3AMNEO.LOG
    which works very well.

    I made a batch file that have this code and that run daily at some point and overwrite existing (i.e. the last day) backup. But I don't want to do.

    I would like to add data with the file name so that every day, it creates a new backup. (No more write existing backup.)

    My goal is to do a daily backup without replacing existing backup automatically.

    Thank you

    Hello

    hope this helps

    http://DBA.ipbhost.com/index.php?showtopic=804

    Concerning
    Mozka

  • Impossible to add all lines values correctly.

    I have to summarize the cost attribute in the displayed table.
    I get all VO lines and loop through all the lines and cost attribute. It returns the type object.

    The attribute of the cost of the table data type is number.
    I'm unable to the returned object, to the number. So I did the chain, then double. But my total I got this code varies from $ 4 the amount of sql.
    Can someone guide me how to cast in number and then add all the numbers?
    I've tried many things but gives me a class cast exception.
    Thanks in advance.

    Code that works, but gives the incorrect result:
            double aDouble = 0;
            RowSet rowSet = (RowSet)vo.getRowSet();
            if(rowSet == null)
            {
              System.out.println("No Rows retreived");          
            }else
            {
              while(rowSet.hasNext())
              {
               Row row = (Row)rowSet.next();
                String strCost = (row.getAttribute("Cost")).toString() ;
                 aDouble += Double.parseDouble(strCost);
                }
                System.out.println("Total before rounding " + aDouble); //without rounding
            }

    Use the following import statement in your controller.
    Import oracle.jbo.domain.Number;

    do not import the java compiler will make them rely as impossible.
    And your getAttribute() will return oracle.jbo.domain.Number. As a result, you will get class cast exception.

    to add the type Number use method Number.add (Number)

    Number a = new Number (40);
    a.Add (new Number (30));

    This method of the sum will always be equal to the SQL sum.

    Prasanna-

  • How to add data to a text file?

    Hello

    I want to add data to a previously created text file. When I used writing text file.vi. It replaces previous data.

    Try to use the function "set position in the file" (file e/s palette, advanced functions) before writing the data.

    either open the file, position set to finish, write the data, close the file.

    Ian

  • Read multiple files in the folder and add data to a file

    Hello world

    Normal 0 false false false MicrosoftInternetExplorer4 / * Style Definitions * / table. MsoNormalTable {mso-style-name: "Table Normal" "; mso-knew-rowband-size: 0; mso-knew-colband-size: 0; mso-style - noshow:yes; mso-style-parent:" ";" mso-padding-alt: 0 cm 0 cm 5.4pt 5.4pt; mso-para-margin: 0 cm; mso-para-margin-bottom: .0001pt; mso-pagination: widow-orphan; do-size: 10.0pt; do-family: "Times New Roman"; mso-ansi-language: #0400; mso-fareast-language: #0400; mso-bidi-language: #0400 ;} "}

    I have several (hundreds) text files in a folder. I want to combine the data of the files into a single file. It must of course begin to file the oldest and sequentially read the files to the latest changes and add all the data in a new txt file.

    Here are the typical two consecutive files comma separated data:

    2009-02-17, 23:17:04, ff1c, 00ff, 0093, 0000, 0100 and 0001-ffff, d3ae, 0cce, 0 cd 4, DC 4, 00 c 2 0, 000 a, 09e4, 0609, 0000 and 0000, 17 c 7
    2009-02-17, 23:17:06, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3af, DC 0 5, 0 cd 7, 0ccf, 00C 2, 000e, 09e6, 0608, 0003, 0000, 17 c 7
    2009-02-17, 23:17:09, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b0, 0 cd 2, cd 0 1, 0 cd 5, 00bb, 000d, 09f1, 0608, 0000 and 0000, 17 c 7
    2009-02-17, 23:17:11, ff1c, 00ff, 0093, 0000, 0100 and 0001-ffff, d3b1, 0c 21, 0ccf, 0 cd 3, 00 c 2, 000 a, 09e3, 0608, 0000 and 0000, 17 c 7
    2009-02-17, 23:17:14, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b2, 0cc9, DC 0 5, 0 cd 7, 00 c 4, 0008, 09e4, 0608, 0000, 0002, 17 c 8
    2009-02-17, 23:17:16, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b3, 0 cd 2, cd 0 6, 0 cd 7, 00bf, 000d, 09eb, 0608, 0000 and 0000, 17 c 8
    2009-02-17, 23:17:19, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b4, 0cc9, 0 cd 8, 0 cd 2, 00 c 2, 0009, 09ea, 0608, 0000 and 0000, 17 c 8
    2009-02-17, 23:17:21, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b5, 0 cd 2, cd 0 1, 0 cd 1, 00 c 2, 0009, 09e8, 0608, 0000, 0001, 17 c 8

    2009-02-17, 23:17:24, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b6, 0 cd 3, cd 0 3, 0 cd 3, 00, 000d, 09eb, 0608, 0001, 0001, 17 c 9
    2009-02-17, 23:17:26, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b7, 0ccd, 0 cd 8, 0 cd 4, 00bc, 0006, 09e6, 0608, 0001, 0003, 17 c 8
    2009-02-17, 23:17:29, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b8, 0 cd 2, cd 0 3, 0 cd 3, 00C6, 000d, 09e9, 0608, 0001, 0001, 17 c 9
    2009-02-17, 23:17:31, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3b9, 0ccf, DC 0 3 0 cd 4, 00ba, 000d, 09e8, 0608, 0000 and 0000, 17 c 8
    2009-02-17, 23:17:34, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3ba 0c1b, 0 cd 3, cd 4 0, 00 c 0, 0009, 09e9, 0607, 0001, 0000, 17 c 8
    2009-02-17, 23:17:36, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3bb, 0 cd 3, cd 4 0, 0 DC 3, 00 c 2, 000 a, 09e8, 0607, 0001, 0003, 17 c 9
    2009-02-17, 23:17:39, ff1c, 00ff, ffff 0093, 0000, 0100, 0001, d3bc, 0 cd 4 0 DC 4, DC 0-2, 00b 5, 000d, 09e9, 0607, 0001, 0002, 17 c 9
    2009-02-17, 23:17:41, ff1c, 00ff, ffff 0093 0100, 0000, 0001, d3bd, 0cbd, 0 cd 4, 0 DC 7, 00 c 2, 0009, 09e8, 0607, 0001, 0001, 17 c 9

    Text files have no header just the RAW file as seen above.

    Would appreciate any help. Thank you in advance.

    Concerning

    Dan

    Hi Dan,.

    I don't know what version of LabVIEW u using, I have attached the vi in the 8.5 v. My vi sorts the file names by order alphabetical use get info file vi to do sorting like u mentioned

  • Add data in the header of a .wav file

    Hello guys,.

    I seek your help for a small problem that I can't spend during my internship.

    Here's what I want to do: I acquire signals that I write a .wav file. What I would do then is to reopen this .wav file and add data in the header, such as the sensitivity of the microphone for example. I am doing this is because it's one of our program of works, it can resume the pressure vs time signal using this information. I already have the hex code I need to add, but I was not able to determine if such a thing is possible or not after a day of research ideas would be greatly appreciated. I wonder if Matlab might do the trick but I prefer to stay with the 'normal '... screws

    Thank you very much for your help.

    To insert data into the middle of a file, you will need to rewrite the entire file after that point, as Gerd said in the linked post.  I would do the following:

    1. Search for the location you want to put your new piece
    2. Read 65 000 bytes from forward and store in a local cache (shift registers work well for this, or just a wire at this point).
    3. Write your new piece, taking note of how long it is
    4. Give your data buffered less the length of your new song
    5. Read a 65 000 other bytes and put it in a new buffer
    6. Write the end of the old buffer and a part of the new buffer until you get to 65 000 bytes
    7. Repeat 4 to 6 until you reach the end of the file
    8. Update the offsets in the header to match the new locations of piece, since you have moved things

    You can probably do it with both data pads in a pair of registers at offset in a loop.  The 65 000 bytes is chosen for best performance.  You can use other sizes, but your speed can suffer.  Let us know if you encounter any problems.

  • Constantly add data to the chart 2D

    Hi I'm going to be very difficult to deal with some great paintings. What I'm trying to do is create a program that monitors the 23 entries of a controller for cRIO. Here is the flow of the program:

    1. the program starts and collects 1 sample per second of each entry and place into a 2D array, which has 23 columns and 10 rows

    2 only collect 10 samples, constantly replace the samples in this array.

    3. once a threshold is crossed any of the entries take the previous table and add it to a different 2D array that contains 360 000 rows and 23 columns.

    4. once the table is inserted permanently add data of each entry in the new table at 100 samples/s.

    5. the big Board has 360 000 lines because the program must be able to record data for one hour if necessary.

    I used 23 separate tables and it worked OK but it was much to ineffective and the program was slow. I can't get data to enter in the right table and I'm pretty frustrated so any help will be much appreciated. Thank you

    Adam

    At least I'd be initialize your berries to the largest possible size that you may encounter. When adding data use the subset of table replace to update the table with your new data. In addition, I would put these paintings in a shift register. Avoid to display an indicator of control to data, do not use local variables or property nodes to access the data. or the other.

    Also, do you need to have all the data in the application while it is running? You can use medium running or other methods to reduce the amount of data, you should keep in mind? May store data to disk and keep only part of it in memory and read only comprehensive data when you need it?

  • Open the spreadsheet at the request and add data

    Using a cDAQ 9172 and Labview 8.2, I collect four channels of noisy pressure and temperature data collected during a product test.  The data are shown live on the band on the front panel cards after be smoothed by the average feature of the sample Compression Express vi.  All this works pretty well.

    Data are presented to the test operator so that he can see when the test conditions have stabilized, which usually takes 3 to 5 minutes.  After stabilization, I want to be able to press a button on the front panel so that a spreadsheet is open (ideally, with the original opening time as part of the file name) and a scan of the four data channels are added to the spreadsheet (with a timestamp).  Then, ongoing test for 1 or 2 minutes, I want to again push the button every 10 or 15 seconds or so to add more data analysis, so that we can see later that the conditions had really stabilized.  The exact date and the number of analyses of additional data is not critical, I just want to be able to connect to another 4 to 8 lines of data before you complete the test.

    I have a kind of sort of do this, shown on the seal 'on demand spreadsheet.vi' below.  Noisy signals are shown here numbers just under the random name embedded in a table (which is how my data writing to a spreadsheet file in my actual program).  The problem with this arrangement is that the spreadsheet file is created each time that I start the vi and there are several times during execution of tests and data are not collected for some reason any.  Accordingly, we would end up with a large number of files with no or data without meaning .xls.  I just want to create the worksheet file when I press the button (s) during a successful test after conditions have stabilized.

    I tried a slightly different approach in the joint 'on demand spreadsheet 2.vi' below where I added a switch to toggle to activate a case to open the spreadsheet, and an additional button to save data.  It seems like it should work, but I don't get all the lines of data, only the headers.

    I'm still pretty new to all this and I have spent days trying to figure this out.  Any help is greatly appreciated.

    I don't have 8.2.  You can either save my vi and publish it on the thread Downconvert VI ask, or you could look at just the image:

  • I seem to be impossible to add network and volume icons in the notification area. Both are "grayed out" in the Properties tab.

    I seem to be impossible to add network and volume icons in the notification area.  Both are "grayed out" in the Properties tab.

    Hello

    1 Please reboot nothing so interfere with this process.

    Click with the right button on Taskbar - Properties - tab Notification area - check box Volume - if it is grayed out
    Then, use this link. Network is the same.

    How to enable or disable the system tray in Vista icons (there are several methods
    and you can to use them all).
    http://www.Vistax64.com/tutorials/106787-notification-area-system-icons.html

    If necessary: a Mr Fixit

    System icons do not appear in the notification area in Windows Vista or in Windows 7 until you
    Restart the computer
    http://support.Microsoft.com/default.aspx/KB/945011

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

Maybe you are looking for

  • ITunes metadata

    I have problems lately with iTunes, when I import a CD for example Don Henley Cass County, it divides into two albums with 11 songs and the other with 1 song. I checked the meta data and it is the same thing. Sometimes, when I open iTunes there is an

  • Hard drive read on Satellite A500-011

    I got a new Sateliite and the specification of HDD is 320. However, when I check the property of the HD, it reads capacity 265, used 11GB and GB available 254. I see not all partitions. I'm sure that the stuff OS and Toshiba are stored there, but mis

  • Timestamp conversion customer

    Hello I noticed weird customer in number to the time stamp function. If the entry is 0 then the time stamp indicator: 00:00:00, 000 DD. MM. YYYY which is OK, but IMHO the date should indicatecurrent the current date or a default date. If I increase t

  • How can I get the WiFi service on my computer?

    ATT, my ISP, says I have included WiFi with my DSL but I don't know how to tell the computer which. I am running Windows Vista.

  • Stand-alone procedure call

    I have this code where I have a package pkg_1 that has 2 procedures pr1 and pr2 (local) below. There is an another standalone procedure pr2. I invoke the procedure inside the pkg_1 pr1 which inturn calls pr2. Ideally, he would call the local pr2 insi