Resize Command in CS3

Hello All,<br /><br />I have one problem regarding resizing functionality in InDesign CS3. I am using Document having size 612 X 792  (in points). I have drawn one Image frame at the bottom of page having size 200 X 200 pt. When I try to do the resize of my frame by 400 X 400 (pts), it crashes the InDesign Application. I am using InDesign CS3 SDK 5.0.1. I have used following command for resizing. I have converted Innercoordinates to pasteboardcorordinates. <br /><br />Transform::CoordinateSpace coordinateSpace = Transform::PasteboardCoordinates() ;<br />     Geometry::BoundsKind boundsKind =Geometry::PathBounds();<br />                  <br />      PMPoint oRectPoint;<br />      PMReal mX,mY;<br />      mX = oRectPoint.X();<br />      mY = oRectPoint.Y();<br /><br />      Transform::TransformOrigin mTransformOrigin =Transform::PasteboardLocation(mX,mY);<br /><br />ErrorCode err =  Utils<Facade::IGeometryFacade>()->ResizeItems(fItemList,coordinateSpace,boundsKind, mTransformOrigin, Geometry::ResizeTo(Geometry::KeepCurrentValue(), bTempBox.Height())) ;<br /><br />I have used different ResizeTo functions of IGeometry but still it causes the problem. Please help me to resolve this problem.<br /><br />This used to work fine in CS2 earlier with SetPathBoundingBox().<br /><br />Thanks in advance for all the help<br /><br />Regards<br />Farzana.

Hi All,
I am having the same problem. I have a document with an image placed on it. The image is placed such that it is partly off the pasteboard. Now on resizing the image, InDesign crashes!
I debugged and found that the crash is at the following statement,
Transform::CoordinateSpace coordinateSpace = Transform::PasteboardCoordinates();
Not sure what is going wrong. Any help.
Thanks,
Pete

