Problems working with QuarkXPress 4.1 on System X

Hi. I'm working with more people in an office with systemX plus system 9 and with QurkXPress 4.1.
We're conneted all to a server. I can open and work with the Quark docs and save them in the server, but other people with the same Mac and system can open the docs, but can't save them in the server. They have to save in their hard discs and replace the doc in the server.
Do you know why?????
Thanks

We're conneted all to a server.
Do you know why?????
Your server is following unix file permission rules.
what type of server is this?
If your using OSX client or OSX server you have to set the permissions on your shared folder so that all group users have read/write access.
You then need to set the share points to inherit permissions from parent.
To do this in OSX client that is running file sharing you should use sharepoints
If your using OSX server then you need to check the preferences in the workgroup manager.

Similar Messages

  • Will InDesign4 work with the newest MAC operating system -- OS10.9 I think.

    Will InDesign4 work with the newest MAC operating system -- OS10.9 I think.  My OS crashed and they have to wipe the computer to put on a new system. I don't want the latest system if it won't run CS4. I bought Creative Suite Cloud version and had nothing but problems with it and the system I was running. In fact all the problems with my computer started just after I put CS Cloud version on it.

    Thanks for answering. I'll try to be more specific in my question.
    Steve Werner <[email protected]> wrote:
    Steve Werner  created the discussion
    "Will InDesign4 work with the newest MAC operating system -- OS10.9 I think."
    To view the discussion, visit: https://forums.adobe.com/message/6587879#6587879
    >

  • When I update apple driver, a pop-up error message "The folder you specified doesn't contain a compatible driver for your device. If the foldre contains a driver, make sure it is designed to work with Windows for x64-based systems."

    When I update apple driver, a pop-up error message "The folder you specified doesn't contain a compatible driver for your device. If the foldre contains a driver, make sure it is designed to work with Windows for x64-based systems."

    Hi,
    Please also check Event Viewer if it identify this problem.
    In addition, also check Device Manager, if similar driver already installed, try to uninstall them and reinstall new driver again for test.
    Roger Lu
    TechNet Community Support

  • ASP application has problems working with oracle database 8.1.7

    ASP application has problems working with oracle database 8.1.7 through both oracle ODBC driver and Microsoft ODBC driver
    We have an ASP application running on Windows 2000 server, and with 8.1.7 Net8Client and MDAC 2.6 SP1.
    The application worked fine with an Oracle 8.0.5 database.
    After upgrading oracle database to 8.1.7.0.0, our ASP application works fine except when updating the same data record more than once. The application is not saving our updates.
    We tested our application using Oracles ODBC driver v8.1.7.5.0
    and experienced more problems. We had problems just bring up our data entry pages. In either case, we are returned with some 505 errors in our browser, problems with the ASP pages and IIS, the page is not displaying.
    If anyone has some suggestions on how to fix my problem, please advise. Thanks in advance.

    thanks...i saw one article with this approach..but the document did not present the detailed process...do you have one? i am still searching for a good procedure to follow...since it is an old database and focusing/studying old versions like this is a pain in the a**... :(

  • I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    you must also use a browser that allows cookies.  try a different browser or download from adobe.com
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I bought the external DVD player/burner for my Macbook.  I tried using it with my Dell laptop but it will not work.  Is it not configured to work with anything but apple operating systems?

    I bought the external DVD player/burner for my Macbook.  I tried using it with my Dell laptop but it will not work.  Is it not configured to work with anything but apple operating systems?

    If you purchased the Apple USB SuperDrive, it will only work with select Apple devices. It won't work, for example, on my Late 2011 model that has a SuperDrive built-in, but it will work with an Air, Retina model, new 'drive-less' iMacs, etc.
    As far as I know, though, you can only hack the drive to work with some other Apple devices, but not with Windows PCs. Which is a shame as other, less expensive DVD/CD devices will work with just about any machine.
    Sorry,
    Clinton

  • Problems working with events in JInternalFrames

    Hi everybody:
    I'm having a problem with Swing, I have a JFrame with two JInternalFrame's,
    I add the MouseListener's to work with the events MousePressed and MouseReleased and it simply doesn't work at all.
    Next you can see a fragment of my program, please tell me what I'm doing wrong.
    Thanks in advance.
    public class PicoPintador extends JFrame {
    private JDesktopPane desktop;
    private ventanaMonitor Monitor = new ventanaMonitor();
    private XYLayout xYLayout1 = new XYLayout();
    public PicoPintador() { /* THE CONSTRUCTOR */
    super("PicoPintador");
    try {
    jbInit();
    } catch (Exception e) {
    e.printStackTrace();
    public static void main(String[] args) {  /* THE MAIN METHOD */
    PicoPintador picoPintador = new PicoPintador();
    picoPintador.setVisible(true);
    private void jbInit() throws Exception {
    desktop = new JDesktopPane();
    setContentPane(desktop);
    setContentPane(desktop);
    this.getContentPane().setLayout(xYLayout1);
    this.getContentPane().add(Monitor,
    new XYConstraints(30, 20, 230, 245));
    JInternalFrame PrimerDibujo = new JInternalFrame("Archivo 1");
    PrimerDibujo.getContentPane().setLayout(xYLayout1);
    PrimerDibujo.setResizable(true);
    PrimerDibujo.setClosable(true);
    PrimerDibujo.setMaximizable(true);
    PrimerDibujo.setIconifiable(true);
    PrimerDibujo.setSize(300,300);
    PrimerDibujo.setVisible(true);
    this.getContentPane().add(PrimerDibujo,
    new XYConstraints(30, 20, 230, 245));
    PrimerDibujo.setLocation(50,50);
         /* ADDING MOUSE THE FIRST LISTENER */
    Ventana.add(PrimerDibujo);
    PrimerDibujo.addMouseListener(
    new MouseAdapter(){
    public void mousePressed(MouseEvent evt){
    Monitor.setTEvento("Mouse Pressed");
         /* ADDING MOUSE THE SECOND LISTENER */
    PrimerDibujo.addMouseListener(
    new MouseAdapter(){
    public void mouseReleased(MouseEvent evt){
    Monitor.setTEvento("Mouse Released");
    /* THE CLASS ventanaMonitor */
    public class ventanaMonitor extends JInternalFrame {
    private JLabel tEvento;
    private JLabel evento;
    public ventanaMonitor() {
    try {
    jbInit();
    } catch (Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    setClosable(false);
    Container ContentPane= getContentPane();
    ContentPane.setLayout(null);
    tEvento = new JLabel("Evento");
    evento = new JLabel();
    ContentPane.add(tEvento);
    ContentPane.add(evento);
    tEvento.setBounds(10, 80, 110, 15);
    evento.setBounds(140, 80, 110, 15);
    evento.setBorder(BorderFactory.createLineBorder(Color.BLACK));
    setSize(300,300);
    setVisible(true);
    setLocation(250,50);
    }

    nothing wrong with the fragment you posted (except you don't need to add the listener twice)
    here's you code (stripped of the XYlayout and monitor stuff - you're only adding the listener to PrimerDibujo)
    compile/run/click the mouse - works OK
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class PicoPintador extends JFrame {
    private JDesktopPane desktop;
    public PicoPintador() {
    super("PicoPintador");
    try {
    jbInit();
    } catch (Exception e) {
    e.printStackTrace();
    public static void main(String[] args) { /* THE MAIN METHOD */
    PicoPintador picoPintador = new PicoPintador();
    picoPintador.setVisible(true);
    private void jbInit() throws Exception {
    setSize(800,600);
    desktop = new JDesktopPane();
    setContentPane(desktop);
    setContentPane(desktop);
    JInternalFrame PrimerDibujo = new JInternalFrame("Archivo 1");
    PrimerDibujo.setResizable(true);
    PrimerDibujo.setClosable(true);
    PrimerDibujo.setMaximizable(true);
    PrimerDibujo.setIconifiable(true);
    PrimerDibujo.setVisible(true);
    PrimerDibujo.setBounds(50, 50, 300, 300);
    this.getContentPane().add(PrimerDibujo);//,
    PrimerDibujo.addMouseListener(
    new MouseAdapter(){
    public void mousePressed(MouseEvent evt){
    System.out.println("Mouse Pressed");
    PrimerDibujo.addMouseListener(
    new MouseAdapter(){
    public void mouseReleased(MouseEvent evt){
    System.out.println("Mouse Released");
    }

  • DVD/CD Drive Problem: Works with DVDs, but won't Read CDs

    As the title states, my laptop's CD drive will not read CDs (it is a satellite A205 by the way).  The yellow light lights up, it makes noises as if it is trying to read the CD, but just doesn't do it.  It won't show up as a CD being there when I look it up on "computer".  On the other hand, when I put a DVD in, it works no problem.  Anyone have any idea of what I could do?  I've tried uninstalling the driver on device manager and restarting the computer, thus allowing it to reinstall it, and it didn't help.  Any and all help is greatly appreciated!

    Try cleaning out the drive with compressed air and/or a lens cleaning disk.  This often times helps. 
    Next try booting to a Linux Live CD or some other Self Booting CD like Memtest.  If it doesn't then you know for sure that the drive itself is defective as you are taking Windows out of the equation.  If it does, then you know it's a Windows problem which will more than likely require restoring the system to it's factory out of box state using the Recovery DIsks to fix.
    If the drive works with a Live CD then try going into device manager, uninstall the DVD drive, then reboot the system to have Windows automatically re-install it.  This sometimes helps as well.
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

  • Problem Working With Framemaker 9 Dita XML Files in Framemaker 10

    I just upgraded to Framemaker 10. I am encountering a number of problems when I try to work with my Dita XML help topics, which were last saved in Framemaker 9 format.
    1. Using the Default Dita Template
    When I open one of my documents in Framemaker 10, the Dita 1.2 template ditabase.fm is automatically applied. Everything seems fine. But then when I convert the XML to Eclipse help (which is essentially html, so we're going from XML to HTML) using Dita Open Toolkit ant scripts, I see this message:
    [pipeline] [DOTJ013E][ERROR] Failed to parse the referenced file 'html\c_licensing.xml' due to below exception. Please correct the reference base on the exception message.
    [pipeline] c_licensing.xml Line 25:Attribute "xmlns:ditaarch" must be declared for element type "dita".
    I then opened the xml  file in a text editor, and I saw this on line 25:
    <dita xmlns:ditaarch = "http://dita.oasis-open.org/architecture/2005/">
    Line 25 looks fine to me. Am I missing something? 
    2. Switching to a 1.1 Dita Template
    I tried to work around the above problem. In Framemaker, I tried to set a different structured application as the default one. I closed all files and chose the default Dita 1.1 structured application (it defaults to the Dita 1.1. Composite app.)
    Then I tried to open my file: I got this message inside Framemaker:
    "Validation of XML failed. Continue?
    Error at [FILE PATH], line 25, char 72, Message: Attribute '{http://www.w3.org/2000/xmlns/}ditaarch' is not declared for element 'dita'
    Sounds familiar, doesn't it?
    I switched from the default Dita 1.1. Composite structured application to the Dita 1.1. Topic structured application. Then I dirtied the source file and saved it. The messages I got in FrameMaker log window included the one above, plus I got a variety of Unknown Element messages, things like this:
    Unknown element dita,
    unknown element concept,
    various attributes are not declared for concept,
    unknown element conbody.
    If I switch back to the Dita 1.1 Composite application all of these messages diappear except for this one:
    Attribute '{http://www.w3.org/2000/xmlns/}ditaarch' is not declared for element 'dita'
    My ant conversion scripts from the Dita Open Toolkit are still unable to process this file. They give the same message as is listed in (1) above and the file is not converted to HTML.
    Can anyone help me with this problem? I've also posted this question to the Dita Users Group on Yahoo Groups. If I get an answer in one place, I'll post it in the other.
    Thanks,
    Nina P.

    I really appreciate all the help you are providing with this, Scott. I tried your latest suggestions. Here's what happened:
    Application Mappings:
    I figured out how to add my "BigPage" structured application to the Applications Mappings dialog. I made a new "BigPage"  mapping type, then figured out the non-intuitive part: how to add my individual BigPage topic types to it.  I closed and reopened FrameMaker opened my test document, and, as before (before I did the application mappings) I saw my BigPage applications listed in the Structure Tools > Set Structured Application drop-down. I selected the appropriate application (in this case it was DITA1.1-BigPage-Reference-FM and clicked the "Set" button. 
    It is at this point in Framemaker 9 (and also once, in FrameMaker 10, early in this process, but I haven't been able to replicate it since) that the page size would change to tabloid size, indicating that the document was using the template from the BigPage reference structured application, not the regular DITA1.1 reference application. But this did not happen.
    I tried saving the document, closing it, and reopening it. Once again the default structured application assigned to that document was "reset" to DITA1.1-Reference-FM.  But the fact that the page size did not immediate refresh to tabloid size told me that although I did select the BigPage application in the drop-down, it wasn't being applied.
    Public IDs:
    The public ID in my test reference XML file is:  <!DOCTYPE reference PUBLIC "-//OASIS//DTD DITA Reference//EN" "reference.dtd" [
    The four public IDs in the DITA1.1-BigPage-Reference-FM entry in structapps.fm (in the Entity Locations section) are:
    -//OASIS//DTD DITA Reference//EN 
    -//IBM//DTD DITA Reference//EN
    -//OASIS//DTD DITA Composite//EN
    -//IBM//DTD DITA Composite//EN
    Do you see anything wrong with the above? .
    Directory Structure: 
    Maybe I cloned the application incorrectly?  Here's what I did:
    1. In C:\Program Files (x86)\Adobe\AdobeFrameMaker10\Structure\xml, I copied the folder called DITA and pasted it into the same directory. I renamed this folder DITA-BigPage
    2. Inside DITA-BigPage, I opened the app folder. Inside each subfolder in app, DITA-Reference-FM, for example, I opened the edd file in Framemaker. In this case, the edd file name was reference.edd.fm.
    3. I edited the top line of reference.edd.fm.  It originally said:
    Structured Application: DITA1.1-Reference-FM.
    I changed it to say:
    Structured Application: DITA1.1-BigPage-Reference-FM
    4. I saved the EDD file. Then I opened the template file in the same folder. It was called: reference.template.fm.
    5. In reference.template.fm, I first changed my page size: Format Menu > Page Layout > Page Size > Tabloid > Set.
    6. Then I imported the element definitions from the corresponding EDD file:  File > Import > Element Definitions > reference.edd.fm > Click Import > Click OK to dismiss verification message.
    7. I repeated the above process for all topic-type folders. For the maps types, I did not change the page size, as these will never display as topics in my online  help. I did nothing to the dtd folder.
    8. Once all this was done, I opened structapps.fm.  I did the following to all Dita1.1 elements in the structure tree.
    Selected the Dita 1.1 XMLApplication element, for instance, the one named Dita1.1-Reference-FM, copied it, and pasted it underneath the original element.
    The original first few lines in the clone looked like this:
    Application Name: DITA1.1-Reference-FM
          Template:              $STRUCTDIR\xml\DITA\app\DITA-Reference-FM\reference.template.fm
          DTD:                       $STRUCTDIR\xml\DITA\app\dtd\reference.dtd
          Read/write Rules:  $STRUCTDIR\xml\DITA\app\DITA-Reference-FM\reference.rules.fm
          DOCTYPE:              reference
    I changed these lines to look like this, using your suggestion to create a variable for the first part of the URLs to enable speed and accuracy:
           Application Name:      DITA1.1-BigPage-Reference-FM
                   Template:                    $STRUCTDIR\xml\DITA-BigPage\app\DITA-Reference-FM\reference.template.fm
                   DTD:                            $STRUCTDIR\xml\DITA-BigPage\app\dtd\reference.dtd
                   Read/write Rules:        $STRUCTDIR\xml\DITA-BigPage\app\DITA-Reference-FM\reference.rules.fm
                   DOCTYPE:                    reference
    I also changed the "Filename" URLs in the "Entity Locations" section of this XMLApplication clone from  $STRUCTDIR\xml\DITA\app\  to $STRUCTDIR\xml\DITA-BigPage\app\.  Applying the "BigPage" variable I'd created for this purpose made this go quickly.
    Finally, after this didn't work the first few times I tried it, I got suspicious that the structapps.fm file in my AppData folder (in my case, it was in the Roaming subfolder under the usual Adobe directories) was overriding the modified structapps.fm file in the Framemaker program directory so I replaced the one in AppData (it had all the original settings) with my modified version.  This had no effect, unfortunately.
    That was my process. After doing the above, the Dita1.1-BigPage applications all listed in the Set Structured App drop-down. They just didn't work,when applied to my XML documents. Nor did the application "remember" what structured application I had set when I opened a new xml document  or closed/reopened the current document or closed/reopened the application.  Did I place the directories correctly for Framemaker 10?  This is the way I did it for FrameMaker 9 and it worked successfully.
    As much as I'd love to solve this mystery, I've thought of a workaround I can fall back on  that doesn't involve using a cloned application.  I will change the page size of a few of the original Dita1.1 sturctured application templates to tabloid size, but leave the Topic structured application at letter size. I'll then apply the Topic structured application to my PDFs and use the others for my help topics.  I'll set this up now. If this doesn't work, then I'll know there's a much bigger problem at the base of this, perhaps even something to do with changing page sizes in templates.

  • Problem ,working with UNTIL TIME..

    hi
    i have a serious problem when issuing UNTIL TIME commends.
    Such as this command in RMAN:
    run {
    backup
    (archivelog from time '02-OCT-06 09.00.00'
    until time '03-OCT-06 21.00.00');
    or working with UNTIL TIME in point-in-time recovery .
    it gives me this error:
    ORA-01830: date format picture ends before converting entire input string
    i have had this problem for a long time and i haven't found a solution for it.
    i will be grateful if anyone can help me beat this problem

    Try this:
    run {
    set until "to_date('01-10-2006','dd-mm-yyyy')";
    Best Regards
    Krystian Zieja / mob

  • Router Problem - Works with Windoze, Linux, but not with Mac

    I can't seem to get any router to work with my Mac.
    I've tried a Linksys 'b' router, a Netgear 'g' router and a Belkin 'g' router.
    No joy.
    When I connect my Mac directly to my cable modem (Motorola Surfboard), there are no issues. When I connect the router in between, the Mac pulls the proper ip address and I can ping the router, but I can't get any further. If I try to ping an outside ip address (such as the 4.2.2.2 dns) I get the error message "ping: sendto: Cannot allocate memory". [Does anyone know what this message means?]
    A second computer (IBM NetVista) connects reliably using Windoze XP. The same machine, booted in CentOS also connects reliably (after disabling the firewall).
    Note, these are all wired connections. I'm not even trying to use wireless yet. The cables all check out, since they all work in other configurations (the Mac->router cable is the same one I use for Mac->Surfboard, and the router->surfboard cable works when connecting from the NewVista machine.
    I thought the Mac problems might be firewall related. I had "Brickhouse" installed,but it has since been removed. My network settings no long advise that there is any firewall software in place (previously Sharing > Firewall was greyed out with message that other firewall software was installed). Sharing > Firewall now reports "Firewall Off".
    I know the routers work, since I can connect from the NetVista machine. I know the cables are good, because they all work in other configurations. I know the Mac is seeing the router, and the router is seeing the Mac because a correct ip address is pulled. I can even communicate between the machines (ftp,ssh) but I can't get internet access using the Mac through the router.
    Oh yeah... one other oddity. When I have personal web sharing enabled, an attempt to access the router setup page at 192.168.1.1 fetches the local server index.html page instead of accessing the router. When web sharing is off, I get a "you are not connected to the internet" message.
    Any insight?

    Very strange indeed!
    Only 2 suggestions at this point...
    Get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, then when the prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 5 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Try dragging these files to the Desktop & Reboot...
    /Users/nnnn/Library/Preferences/com.apple.internetconnect.plist
    /Library/Preferences/SystemConfiguration/preferences.plist
    /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
    /Library/Preferences/com.apple.sharing.firewall.plist

  • HT5188 Will "removing apps from devices" also work with other mobile device management systems like i.e. Mobile Iron?

    As we are a very big company and working with a high end mobile device management system (Mobile Iron), we cannot use the configurator for iOS devices delivered with Mac OS.
    So my question is, whether it is or will be possible to reuse redemption codes also for devices being managed by other MDM systems than Apple configurator.

    As we are a very big company and working with a high end mobile device management system (Mobile Iron), we cannot use the configurator for iOS devices delivered with Mac OS.
    So my question is, whether it is or will be possible to reuse redemption codes also for devices being managed by other MDM systems than Apple configurator.

  • Will Photoshop Elements 10 work with Microsoft 8.1 operating system?

    When selecting the option e-mail from the Elements Organizer to share a picture, the program stops with a note from Elements Organizer stating they could not finish creating the e-mail message. I never experienced this problem when it was operating in my older computer running on Windows XP.  Will Photoshop Elements 10 work with Windows 8.1?

    Depends on what e-mail client you're using. I believe that for W8 you need to install the Windows 7 version of Windows Live Mail.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Does External DVD Drive rm475e work with a Windows 8 Operating System

    It worked fine with Windows 7 but doesn't seem to work with Windows 8?

    Hello Orchard80,
    Thats a good question. You never know about Windows 8.1 and compatability.
    There is no driver to download because DVD drives all use pretty much the same generic driver that comes built into Windows already. So I logically one would think that it should work on 8 as well.
    The manual states that it is supported from Win-2000 through Win-7 only. But it came out before Win 8 also.
    Is the drive recognized in the device manager under CD/DVD drives? Type in Device Manager in Windows 8 Search and select it from the list.
    If not, the only thing I can think of is to run the Windows Fix-it Tool to see if it helps.
    http://support.microsoft.com/mats/hardware_device_problems/en-us
    If it still is NOT recognized after the Fix-it tool, then apperently the drive just will not work with 8.
    IF it is recognized in the system but wont work, there is something else we can try but I will wait to hear back from you first.

  • Problems working with jdeveloper 9i

    The connection I made to olite is correct, but when I run my application , there's is an unexpected internal error I/EX 311. I know there are some limitations working with olite. What can I do?

    Mark:
    I would strong suggest upgrading to the 9.0.3 production of BC4J. It seems like you're running into re-entrancy problems many of which have been fixed in 9.0.3.
    If the problem persists even after upgrading to 9.0.3, run your app with diagnostic turned on. Capture the exception stack, including that for the detail exception and post it.
    To turn on diagnostic, you need to include -Djbo.debugoutput=console as a JVM switch.
    Thanks.
    Sung

Maybe you are looking for

  • Based on fault message ABAP coding required.

    Dear Experts,          I design a scenario with Proxy to JDBC Synchronous interface, in that i kept fault message to catch the technical errors which are throwing by Oracle system like " unique constaint violated,  can't insert value into a particula

  • Parallel execution of same program with different parameters.

    Is it possible to start the same plsql routine parellelly from PLSQL. Begin prog1 1 1000 prog1 1001 2000 prog1 2001 3000 End; I mean to say something like in Unix where in you can prog1 1 1000 & prog1 1001 2000 & prog1 2001 3000 & Thanks.

  • Very simple html template engine...

    Hi forum I need to create a very simple html templating engine. My requirements are only load a html document into an object (HTMLDocument for example?), search a couple of particular tag or string, treat the text found between these tags like a bloc

  • Generate all Months between start and end dates using Parameter

    Hi, I have a query in which i have two dates that is Start Date and End Date and now i have to populates all the Months between the date range: Start Date : APR-12 End Date: JUL-12 Now taking these two values i want the recors as displayed below APR-

  • Unlimited plan - Paying Full Retail still removes features?

    Got a strange question.  First some background. I have an unlimited plan that I don't ever plan to get rid of.  (Upgrade Eligible since 2011!) Its not that I really use the unlimited data as I usually less than 150MB per month, but the absolutely che