Transform=segment_attributes:n not working as documented... : (

I used expdp to create a no rows export (content=metadata_only) of a 10.2.0.4 database. I am now trying to import the structures into a newly create 11.2.0.3 database using impdp.
Here is the command used to run the import.
impdp system/password DIRECTORY=EXPORTDB_DIR dumpfile=onedev_NOROWS_03292013.dmp logfile=onedev_norows_import.log transform=segment_attributes:n job_name=full_norow_onedev
From my understanding of the documentation concerning the transform=segment_attributes:n parameter that The import would not try and create tablespaces and would also strip out segment attributes during import...
This from the datapump documentation.
Specify the value of SEGMENT_ATTRIBUTES as n. This results in the exclusion of segment attributes (both storage and tablespace) from the table.
Here is from the log of the import and the first thing it is doing is trying to create tablespaces? What am I doing wrong?
Master table "SYSTEM"."FULL_NOROW_ONEDEV" successfully loaded/unloaded
Starting "SYSTEM"."FULL_NOROW_ONEDEV": system/******** DIRECTORY=EXPORTDB_DIR dumpfile=onedev_NOROWS_03292013.dmp logfile=onedev_norows_import.log transform=segment_attributes:
n job_name=full_norow_onedev
Processing object type DATABASE_EXPORT/TABLESPACE
ORA-31684: Object type TABLESPACE:"SYSAUX" already exists
ORA-31684: Object type TABLESPACE:"TEMP" already exists
ORA-31684: Object type TABLESPACE:"USERS" already exists
ORA-39083: Object type TABLESPACE failed to create with error:
ORA-01119: error in creating database file '/data1/ONEDEV/undotbs02.dbf'
ORA-27040: file create error, unable to create file
IBM AIX RISC System/6000 Error: 2: No such file or directory
Additional information: 1
Failing sql is:

>
I used expdp to create a no rows export (content=metadata_only) of a 10.2.0.4 database. I am now trying to import the structures into a newly create 11.2.0.3 database using impdp.
Here is the command used to run the import.
impdp system/password DIRECTORY=EXPORTDB_DIR dumpfile=onedev_NOROWS_03292013.dmp logfile=onedev_norows_import.log transform=segment_attributes:n job_name=full_norow_onedev
From my understanding of the documentation concerning the transform=segment_attributes:n parameter that The import would not try and create tablespaces and would also strip out segment attributes during import...
This from the datapump documentation.
Specify the value of SEGMENT_ATTRIBUTES as n. This results in the exclusion of segment attributes (both storage and tablespace) from the table.
>
That quote is correct: 'results in the exclusion of segment attributes . . . from the table'.
See the last three words? 'from the table'.
Your error occurs when the DDL to create the tablespaces is executed.
If you do not want to create the tablespaces then specify the EXCLUDE parameter.
See the doc
http://docs.oracle.com/cd/B19306_01/server.102/b14215/dp_import.htm#i1007865
You can also exclude the tables 'segment_attributes' as you show but the table has to use SOME tablespace. If you don't include the segment to use in the DDL then the table will get created in the users default tablespace.

Similar Messages

  • -moz-transform:scale does not work in Firefox with select tag(DropDown)

    -moz-transform:scale does not work in Firefox with select tag(Dropdown). The Dropdown options are being displayed at incorrect location.

    'Hi, Please try the HTML attached in image. This works in IE, Safari, Crome but not in Firefox

  • LDAP compare not working as documented in SDK

    I'm developing a Java application against Novell eDirectory 8.8 SP6 with
    LDAP and seeing some differences between the Novell LDAP SDK
    Documentation and the actual LDAP implementation inside eDirectory for
    LDAP. The problem is that compare(java.lang.String dn, LDAPAttribute
    attr) method of com.novell.ldap.LDAPConnection is not working as
    described. I've noticed two strange issues:
    1) LDAP COMPARE THROWS AN ERROR WHEN IT SHOULD NOT
    According to the documentation ( the value FALSE should be returned when
    the entry does not have the value or the attribute. However, eDirectory
    return a -603 LDAP error when yo do a compare on an entry which does not
    have the attribute (it does exist in the schema though).
    In example:
    Compare on User John Doe without any value for myauxattr:
    ldapcompare -x -H ldap://ldapserver.test.com -D cn=admin,o=org -w
    <password> cn=jdoe,ou=users,o=org myauxattr:testfornomatch
    COMPARE RESULT: NO SUCH ATTRIBUTE (16)
    ADDITIONAL INFO: NDS ERROR: NO SUCH ATTRIBUTE (-603)
    UNDEFINED[/B] --> INCORRECT RESPONSE
    COMPARE ON USER JOHN DOE WITH VALUE 'TESTFORNOMATCH' FOR MYAUXATTR:
    LDAPCOMPARE -X -H LDAP://LDAPSERVER.TEST.COM -D CN=ADMIN,O=ORG -W
    <PASSWORD> CN=JDOE,OU=USERS,O=ORG MYAUXATTR:TESTFORNOMATCH
    TRUE
    COMPARE ON USER JOHN DOE WITH VALUE 'OTHERVALUE' FOR MYAUXATTR:
    LDAPCOMPARE -X -H LDAP://LDAPSERVER.TEST.COM -D CN=ADMIN,O=ORG -W
    <PASSWORD> CN=JDOE,OU=USERS,O=ORG MYAUXATTR:TESTFORNOMATCH
    FALSE
    *1) LDAP COMPARE DOES NOT THROW AN ERROR WHEN IT SHOULD
    Moreover, if you don't have the Compare Rights to that attribute,
    eDirectory always returns FALSE on a LDAP compare, which I beleive is
    not correct. A return value of FALSE implicitly states that the compare
    could be done, but no match is found. However, insufficient rights
    prevent the compare, so eDirectory should throw an error. Something like
    LDAP: error code 50 INSUFFICIENT_ACCESS_RIGHTS.
    In example:
    Compare on User John Doe without any value for myauxattr and no compare
    rights:
    ldapcompare -x -H ldap://ldapserver.test.com -D cn=limiteduser,o=org -w
    <password> cn=jdoe,ou=users,o=org myauxattr:testfornomatch
    [B]FALSE* --> incorrect response
    Compare on User John Doe with value 'testfornomatch' for myauxattr and
    no compare rights:
    ldapcompare -x -H ldap://ldapserver.test.com -D cn=limiteduser,o=org -w
    <password> cn=jdoe,ou=users,o=org myauxattr:testfornomatch
    *FALSE* --> incorrect response
    Compare on User John Doe with value 'othervalue' for myauxattr and no
    compare rights:
    ldapcompare -x -H ldap://ldapserver.test.com -D cn=limiteduser,o=org -w
    <password> cn=jdoe,ou=users,o=org myauxattr:testfornomatch
    *FALSE* --> incorrect response
    My question is: should I file this as a bug or is the LDAP SDK
    documentation invalid?
    sveldhuisen
    sveldhuisen's Profile: https://forums.netiq.com/member.php?userid=1813
    View this thread: https://forums.netiq.com/showthread.php?t=48106

    Thanks Ab for pointing that out. That explains the error when doing a
    compare on an entry without that attirbute. However, if no compare
    rights are given, LDAP compare shoudl throw an error as well. This part
    seems like a bug to me. My conclusion is that the documentation of JLDAP
    is incorrect and we have a bug upon insufficient rights. Interesting is
    that also the code Examples for LDAP compare in the SDK are invalid as
    well: no check is done if the attribute exists on the entry before
    calling LDAP compare.
    ab;231062 Wrote:
    > I think what you are seeing is correct per RFC 4511:
    >
    > <quote>
    > Upon receipt of a Compare Request, a server will attempt to perform
    > the requested comparison and return the result in the Compare
    > Response, defined as follows:
    >
    > CompareResponse ::= [APPLICATION 15] LDAPResult
    >
    > The resultCode is set to compareTrue, compareFalse, or an appropriate
    > error. compareTrue indicates that the assertion value in the ava
    > field matches a value of the attribute or subtype according to the
    > attribute's EQUALITY matching rule. compareFalse indicates that the
    > assertion value in the ava field and the values of the attribute or
    > subtype did not match. Other result codes indicate either that the
    > result of the comparison was Undefined (Section 4.5.1.7), or that
    > some error occurred.
    > </quote>
    >
    > Note the part about an "appropriate error", and the bit about the
    > comparison being Undefined. The full RFC can be read in many places,
    > such
    > as the following URL:
    >
    > http://www.ietf.org/rfc/rfc4511.txt
    >
    > Good luck.
    sveldhuisen
    sveldhuisen's Profile: https://forums.netiq.com/member.php?userid=1813
    View this thread: https://forums.netiq.com/showthread.php?t=48106

  • CS3 Free Transform Tool does not work at all for distortion

    I tried everything, worked with vector objects of different configurations and rasterized objects. Nothing works. When I press Free Transform Tool and go to bounding box corner it become rotate or resize tool. When I click a little bit inside the bounding box and hold Command Key (I tried many keys and without keys) it just moves the whole object, it did not select just one point that I need. Envelope Mesh does not work for the same reason, but I do not need mesh tool. I have Illustrator 13.02, Mac OS 10.4.11
    The Free Transform Tool functions exactly as the main selection tool. Please help.

    I STILL cannot get this to work. I have tried everything suggested in this thread. I have followed the directions in the help menus explicitly. I have tried grouping, ungrouping. I have tried it on type, on type changed to outlines, on simple rectangles. Without success.
    When I try to use the free transform tool and hover over a corner of the bounding box, I get either a double-headed corner arrow, a rotation arrow, or a move arrow. Using the first two, dragging the point and then holding down the control/command key results only in a scaling of the object.
    Should I restart? Should I re-install? What should I do?
    Best,
    Fielden

  • The css transform property is not working in the new firefox. I have used -moz-transfrom and it was working just before the last update.

    Here's the code that no longer works. The buttons scale down in all other browsers but stopped working after the latest firefox update.
    .bigButton:hover{
    -moz-transform: scale(.95) rotate(0deg) translate(0px, 0px) skew(0deg, 0deg);
    -webkit-transform: scale(.95) rotate(0deg) translate(0px, 0px) skew(0deg, 0deg);
    -o-transform: scale(.95) rotate(0deg) translate(0px, 0px) skew(0deg, 0deg);
    -ms-transform: scale(.95) rotate(0deg) translate(0px, 0px) skew(0deg, 0deg);
    transform: scale(.95) rotate(0deg) translate(0px, 0px) skew(0deg, 0deg);
    }

    For some reason, skew() was removed in Firefox 14. You need to replace it with skewX() and skewY(). See https://developer.mozilla.org/En/CSS/transform for the syntax.
    Edit: I wrote "for some reason" but what I should have said was "skew() is not in the standard, so it was removed, but I don't know why it was removed ''right now''."

  • My transform tool is not working.

    Hey everyone this is my first post here. I am not having any luck using my transform tool. When you double click text you should be able to move it around but in my case I can’t. I can still move the whole layer around but I want to be about to move the text around within that layer. This is also becoming an issue because all my masking work isn’t possible any more as I can not select the handles to manipulate my mask.
    Here is just some more information for you guys. I am not seeing my mouse pointer change as I scan over the blue dots as it once did in early versions. I am using 10.1.1
    Thanks for any help. I really need it.

    You don't use the transform tool  to move text. Double clickk the title in the timeline or double click the text. This should highlight the text and allow you to drag it around. Not sure what blue dots you are refering to.

  • Transform/Reverse Position not working

    Hi all,
    In the past I have used Transform/Reverse Position in the piano scroll's (formally called matrix edit) function window to successfully reverse the position of selected notes.
    But I cant get it to work properly at all now.
    I have tried every combination I could think of with the bizarre interface window, but I either get no effect whatsoever, or the data is reversed but appears several bars later than the original position...
    I checked out a lot of the other Transform functions and they all seem to be working as advertised.
    Can anyone tell me what I am doing wrong here?
    Thanks

    It doesn't work properly. It hasn't for ages. If I remember correctly, it only works close to 1 1 1 1, but if you're region is farther away from that, the reverse position transform command just doesn't work.

  • JRE 7 Patch-in-Place Configuration not working as documented

    According to all of the documentation I have read, the default JRE installation mode is patch-in-place.
    http://docs.oracle.com/javase/7/docs/webnotes/install/windows/jre-installer-options.html
    http://www.oracle.com/technetwork/java/javase/jre-install-137694.html
    http://docs.oracle.com/javase/7/docs/webnotes/install/windows/patch-in-place-and-static-jre-installation.html
    However, after either manually installing JRE 7 to a specific installation directory (e.g. not on C:), or by specyfying the the INSTALLDIR on the command line, a subsequent JRE 7 update will uninstall the previous JRE from the desired installation location and install the current JRE in the default location (i.e. C:\Program Files\Java\jre7).
    Is there some magic installer switch, registry entry, configuration file, etc. that will force the JRE installer to upgrade the existing installation in its existing location?
    Note - these are not static instllations.  Also, I am working with the 64-bit version; I don't know if the same applies to the 32-bit version, as I have not tested it because I require the 64-bit version.
    -Jeff

    At this site there is an explanation of this issue: probably LabVIEW don't support partial scrolling.
    If I understood what they write, in Intellimouse 8.0 and above, Microsoft implemented a kind of patch for applications that don't support partial scrolling.
    And so without Intellimouse, none of these applications supports partial scrolling.
    I'll try to install the latest version of Intellimouse, but I think NI developers should patch LabVIEW to support partial scrolling. On the same site MS gives a link to the MSDN information dedicated to developers on how to handle partial scrolling.
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

  • Alternate and span modes do not work as documented

    Odd Aperture behaviour of Secondary Monitor.
    According to Apple:
    Alternate: Displays the currently selected photo in the Secondary Viewer. The Secondary Viewer shows only one photo, even when you have the Main Viewer set to display multiple photos.
    Not on my computer.
    Span: Splits the display of the currently selected photos between the Main Viewer and the Secondary Viewer. For example, if you select seven photos to view, the Main Viewer shows as many as fit its screen size, and the remaining photos appear in the Secondary Viewer. Thus, one Viewer might show four photos, and the other Viewer might show the remaining three of the seven. Span is also used if you want to compare photos and show one photo per display.
    Not on my computer.
    Viewers
      Main viewer = Multiple
      Secondary viewer  = Span.
      Mode = browser.
    Select one or more images in browser, whatever number I select is shown on secondary monitor.
      Change mode to filmstrip.
    None selected:  Both image viewers are blank.
    One selected:  Two copies of same image.
    Two selected:  Both screens show image #1.  Neither shows Image #2
    Three Selected:  Both screens show images #1 and #2, neither shows #3
    Four selected:   Both screens show images #1 and #2, neither shows #3 or #4
    Five selected:  Both screens show images #1, #2 and #3, neither shows #4 or  #5
    Six selected:  No change from Five.  #6 not shown ether
    Seven selected: #1-4 show on both #5-7 show on neither.
    Change mode  to Viewer.  I now have two screens of 4 images. Same 4 on both.
    I'm getting *so* confused.
    Viewers
      Main viewer = Multiple
      Secondary viewer  = Alternate.
      Mode = browser.
    Browser behaves exactly the same as in Span.  Select 4 in browser -- they show as selected in browser, and all 4 show up in secondary.
    Change to viewer.  Main  and second both show all the images I had selected at the time.  If I manually deselect, I end up with one image on both the Main and Secondary.  Both viewer and secondary respond to middle mouse button roll in changing the primary (heavy outline) image.
    Change to filmstrip:  Whatever I have selected on the strip shows up in both the viewer and the secondary.
    Viewers
      Main viewer = Multiple
      Secondary viewer  = Mirror.
      Mode = all.
    Behaves exactly like Alternate does.

    Hi,
    Please try the below steps:
    Right click on the PSE icon.
    Select the option Run as admin.
    open the editor .
    Check is it working fine now.
    Also, try to reset the preferences of editor, refer the below link to do so.
    http://helpx.adobe.com/photoshop-elements/using/undo-redo-cancel-actions.html#restore_defa ult_preferences

  • CS6 Free Transform ctrl drag not working properly

    Anybody on this ...
    When I use the free transform tool crtr-T and use the ctrl drag button,  the corners do not extend properly.  It extends universally as aposed to a distorted corner-pull.   I uninstalled CS6 and reinstalled still getting the same result.  Any help would be greatly appreciated...
    Thanks

    What conroy wrote convert a smart object layer to a smart object layer may seem a bit strange but he is correct. All smart object layers are not created equal they may contain many types of smart objects.  An  illustrator vector file placed in can most likely be reopened  in illustrator by double clicking on the layers smart icon in the layers palette and transform the vector object in illustrator and when saved in illustrator the embedded smart object will be updated to reflect the changes made in illustrator.  If you encapsulate a VSO into a Smart Object when you transform the resulting smart object layer it will be transformed like a raster layer using interpolation like all Smart Object layers  are transformed. If you want to transform a layer that contain vector graphics using vector graphics you need to correct tools. Transform I would think would only transform Vector Shape Layer using vectors and change Text layer by changing font size all other layer types would be interpolated.  An embedded smart object the contains many Photoshop layers some which are text and vector layers like a places PSD file may be transform better using Photoshop Image Size and then transforming the resulting updated smart object layer if your increasing the layers size.

  • Conversion call in transformation files is not working

    Dear Experts,
    We are using BPC 7.5 NW SP06. For running master data load from BW, we are using the standard packages available. Whenever we are creating any transformation file keeping the conversion section blank it is working fine and getting validated. If we are creating new conversions, the same also gets validated and updated. To ascertain this, we also checked in the BW back end using UJFS t code and observed that the corresponding .CDM file is getting created in the back end. We are creating all such transformations and conversions in the default company folder. The issue lies in the fact that whenever we are referring the created conversion file in *CONVERSION section of the transformation file using the syntax:
    ID/HIER_NAME = [COMPANY]Conversion.xls!CONVERSION
    and trying validate the same we are getting the error:
    **"xml(........................CDM) file doesn't exists or empty.
    File / Document doesn't exist"*.
    We again went back to UJFS and found the CDM file is intact there with proper conversion definition. We tried to validate the same phenomenon of calling a conversion using any other transformation file. But the same error happens every time although at the back end the .CDM file gets created.
    What can be the problem here? We are stuck.
    Your expert advise is highly aprreciated.
    Thanks in Advance.

    Hi,
    ID/HIER_NAME = COMPANYConversion.xls!CONVERSION
    What is the file name here? Is it Conversion.xls and if it contains only one sheet then just try
    ID/HIER_NAME = CONVERSION.xls
    hope it works...
    regards,
    Raju

  • Mavericks and Dual Display not working as documented

    Hi all. Ok..something a little wierder here for my dual display scenario. I have two Samsung Syncmaster 2443 monitors. 15" MBP Retina purchased this year. Running in Clamshell Mode.
    I can get dual monitors happening (extended) but I cannot get the menu bar to come over as well. As mentioned in other posts, I need to tick the box in Mission Control "Displays have seperate spaces". The only problem is, that particular menu item is NOT there. All I have is the other 4 items. So how is it that this menu item does not exist on my installation?
    In this current setup, each time I reboot the display's also get reveresed, which is really annoying. I have to reboot twice to get back to my original layout.
    Any idea's?
    Tks

    you're faking out your machine to THINK it has 2 real displays and you expect Keynote to work? Keynote is THE most intense app I've ever seen for screen drawing. It basically takes over your entire machine to do its work. It doesn't surprise me that that trick doesn't work with it.
    My guess is you're going to have to wait till you have the actual projector and adapter to test your dual screen setup.

  • Illustrator CS5.5 Transforms in Actions not working properly?

    I'm doing a simple transform action. I want to move an object to a value on the Y axis. First of all, after recording the action, and setting the Y value to 64 px, the action is recorded as 64 pt, not px. This happens regardless of my 'Units' setting. Second, it ADDS the value to the current Y value, instead of just setting the new value, rendering the action useless.
    Am I doing something wrong? I don't see a way to specify an absolute value vs a relative one. Is it just a limitation of Actions in Illustrator?

    px and pt are somewhat interchangable within Illustrator. They are both seen as the same relative size. In reality this is because pixels have absolutley no relative size therefore Illustrator uses points for measurements. A point (pt) is a measurment, a pixel (px) is not. This is not something you should be overly concerened with in your circumstances. You can simply consider 1pt equal to 1px.
    As for the transform.... transformations, by definition, alter the existing data of an object in a relative manner. The extisting size, location, color, etc is seen as the 'start' point then transformations are applied to those start points. If you have an object sitting at X0Y0 and you move the object 64 pixels downward to X0Y64, the transformation is seen as Y+64, NOT "set to Y64". Therefore, if you have an object sitting at X50Y10 and you perform the same transformation the result is X50Y74.
    What may, or may not help, is to use the align buttons in the action before trying to absolutely position an element. For example, set the align to Align to Artboard. Then align left, align top, (or align center, align middle) then move the object to the correct absolute position. This way you position every object at the same XY coordinates before beginning any position transformation and in turn the XY transformation will always be adding values to the same starting point values making the transformations the same.

  • Add Quotes.vi not working as documented

    I use the openg config vi's and realized different behaviour between LV 8.6.1 and LV 2010. Digging into this I found that the 'Add Quotes.vi' adds quotes to all strings. The help says 'Adds quote marks (") around a string that contains spaces.'. After disabling the 'Add Quotes.vi' the openg config vi's work like expected. Can someone confirm this ?.

    This change does exist in LabVIEW 2012 SP1, but I would hesitate to call it a bug.  The VI is not on the palettes, so there is no guarantee it will maintain its interface or functionality.  It appears this one changed its functionality when the configuration file VIs were refactored several years ago.  I suspect the switch functionality was moved up a level in the hierarchy and the VI simplified to account for this.  The new VI also has error connectors.  The old one did not.
    As in all cases like this, you should copy the VI to a new location, rename it, and modify it the way you want it before using it.  If you modify it in place, it will be overwritten if you upgrade or repair your LabVIEW installation.
    The VI itself is also rather inefficient (and all versions I have seen are).  Use a case statement to execute the addition of quotes, since this hits the memory manager and is much slower than doing nothing.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Abap logic in Transformation End Routine not working correctly

    Hi,
    I wrote a piece of code but during testing I found out that it doesn't meet my requirement.
    Requirement
    I want to extract Standard_Cost for all sales items that meets the conditon. but at the moment only the first sales item in the DSO is showing.
    I would like the following lines to display in the cube as well since the PLITEM is different.
    201021     PI31     REDBACK     999999A     78,850
    201021     PI31     FLXAAA     999999A     3154,000
    DSO Table
    CALWEEK     PLPLANT     PLITEM     SALESITEM     STRDCOST
    201020     IN06     FLXAAA     557868B     6308,000
    201021     FI24     FLXAAA     557868B     6308,000
    201021     FI24     FLXAAA     999999B     0,000
    201021     PI31     REDBACK     999999A     78,850
    201021     PI31     FLXAAA     999999A     3154,000
    InfoCube
    SALESITEM  PLPLANT       SALESDOC       STRDCOST
    999999A     PI31     1100000911         78,850
    Abap Logic
    Data ld_calweek(6) TYPE n.
    Getting the current week based on the system date.
    CALL FUNCTION 'DATE_GET_WEEK'
            EXPORTING
              date         = sy-datum
            IMPORTING
              week         = ld_calweek
            EXCEPTIONS
              date_invalid = 1
              OTHERS       = 2.
    Data rp TYPE tys_TG_1.
    LOOP AT RESULT_PACKAGE INTO rp.
    SELECT SINGLE STRDCOST FROM /N/ABC_EFG00 INTO
    rp-S_STRDCOST
    WHERE SALESITEM = rp-S_ITEMID  AND CALWEEK =
    ld_calweek AND PLPLANT EQ rp-S_SOURCE.
    MODIFY RESULT_PACKAGE FROM rp.
    Clear rp.
    ENDLOOP.
    How do I resolve this
    thanks

    Hi Vaidya
    Select single will always select the first entry from the source which matched your where condition.
    therefore you are not getting all the required data.
    WHERE SALESITEM = rp-S_ITEMID AND CALWEEK =
    ld_calweek AND PLPLANT EQ rp-S_SOURCE.
    according to your logic
    it will pick only one record e.g
    201021 PI31 REDBACK 999999A 78,850
    201021 PI31 FLXAAA 999999A 3154,000
    item id = 999999A
    plplant = PI31
    in this case it will pick only the first record due to select single will fetch only one record (whichever it gets first and which meets your where condition)
    You need to change your code logic and need to include more fileds which differentiates one record from another who have same valued as in your present where condition.
    Thanks
    Navneet

Maybe you are looking for

  • How to change font size in a table?

    How to change font size in a table without using the font style of another document?  Please show a sample script.  Thanks!

  • Calendar: weekly view

    Hi, I'm wondering if it is possible to view my Calendar weekly or if that option is planned in OS3.0. I don't have enough appointments for a day but way too many for a month Thanks!

  • Restore iphoto library from Time machine using external drive

    I keep my iPhoto library in an external drive (iomega 1 TB) I use Time Machine (Time Capsule) for my back-up of iphoto.  The external drive is failing.  I have bought an new external drive and wish to restore my iPhoto library to this new drive.  The

  • Ajax4Jsf won't work if I have page fragment component.

    I am trying to use Ajax4jsf on my JSC project. This is bizarre but when ever i have a page fragment component in my page the ajax4jsf stops re-rendering. The code is as following. <?xml version="1.0" encoding="UTF-8"?> <jsp:root version="1.2" xmlns:a

  • Macbook Pro Retina 13" late 2013 lag

    Hello everybody, 4 days ago i bought Macbook Pro Retina 13" late 2013. overall i like it as a first time mac user. my problem is it feels very slow and unstable and laggy. After some testing: 1024x640 (Larfer Text) - no lag best performance 1280x800