Similar Messages

  • Error in opening datafile after use of DATAFILE RESIZE command

    Hi Friends,
    I am facing a strange problem here. We got a space problem yesterday ORA-01659: unable to allocate MINEXTENTS beyond 42 in tablespace and I increased the underlying datafiles using resize command. The datafiles were 1G earlier and I have increased them to 2G using the command
    ALTER DATABASE DATAFILE 4 resize 2G;
    It went fine and I saw the free space in my tablespace. But after this when I try to drop a table using a script which connects to this db as a schema owner ( the script just selects all tables from dictionary and drops it using 'drop table x cascade constraints' , It thorws the following error
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 262145
    On going through metalink, I found that there could be problems with ulimit parameter in the OS. My OS is SunOS 5.8 Generic_117350-28 sun4u sparc SUNW,Sun-Fire-480R and my oracle version is 10.2.0.1.0 . I have set the ulimit parameters for file size to unlimited for both hard limit and soft limit.
    airsun10 oracle [CBA11]:ulimit -aS
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) 8192
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:ulimit -aH
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:ulimit -Ss unlimited
    airsun10 oracle [CBA11]:ulimit -aS
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:ulimit -aH
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:
    These solutions are suggested as per MOS note ID 271331.1. However the issue is still persisting. I am not getting any clue on whats happening. Any help is appreciated.
    Thanks
    SSN

    Thanks for your hint.
    yes, I did and the following is something more strange. I can't figure out !!
    The ulimit is only different for stack for hard and soft. file size is still unlimited. The same drop table doesn't allow me when I connect as schema owner directly !
    airsun10 oracle [CHANGEME]:whoami
    oracle
    airsun10 oracle [CHANGEME]:ulimit -aS
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) 8192
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CHANGEME]:ulimit -aH
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 1024
    vmemory(kbytes) unlimited
    airsun10 oracle [CHANGEME]:cd drop_cts/
    /export/home/oracle/drop_cts
    airsun10 oracle [CHANGEME]:ls
    drop.sql on.lst run_drop.sql sql
    drop_objects recompile_objects run_dropObj.sql
    airsun10 oracle [CHANGEME]:cat drop.sql
    drop table BID_STATUSES cascade constraints;
    drop table BID_TYPES cascade constraints;
    drop table BID_TYPES_IN_SETS cascade constraints;
    airsun10 oracle [CHANGEME]:sqlplus cts_owner/cts_owner@CBA11
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Oct 8 10:02:06 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> @drop.sql
    drop table BID_STATUSES cascade constraints
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 183107
    drop table BID_TYPES cascade constraints
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 183107
    drop table BID_TYPES_IN_SETS cascade constraints
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 183107
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    airsun10 oracle [CHANGEME]:export ORACLE_SID=CBA11
    airsun10 oracle [CBA11]:sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Oct 8 10:02:29 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> conn cts_owner/cts_owner
    Connected.
    SQL> drop table BID_STATUSES cascade constraints;
    Table dropped.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    airsun10 oracle [CBA11]:

  • Resizing documents in CS3 and CS4

    I frequently pick up old jobs in order to start new ones, primarily because I have all the preferencs, H and J's, shortcuts etc. set up. When I try to adjust the trim size, say from 6" x 9" down to 4-1/2" x 7-1/2" (odd, but true), I repeatedly get an error "specified marging and column setup does not fit within specified page size". Even if I delete all live pages, have only one master page with nothing on it, and set all margins to "0", I still get the message. Anything under 29 picas seems to be the threshold for this error. If I start a new document, no problems.
    I saw other posts regarding this on-line, but not a solution.
    any help here?
    thanks!

    I'm getting the same thing, only when creating a completely new document. Makes no sense. I'm working on an ad that doesn't need any margins at all. Doc specs are 2.597" x 9.375 with 1 column and zero gutter, and 0" margins. I get the same error message. I think this is a bug that needs to be addressed.
    NOTE: Just tried something different. I tried making the page size 5" x 9.375" and it STILL gave me the error message. So I just totally overdid it and made it 12" wide. It finally created a new document at those sizes. I then went back into document set up and changed the size back down to 2.597" wide and it resized just fine without any error messages. Definitely a bug. Adobe, are you listening???

  • Need plugin to change cs4 channel commands to cs3

    I worked at a place using cs4 and I had a script that changed cs4's command 2, 3, 4, 5 back to all the previous cs's command 1, 2, 3, 4, for yellow, magenta, cyan and black.  I'm not longer there but would like to find a copy of that script.  Does anyone know the name of it?  thank you  alan ruta

    http://blogs.adobe.com/jnack/2008/10/shortcut_changes_in_cs4.html

  • GREP Commands from CS3 to CS6

    Hi All
    we got some GREP tags which we copied from InDesign CS3 to InDesign CS6. Is it possible that those tags don't work anymore? we use [[:punct:]] for example, but InDesign don't recognize the input...
    Did Adobe made changes in CS6 the GREP process?
    Thanks for your support!
    Reto

    retogreub wrote:
    tried but no success... i just don't understand why the GREP doesn^t work anymore.. here's the string:
    (\d+[[:punct:]])\t(.+\t)(\d+\t)(\d+\t)(\d+\t)(\d+[[:punct:]]\d+\t)(.+)
    with this table:
    1.     Basel     19     9     9     1     35     :      18     36
    GREP find's 1 but the point isn't recognized by [[:punct:]]
    Your Grep cannot work for you.
    Try this instead (if you need every part alone):
    (\d+[[:punct:]])\t([^\t]+\t)(\d+\t)(\d+\t)(\d+\t)(\d+\t)(\d+\t)([[:punct:]]\t\d+\t)(\d+)
    or this (will find the same):
    (\d+[[:punct:]])\t(\w+\t)(\d+\t)(\d+\t)(\d+\t)(\d+\t)(\d+\t)([[:punct:]]\t\d+\t)(\d+)
    or this:
    (\d+\.)\t(\w+\t)(\d+\t)(\d+\t)(\d+\t)(\d+\t)(\d+\t)(:\t\d+\t)(\d+)

  • CS3 ??? commands and more????????

    Why can't I reedit a newly inserted Command in CS3 ? It
    doesn't show at
    all - all the code however is right on the page - but not
    showing in the
    Server behaviors???
    Nancy Gill answered me about having both insert and a update
    form on the
    same page - I just found an old ASP page where both are - no
    problems? I
    guess it is from version MX or Ultra DEV
    Is CS3 unstabil or what??
    very frustrating that so many things seems to be a problem
    Helle :-( *ev*

    This is weird - isn't it - I mean Adobe should update CS3.
    All I tried to do
    was write a Insert Command - requested from 1 form field and
    that's
    it........ how more simple can it get, and yet one can't
    reedit?
    I had hoped there would be a workaround to insert / update on
    the same
    page - but ... *ev*
    Helle :-( *somewhatdissapointedoverCS3*
    thanks for replying Nancy
    "Nancy" <[email protected]> skrev i meddelelsen
    news:fnl6om$jhs$[email protected]..
    >I have also noticed that some Commands are not editable.
    Basically, if you
    >use code that DW recognizes, it will still appear in the
    window .. and if
    >your hand coding is unique and doesn't use DW
    recognizable code, then it
    >disappears from the window .. but is still available in
    code view.
    >
    > I just thought of something else .. recordset code
    changed in DW 8.2 to
    > avoid SQL Injection Attacks so CS3 would use different
    code than older
    > versions. However, you can use your own code in the
    Command window .. as
    > long as you realize you may have to use code view.
    >
    > Nancy
    >
    > "Helle" <[email protected]> wrote in message
    > news:fnl5ec$i4a$[email protected]..
    >> Why can't I reedit a newly inserted Command in CS3 ?
    It doesn't show at
    >> all - all the code however is right on the page -
    but not showing in the
    >> Server behaviors???
    >>
    >> Nancy Gill answered me about having both insert and
    a update form on the
    >> same page - I just found an old ASP page where both
    are - no problems? I
    >> guess it is from version MX or Ultra DEV
    >>
    >> Is CS3 unstabil or what??
    >>
    >> very frustrating that so many things seems to be a
    problem
    >>
    >> Helle :-( *ev*
    >>
    >>
    >
    >

  • [SOLVED] Terminal emulator that allows free resizing?

    EDIT: Answered my own question; terminator allows per-pixel resizing if you disable window hinting in the preferences.
    I have an annoyance with resizing terminal emulators. I use stacking WMs (xfwm4 on one setup, compiz standalone on another) but I usually like to tile my windows manually. I've enabled edge snapping in both of these WMs. However, whenever I'm resizing a terminal window, the snapping doesn't work because the terminal window can't be freely resized - I can only change the size of the window by one character's height/width. For example, if a terminal is open at 80x36, and I want to make it just a little bit wider to snap against the edge of another window, I can't because it won't let me resize the window between 80 and 81 characters.
    I've tried xfce's terminal, gnome-terminal, lxterminal, xterm, urxvt, and st. Can someone direct me to a terminal emulator that will let me resize windows to whatever size I want, regardless of whether it is a discrete character size, or am I out of luck?
    P.S. I've noticed that if I resize a window with wmctrl and issue the resize command twice, then xfce's terminal behaves the way it should. Can I replicate this behavior for resizing with the mouse?
    Last edited by thorion (2012-10-19 05:14:41)

    A terminal emulator and X Window GUI are different things. You can have a terminal emulator in a graphical desktop environment, but you cannot display GUI in a terminal.
    Putty is just a SSH client and terminal emulator (VT) and can be used with X-forwarding to display remote GUI applications (Linux), provided you are have a X Window server installed and running on your local computer, e.g. Xming Server for Windows.
    Perhaps you will find the free version of http://mobaxterm.mobatek.net/ useful. It is a single application based on Cygwin that allows you run GUI applications from your remote Linux system.
    By far the best terminal emulator in terms of user interface and configuration options that I’m aware of is the Terminal App of MacOSX, which also automatically opens Xorg if you open a GUI application. And it provides the full set of terminal escape sequences. But if you are on Windows….
    Alternatively, use VNC. You can run VNC in several modes, either to open an existing remote desktop connection, start a new desktop connection, or run a minimal X windows server, such as TWM that does not require you to install or run a graphical user desktop on your remote Linux server. If you are interested in VNC, perhaps check the following: https://community.oracle.com/thread/2456580. You can also tunnel VNC through SSH if your network firewall prevents communication.

  • Bridge CS3 crashes at startup

    I've had CS3 installed on my system for a few years and for one reason or another have never gotten around to using Bridge. I wanted to play around with it today but it crashes as soon as I try and start it up:
    Date/Time: 2009-03-20 14:17:50.770 -0400
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Bridge CS3
    Path: /Applications/Adobe/CS3/Adobe Bridge CS3/Bridge CS3.app/Contents/MacOS/Bridge CS3
    Parent: WindowServer [3270]
    Version: 2.0.0.975 (2.0.0.975)
    PID: 3913
    Thread: Unknown
    Link (dyld) error:
    Symbol not found: __ZN6ScCore8InitTerm6atExitEPFvvE
    Referenced from: /Applications/Adobe/CS3/Adobe Bridge CS3/Bridge CS3.app/Contents/MacOS/Bridge CS3
    Expected in: /Applications/Adobe/CS3/Adobe Bridge CS3/Bridge CS3.app/Contents/MacOS/../Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    Model: PowerMac7,3, BootROM 5.1.8f7, 2 processors, PowerPC G5 (3.0), 2.5 GHz, 4 GB
    I've tried the "hold a key to reset preferences" trick and it still crashes right after that. Can anyone help ID what the problem is?
    Thanks,
    J

    If you mean hold 'Any key' then there is one of your problems. You should hold down the option key while restarting Bridge and when a menu with three options appears choose refresh preferences and try again.
    BUT
    first of all upgrade Bridge to version 2.1.1.9 (and PS to 10.0.1)
    That probably should solve your problem :-)
    If still no luck quit Bridge go to the user library preferences folder. Inhere find and delete the AdobeBridgeCS3 plist file and delete this to the trash. Restart (again with option key and refresh preferences) and try again

  • How to resize photo to fit screen without loosing proportions?

    I am in the process of creating a PowerPoint presentation and it will basically consist of photos, some text and a music background.  I want the photos to fill my computer screen, so when I am in Elements 5, I am going to Image menu and then to resize - Image Size, and changing the pixel dimensions here.  My monitor is set at 1280 x 1024 pixels and I am trying to resize my photos to 1280 x 1024 so that they will perfectly fill the entire monitor when the PowerPoint presentation is played.  The problem is that when I go to resize the photos, I have to leave the Constrain Proportions options unchecked so that I can manually and freely enter the values I want for both the Width and the Height to match my monitor dimensions.  When my photo is resized using this method, the proportions get thrown off and the picture looks a little funny.  But if I check mark the Constrain Proportions option, then I will only be able to enter a value for one of the dimensions since Elements will automatically figure the other dimension for me.  This way the proportions look fine, but the photo may not completely fill the screen the way I would like.
    Is there some kind of work-around for this seeming catch-22 type of problem??
    Thanks,
    Lee

    That's great about being able to use px (pixels) as the unit of measurement regarding the cropping tool.  I will be playing around with this.  Thanks for this great bit of information.
    Real quick on my question regarding the original proportion of the photo.  I am sorry about the confusion here.  In my initial question I had mentioned how I had tried to resize my photo(s) by using the Image - Resize - Image Size command from the main menu and was not able to check the Constrain Proportions option because I needed to enter both values for the Width and Height to match my screen size in pixels.  But when I did that, I lost the original proportion of the photo and it looked funny and such.  People's faces were thinner and longer than they should have been etc...  So when you started talking about using the crop tool to get my photo to the same pixel dimensions as my screen, I am just asking if the photo can maintain its original proportions, or might I be running into the same problem I had before when I was using the Image - Resize command.  I am not talking about loosing my original photo, I am making all these changes to a copy of the original photo so my original is protected and safe.  Maybe I should be calling it the aspect ratio.  I am wondering if after I make these changes with the crop tool, can I also still maintain the original aspect ratio of the photo?  Because this was my original problem, I was contorting the photo due to the aspect ratio changing.  I hope I am using the right terms here being more clear?
    Lee

  • [JS CS3] Show Text Threads

    Does anyone know the syntax to script the View > Show Text Threads command in CS3? It seems that it should be something like:
    app.activeDocument.viewPreferences.showTextThreads
    ...but that isn't in the DOM. I can't seem to locate it. Can this be done?

    Hi Fred,<br /><br />Here's a little function which will retrieve any menu action based on it <br />name (which appears in the UI). It's much quicker to access menus <br />directly (rather than loop), but this is an easy way to find them.<br /><br />function GetMenuAction(name){<br />    var menus = app.menuActions;<br />    for(var i=0;i<menus.length;i++){<br />        var menu = menus[i];<br />        if(menu.name == name){return menu}<br />        }<br />    return null;<br />    }<br /><br />Actually, this works too:<br /><br />menu = app.menuActions.item("Show Text Threads"<br /><br />Harbs

  • [solved] passing ImageMagick options in script : unrecognized command

    I'm working on a script that modifies a lot of images. I am trying to add the flexibility to pass in any valid IM argument and have it tacked on to a default resize operation.
    I'm running into the problem where certain options give me the 'unrecoginized command' error even though they are valid.
    I've included a test snippet. I'd be interested to see if my examples do/don't work for others.
    #!/bin/bash
    mogrify "${1}" -resize 800x900 "${2}"
    #this won't work : bash ../IMargumenttest.sh '-modulate 150,50' img001.jpg
    #and gives :mogrify: unrecognized option `-modulate 150,50' @ error/mogrify.c/MogrifyImageCommand/5147.
    #this will work : bash ../IMargumenttest.sh '-contrast' img001.jpg
    I've tried passing the arguments as single and double quoted options to no avail.
    Thanks in advance.
    Nick
    Last edited by inkdinky (2012-02-29 22:30:22)

    When you run the command "mogrify -modulate 150,50 ...", mogrify receives a list of arguments: "-modulate", followed by "-150,50", followed by whatever else you passed it. When it sees the "-modulate" argument, it knows that the next argument is a parameter for the modulate argument.
    With your quoting it instead receives a single argument "-modulate 150,50". There is no option "-modulate 150,50", so it throws the unrecognized error.
    There are a few ways to handle this, depending on what you need to do. If the order of the arguments doesn't matter, then you can do this:
    mogrify -resize 800x900 "$@"
    then run the script with "script -modulate 150,50 /path/to/image".  This works because "$@" is expanded by bash into separate words, so mogrify receives all of them as separate arguments.
    If the resize command has to be right at the end, then you can do this:
    img="$1"
    shift
    mogrify "$@" -resize 800x900 "$img"
    In that case, you have to call the script with the file path as the first argument, followed by any other arguments to mogrify. It assigns the file path to the variable "img", then it shifts it off the array of input arguments.
    You could also do it with array indexing, but I think this is simpler.
    edit: Just in case you were wondering why "$@" is expanded and "$1" isn't, it's because "$@" is treated specially to enable this type of usage. "$*" also contains all of the input arguments, but it is not expanded into separate words when quoted.
    Last edited by Xyne (2012-02-29 21:23:40)

  • CS3 won't print anymore

    Since I installed LR2, CS3 won't print any more. I worked already with LR1.4 and LR2beta.
    When I give a print command in CS3 I get two warnings: first that I have to install a printer and second that the print command can not be completed because of a Adobe Color Engine problem.
    But the "Print one Copy" command does work.
    I deleted all the prefslists of CS3, LR2 and even LR1,4. Didn't work.
    My platform is an old macG5 and Leopard (no timemachine installed)
    Any suggestions??
    Ton

    I have fixed the problem. After running the maintenance scripts photoshop is printing again.

  • CS3 Crashes on "Save As" in Windows XP

    Anyone come accross this and have a solution. I can't use the "Save As" command as CS3 crashes as soon as I try to alter the save destination.
    Thanks

    That is most likely unrelated to PS itself. More of an issue with your user permissions that do not allow you to peek outside the default user directory. Check your user status and promote yourself to Power User at least (XP Professional). Assuming you are on XP Home, simply create a new user account. It's easier than trying to clean up the tainted old account. Use the migration tool in yourt Accessories program group to transfer settings...
    Mylenium

  • Resize ASM Diskgroup

    Hi All,
    My exadata quarter rack machine has two asm diskgroups, DATA1 with 5TB and RECO with 3TB.
    I'd like to resize RECO to 1TB and DATA1 to 7TB.
    I know ALTER DISKGROUP RESIZE command, but my question is about resize RECO volume from 3 to 1 TB: is it supported by Oracle?? Let me know risks /issues with this resize?
    Regards.
    Giovanni

    Ok, thanks.
    My idea was:
    step 1> resize from ASM by ALTER DISKGROUP RECO RESIZE ALL SIZE xxG REBALANCE POWER 11;
    step 2> resize GRIDDISKs of RECO* on each cell for each griddisk by CellCLI> ALTER GRIDDISK griddisk_name size=xxG;
    step 3> check griddisk detail for RECO
    step 4> check size of a DATA griddisk
    step 5> check free space on CELLDISKs
    step 6> resize GRIDDISKs of DATA* on each cell for each griddisk by CellCLI> ALTER GRIDDISK griddisk_name size=new_sizeG;
    step 7> resize from ASM by ALTER DISKGROUP DATA RESIZE ALL REBALANCE POWER 11;
    step 8> check status of all asmdisks using "v$asm_disk"
    step 9> check DB alert logs
    step 10> check cell alert history on each cell
    Now, I'm reading your suggested note #1245494, thanks very much

  • Resize Tablespace having  multiple datafiles...

    Hi All,
    Is there any way to resize the tablespace having multiple datafiles? Tablespace having multiple DBF can not be resized like we did with alter database datafile ...resize command.
    Please let me know if anyone having any idea.
    Thanks in advance.

    But as of now I have 4 DBF in a single Tablespace and all are having more than 25G in a size. And I can see many of the free blocks in all the files at the end If the free blocks are at the end, what prevents you from resizing the datafiles?
    when data are inserting in the DBFs its not only spread to single file and once its reach to max size then only moved to second DBF, its scatter with the all the allocated DBFs of that particualr Tablespace. You can downgrade to 9i! The out-dated method you are after was deprecated with 10g. Why do you want to ignore parallelism and fill up one datafile sequentially until it reaches maximum size before putting data in another?

Maybe you are looking for

  • Pritning issues with Adobe Acrobat 9

    Every time I print a document with a regular layout  (i.e. one page per sheet) I have no issues printing pdf's. However, when I change the layout and try to print two pages on one sheet, both pages end up completely blacked out. Has anyone had this i

  • Problem in Chinese Language conversion

    HI , I have some probelm in chinese language conversion. Scenario: 1.I am trying to send the saleorder details as a mail, from the output types of sale order. 2.The details of the related cutomer in sales order is maintained in chinese in (XD01) 3.Wh

  • Lenovo Power Tips & Nokia E52

    I try to use Lenovo 90W Ultraslim AC/DC Combo Adapter and Nokia E52?! Any idea how to charge my mobile phone?, because when I put on L9 power tips with mini USB cable they don't work (not charge)! On www.lenovopowertips.com, they don't have any infor

  • Smartforms are ready, how to integrate with the functional transactions?

    Hi, We have created our smartforms, now we want these smartforms to be used whenever the enduser calls up transaction for (for instance) a customer account statement. How can we do this? Do we have to create a copy of program rfkord10? or create a ne

  • Get the pid of current user...

    well.. I feel like a newbie :D how could I found wich is my process id when I log on into Oracle db? (11g)