X11 Linux 255 fs limit

Hi,
We think that there is a problem in the solution: WebLogic 8.1.3 and Linux AS 3.0.
We use Xvfb and configure the DISPLAY env. Some applications in WebLogic can't connect to the Xvfb because the instance have a lot of applicationes, and use a file descriptor for avobe 255 to create the unix socket; and X-Windows system non support this (file descriptor for avobe 255 for X).
IBM have a workarround in his JRE. See:
http://publib.boulder.ibm.com/infocenter/javasdk/v5r0/index.jsp?topic=/com.ibm.java.doc.diagnostics.50/html/jvmenvirset.html and read the JAVA_HIGH_ZIPFDS env.
Have BEA one solution?

The first thing I would recommend is to upgrade to DAQmx Base 1.5 for linux. You can download it from http://search.ni.com/nisearch/nisearchservlet?nistype=default&filter=+%2BProductLine%3A41+%2BDownloadType%3A%22NI-DAQmx+Base%22+%2BVersion%3A%221.5%22+%2BOSType%3A%22Linux%22+%2Bcontentformat%3Asoftwarelib&ddown=2

Similar Messages

  • Howto overcome the 255 char limit in XSLT when outputting using method=text

    Hi, I am facing a problem in my XSLT program to output a CSV file. The header line is exceeding 255 char limit, seems built into the editor and looks like it repeats the 255th character into the next line where it finishes the rest of the line. Now this screws the columns in the CSV file. I have tried different combinations of <xsl:text></xsl:text> tags but to no avail.
    Is there a way to overcome this problem, spanning a line onto multiple lines in SAP but getting a single line in the output ?
    Thanks in advance.
    Swapan

    I should have known better to searched in SAP provided documentation instead here first. I needed to end the line with &> chars to continue into the next line.
    http://help.sap.com/saphelp_erp2004/helpdata/en/50/b6463c32a3fe13e10000000a114084/frameset.htm

  • Copying multiple sheets, 255 character limit

    Hi all -
    I have a script that copies multiple worksheets to a new workbook based on criteria.  All the worksheets use the same template.  Two of the cells (A6 & A8) contain more than 255 characters so all the text does not get transferred to the new workbook.  Is there a way to 'bypass' the 255 character limit?  If not, can I somehow tie in the copying of A6 & A8 to the copying of 'every sheet' without actually scripting every single sheet?  Make sense?  Here's the code -
    tell application "Microsoft Excel"
         set xbook to make new workbook
         tell workbook "Retail_Product_Specs.xls"
             choose from list {"Whole Food Juices, 10.5oz", "Whole Food Juices, 32.0oz", "Antioxidant Elixir, 11.0oz"} with title "Exporting Product Specifications" with prompt "Choose Method of Export:"
             if result is equal to {"Whole Food Juices, 10.5oz"} then
                   set exportSheets to every sheet whose name contains "10.5"
                   set savePath to "Users:KRT:Documents:Sambazon:Production:Finished Product Specs:Product Specs:Copacker Specifications:10.5oz Whole Food:Spec-WF-10.5oz.xls"
             else if result is equal to {"Whole Food Juices, 32.0oz"} then
                   set exportSheets to every sheet whose name contains "32.0"
                   set savePath to "Users:KRT:Documents:Sambazon:Production:Finished Product Specs:Product Specs:Copacker Specifications:32.0oz Whole Food:Spec-WF-32.0oz.xls"
             else if result is equal to {"Antioxidant Elixir, 11.0oz"} then
                   set exportSheets to every sheet whose name contains "Elixir"
                   set savePath to "Users:KRT:Desktop:Test.xls"
      --set savePath to "Users:KRT:Documents:Sambazon:Production:Finished Product Specs:Product Specs:Copacker Specifications:Antioxidant Elixir:Spec-Elixir-11.0oz.xls"
             end if
         end tell
      copy worksheet exportSheets before sheet "Sheet1" of xbook
         tell active workbook
             set bounds of first window to {3, 124, 563, 861}
             delete sheet "Sheet1"
      save workbook as filename savePath
             set sPWORD to "dummy"
             repeat with tName in (get link sources type link type Excel links)
      break link name tName type link type Excel links
             end repeat
             repeat with tName in (get link sources type link type OLE links)
      break link name tName type link type OLE links
             end repeat
         end tell
      --close active workbook
    end tell
    Thank you! 

    I'm sorry, here's a quick summary - all of our product specs are in one workbook.  There's 5 different product categories (only scripting 3 for now).  Each category of product is produced at a different manufacturing plant.  When changes are made to the spec sheets, I need to export each category of products into their own new workbook so I can distribute it to the appropriate plant.  I might need to export one category, some, or all.  Make sense?  Pain in butt. 
    So!  I think the code you provided is heading in the right direction...but I obviously have something in the wrong spot.  It's taking the copied sheets in xbook and making three additional copies.  Also, the cells are not being copied.  I'm assuming the "copy worksheets exportSheets before..." is in the wrong spot, but I'm not sure how to fix it. 
    Also, I could duplicate the original workbook and delete unwanted sheets.  The current script has grown beyond my initial expectation, so that might be a better option!
    BTW - I don't understand why you have "set value of cell..." and then "set value of range...".  Can these both be cell or range, or is there a reason for the two? 
    Thank you so much for your patience and details!
    tell application "Microsoft Excel"
              set xbook to make new workbook
              tell workbook "Retail_Product_Specs.xls"
                        choose from list {"Whole Food Juices, 10.5oz", "Whole Food Juices, 32.0oz", "Antioxidant Elixir, 11.0oz"} with title "Exporting Product Specifications" with prompt "Choose Method of Export:"
                        if result is equal to {"Whole Food Juices, 10.5oz"} then
                                  set exportSheets to every sheet whose name contains "10.5"
                                  set savePath to "Users:KRT:Documents:Sambazon:Production:Finished Product Specs:Product Specs:Copacker Specifications:10.5oz Whole Food:Spec-WF-10.5oz.xls"
                        else if result is equal to {"Whole Food Juices, 32.0oz"} then
                                  set exportSheets to every sheet whose name contains "32.0"
                                  set savePath to "Users:KRT:Documents:Sambazon:Production:Finished Product Specs:Product Specs:Copacker Specifications:32.0oz Whole Food:Spec-WF-32.0oz.xls"
                        else if result is equal to {"Antioxidant Elixir, 11.0oz"} then
                                  set exportSheets to every sheet whose name contains "Elixir"
                                  set savePath to "Users:KRT:Desktop:Test.xls"
      --set savePath to "Users:KRT:Documents:Sambazon:Production:Finished Product Specs:Product Specs:Copacker Specifications:Antioxidant Elixir:Spec-Elixir-11.0oz.xls"
                        end if
                        repeat with thisSheet in exportSheets
      copy worksheet exportSheets before sheet "Sheet1" of xbook
                                  tell thisSheet
                                            set sheetName to name
                                            set txt1 to value of cell "A6:I6"
                                            set txt2 to value of range "A8:I8"
                                  end tell
                                  tell xbook
                                            tell worksheet sheetName
                                                      set value of cell "A6:I6" to txt1
                                                      set value of range "A8:I8" to txt2
                                            end tell
                                  end tell
                        end repeat
              end tell
    end tell

  • Virtual mail hosts: 255 character limit on SPF records

    This one was a surprise to me, and caused a lot of headache, so I thought I'd pass it along.
    I'm running multiple virtual mail hosts off of my doughty PowerMac single G5 1.8GHz running OS X Server 10.4.11. Some of the outgoing mail was being bounced as spam because a) there wasn't an SPF record on any of the domains and b) the domain of the mailserver didn't always match the domain of the sender. (Most often, it went out under the hostname of the server, cerberus.limbo.jcf.org—which is useless, since that's a LAN address.)
    Trying to be a good citizen (and make sure that all of everyone's mail got through), I added SPF records that explicitly named each and every mailserver on the machine, just so that everything was clear and aboveboard—but they ended up being about 500 characters long.
    Fastforward a week or two... and I was having problems with my DNS zones loading—I'd get errors that they'd timed out. After pulling my hair out for a while, I discovered that TXT records have a limit of 255 characters (including spaces, etc.) Some folks running servers on non-OS X Server machines have split the records over multiple TXT records (does that even work?), but you get exactly one TXT record per OS X Server machine: the Comment box.
    I've now simplified the SPF records so that they read something like this:
    +v=spf1 a mx mx:cerberus.limbo.jcf.org mx:cerberus.jcf.org mx:jcf.org ip:173.164.140.96/30 ip:207.58.140.213/30 include:comcast.businessclass.net include:comcast.com -all+
    To translate:
    • +v=spf1 a mx+ It authorizes deliveries from any IP listed in the DNS zone, and from any mailserver defined in the zone
    • +mx:cerberus.limbo.jcf.org mx:cerberus.jcf.org mx:jcf.org+ It also explicitly authorizes deliveries from the server's main LAN and internet DNS names as well as the domain of the foundation for which I work (and through which emails are occasionally relayed)
    • +ip:173.164.140.96/30 ip:207.58.140.213/30+ Next it authorizes the public static IP blocks for the server and the foundation's remote server
    • +include:comcast.businessclass.net include:comcast.com+ Finally it includes the domain names of the ISP through which most of the mail are relayed
    • -all The last item says that if the mail didn't originate from one of those addresses, it isn't ours.
    (I think that I've got that right. If I've botched it anywhere, let me know, okay?)
    That's 169 characters. The DNS zones loaded happily, and the mail seems to be going out without getting bounced. So far so good!
    (There's probably a way to get the hostname on each email to match the domain from which it is being addressed, but I haven't gotten there yet.)
    Message was edited by: David Kudler

    Most often, it went out under the hostname of the server, cerberus.limbo.jcf.org—which is useless, since that's a LAN address.
    You can control this via the myhostname setting in Postfix. This defines the name it uses to identify itself to remote mail servers, which sounds like it'll address a lot of your issues.
    I added SPF records that explicitly named each and every mailserver on the machine, just so that everything was clear and aboveboard—but they ended up being about 500 characters long.
    OK, this doesn't make sense. You don't need to list every virtual hostname for every domain.
    All you need to do is add this specific mail server's address in each domain.
    There's no requirement that the hostname of the mail server matches the domain name, so it's entirely valid to create an SPF record in domain1.com that lists mailserver.someotherdomain.com as authoritative. Then, as long as postfix's myhostname says it's mailserver.someotherdomain.com and your reverse DNS resolves to that address your problem is solved.
    ...but you get exactly one TXT record per OS X Server machine: the Comment box.
    Unless you edit your zone file directly and add whatever other records you like. However, given the above, I don't think the 255-character limit should be an issue.
    Even if you didn't want to mess with your zone files directly there's still a way around that - SPF allows for an 'include' record which basically tells remote servers to include the record from some other domain, so for each domain you could just tell it to include some other domain's record (which, in turn, could include another domain) allowing virtually unlimited record length (or, at least, 255 characters per domain you manage).
    SPF Includes are covered here.
    • include:comcast.businessclass.net include:comcast.com Finally it includes the domain names of the ISP through which most of the mail are relayed
    Bzzzz. You've now allowed any other customer of comcastbusiness.net and comcast.com to send mail on your behalf. You probably don't want to do that. When you consider that 'comcast.com' includes every one of their residential customers you can see that you really don't want to do that.

  • Jeode 255 char. limit

    I have the Jeode EVM on my PDA. I have to execute a code for which I have to list 9 jar files. The entire .ink file is around 400 characters. Could someone please tell me if there is a way to increase the 255 character limit or if I could change the class path to point to there jar files. I tried looking for this in regedit but did not know what command to tweek.
    Could someone please help me. I am stuch up here and need help desperately.
    Thanks

    It is possible to get parameters from file (and setting up classpath by this), when calling evm (in .lnk). Now I can't check what the parameter is (-f ?). It should allow omit the 256 characters limit in .lnk. Try to run evm with parameter which show all options (maybe advanced options). If you couldn't find this, I will check it later and give you detailed information.
    regards,
    prusak

  • Why, in linux, with Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 Google calendar dosen't have the same graphics as in WIN ?

    Application Basics
    Name Thunderbird
    Version 31.3.0
    User Agent Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0
    Profile Directory
    Open Directory
    (Local drive)
    Application Build ID 20141128200244
    Enabled Plugins about:plugins
    Build Configuration about:buildconfig
    Memory Use about:memory
    Crash Reports
    Report ID Submitted
    Extensions
    Name Version Enabled ID
    Google Calendar Tab 3.9 true googlecalendartab@momo
    ImportExportTools 3.1 true {3ed8cc52-86fc-4613-9026-c1ef969da4c3}
    Lightning 3.3.2 true {e2fda1a4-762b-4020-b5ad-a41df1933103}
    Messaging Menu and Unity Launcher integration 1.3.1 true [email protected]
    Provider for Google Calendar 1.0.3 true {a62ef8ec-5fdc-40c2-873c-223b8a6925cc}
    Important Modified Preferences
    Name Value
    browser.cache.disk.capacity 358400
    browser.cache.disk.smart_size_cached_value 358400
    browser.cache.disk.smart_size.first_run false
    browser.cache.disk.smart_size.use_old_max false
    browser.display.foreground_color #000066
    extensions.lastAppVersion 31.3.0
    mailnews.database.global.datastore.id 5a192271-d148-44be-a4a0-c336bb1306f
    mail.openMessageBehavior.version 1
    network.cookie.cookieBehavior 3
    network.cookie.lifetimePolicy 2
    network.cookie.prefsMigrated true
    places.database.lastMaintenance 1416850890
    places.history.expiration.transient_current_max_pages 104858
    plugin.importedState true
    print.print_bgcolor false
    print.print_bgimages false
    print.print_colorspace default
    print.print_downloadfonts false
    print.print_evenpages true
    print.print_in_color true
    print.print_margin_bottom 0.5
    print.print_margin_left 0.5
    print.print_margin_right 0.5
    print.print_margin_top 0.5
    print.print_oddpages true
    print.print_orientation 0
    print.print_page_delay 50
    print.print_paper_data 0
    print.print_paper_height 297.00
    print.print_paper_name iso_a4
    print.print_paper_size_type 1
    print.print_paper_size_unit 1
    print.print_paper_width 210.00
    print.print_plex_name default
    print.print_resolution_name default
    print.print_scaling 1.00
    print.print_shrink_to_fit true
    print.print_to_file false
    print.print_unwriteable_margin_bottom 56
    print.print_unwriteable_margin_left 25
    print.print_unwriteable_margin_right 25
    print.print_unwriteable_margin_top 25
    Graphics
    Adapter Description NVIDIA Corporation -- Quadro 600/PCIe/SSE2
    Vendor ID NVIDIA Corporation
    Device ID Quadro 600/PCIe/SSE2
    Driver Version 4.4.0 NVIDIA 331.113
    WebGL Renderer false
    GPU Accelerated Windows 0
    AzureCanvasBackend cairo
    AzureSkiaAccelerated 0
    AzureFallbackCanvasBackend none
    AzureContentBackend cairo
    JavaScript
    Incremental GC 1
    Accessibility
    Activated 0
    Prevent Accessibility 0
    Library Versions
    Expected minimum version Version in use
    NSPR 4.10.6 4.10.6
    NSS 3.16.2.3 Basic ECC 3.16.2.3 Basic ECC
    NSS Util 3.16.2.3 3.16.2.3
    NSS SSL 3.16.2.3 Basic ECC 3.16.2.3 Basic ECC
    NSS S/MIME 3.16.2.3 Basic ECC 3.16.2.3 Basic ECC

    Thunderbird uses operating system specific themes, so it looks like an apple app on a mac, has a menu and integrates with the mac menu system, looks like a linux app on Linux and like a windows app on windows.

  • How to increase 255 column limit in hyperion financial reporting studio

    how to increase 255 column limit in hyperion financial reporting studio

    Check this knowledge article :
    Best Practices for Hyperion Financial Reporting (FR) Report Design [ID 1196695.1]

  • Button Destination URI 255 char limit?

    While entering the "Destination URI" property on a button,
    Jdeveloper is stopping me at character 255.
    Has anyone else run into this and found a solution?
    TIA
    Searched history but did not find anything.
    JDev 10.1.3.3.0.3
    OAExt 10.1.3

    Calling a Reports Server or Bi Publisher requires passing all the parameters, along with
    what printer to print to and all the other stuff. This easily can exceed 255 characters.
    As long as the report I have has only one or two parameters, the approach of using
    Destination URI off a button worked great.
    ( And I'd rather not add redundant VO attributes with cryptic short code names
    to fake my way around this! )
    In any case, IE supports 2048 character long URLs ( being one of the SMALLEST..
    Firefox and others go much bigger ) and the HTTP spec says nothing about any length limit.
    Interestingly, prior postings on the forum indicate that elsewhere people are setting
    URLs that exceed 255 characters ( in their examples/dumps ) and those work just fine,
    on other item types?
    I was hoping to avoid more pp methods to do this since the Destination URL works perfectly
    for the task... until I hit this (highly questionable ) data entry limit.
    Thx.

  • How do I 'lock the keyboard' to prevent any more keypresses being sent on X11/Linux/Gnome?

    I am writing an anti-RSI/typing break programme for Ubuntu Linux in python. I would like to be able to "lock the keyboard" so that all keypresses are ignored until I "unlock" it. I want to be able to force the user to take a typing break.
    I would like some programmatic way to "turn off" the keyboard (near instantaneously) until my programme releases it later (which could be 0.1 sec → 10 sec later). While I have "turned off the keyboard", no key presses should be sent to any
    windows, window managers, etc. Preferably, the screen should still show the same content. The keyboard should be locked even if this programme is not at the forefont and does not have focus.
    Some programmes are able to do this already (e.g. Work Rave)
    How do I do this on Linux/X11? (Preferable in Python)

    class KeyboardLocker:
    def __init__(self, serio=0):
    self._on = False
    self.serio = serio
    def on(self):
    return self._on
    def write_value(self,path, value):
    with open(path, "a") as f:
    f.write(value)
    def toggle(self):
    if self.on():
    self.turn_off()
    else:
    self.turn_on()
    def description(self):
    path = '/sys/devices/platform/i8042/serio%d/description' % (self.serio,)
    with open(path, "r") as f:
    description = f.read()
    return description
    def turn_on(self):
    try:
    self.write_value('/sys/devices/platform/i8042/serio%d/bind_mode' % (self.serio,),
    'auto')
    except IOError, e:
    self._on = False
    raise
    else:
    self._on = True
    return self.on()
    def turn_off(self):
    try:
    self.write_value('/sys/devices/platform/i8042/serio%d/bind_mode' % (self.serio,),
    'manual')
    self.write_value('/sys/devices/platform/i8042/serio%d/drvctl' % (self.serio,),
    'psmouse')
    except IOError, e:
    self._on = True
    raise
    else:
    self._on = False
    return self.on()
    if __name__ == "__main__":
    kl = KeyboardLocker(serio=0)
    device = kl.description()
    print "We got a lock on", device
    proceed = raw_input("Do you want to proceed? (y/n)").lower().startswith("y")
    import sys
    if not proceed: sys.exit(1)
    kl.turn_off()
    import time
    wait = 5
    print "Sleeping few seconds...", wait
    time.sleep(wait)
    print "Voila!"
    kl.turn_on()
    raw_input("Does it work now?")
    Tested on Linux Mint 12, X11, HP Laptop, Gnome. Not sure if any of that matters though :)
    UPDATE Added an option to change the path, e.g. "serio0" or "serio1". And prints the description, for me serio0 gave me: i8042
    KBD port, most likely if you have "KBD" in it, it's right, continue, otherwise I give you no guarantee :)

  • Dealing with the 255-field limit

    Hello,
    In one of my AW DB — a file with which I keep track of my student records, like grades and absences — I have 3 x 60 fields to count the absences, in each of the trimesters and the number of 50-minute class could be close to 60.
    The classes fields are labelled: '01', '02', ..., '60'; '2.01', '2.02', ..., '2.60' and '3.01', '3.02', ..., '3.60'.
    The value fields of each of those fields are: “ “, “.” and “f”. The default is “.”.
    The way for counting the absences of the 1st trimester, using 3 fields, i.e., the number of “f” is:
    T1_Faltas1=
    COUNT2("f",'01','02','03','04','05','06','07','08','09','10','11','12','13','14' ,'15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30' )
    T1_Faltas2=
    COUNT2("f",'31','32','33','34','35','36','37','38','39','40','41','42','43','44' ,'45','46','47','48','49','50', '51','52','53','54','55','56','57','58','59','60')
    T1_F=
    IF(OR('Situação1'="Regular",'Situação1'="Incluído"),'T1Faltas.1'+'T1Faltas.2',"")
    This has been functioning well for some years.
    The problem appeared now, because I am going to teach classes to 5th and 6th year of another State School and those grades have 5 Math classes a week — instead of 4 classes. Then, I would need around 15+ classes fields for each trimester.
    But the real situation is that I can not create those extra fields because my DB has a limit of 255 fields and I already reached that number of fields.
    I can resolve this by using a single class field for a day that has 2 classes, and the options would be: “ “, “..”, “ff”, “.f”, “f.”
    Note: the option of a “ ” empty space or a double empty space are for the students that left that group; the options “.f”, “f.” are for students that were in one of the two classes of a day and the option “ff” is for the ones that were absents in both classes of a given day.
    The problem would be to count the absences: I know how to do it, using a lot of fields — but the limitation of fields is the big problem — and I am writing you to get a better solution.
    If I could create more fields, I would do the following for each of the trimester, say T.1:
    1)T1f1=
    COUNT2("f",'01','02','03','04','05','06','07','08','09','10','11','12','13','14' ,'15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30' )
    2)T1f2=
    COUNT2("f",'31','32','33','34','35','36','37','38','39','40','41','42','43','44' ,'45','46','47','48','49','50', '51','52','53','54','55','56','57','58','59','60')
    3)T1.f1=
    COUNT2(".f",'01','02','03','04','05','06','07','08','09','10','11','12','13','14 ','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30 ')
    4)T1.f2=
    COUNT2(".f",'31','32','33','34','35','36','37','38','39','40','41','42','43','44 ','45','46','47','48','49','50', '51','52','53','54','55','56','57','58','59','60')
    5)T1f.1=
    COUNT2("f.",'01','02','03','04','05','06','07','08','09','10','11','12','13','14 ','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30 ')
    6)T1f.2=
    COUNT2("f.",'31','32','33','34','35','36','37','38','39','40','41','42','43','44 ','45','46','47','48','49','50', '51','52','53','54','55','56','57','58','59','60')
    7)T1ff1=
    COUNT2("ff",'01','02','03','04','05','06','07','08','09','10','11','12','13','14 ','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30 ')
    8)T1ff2=
    COUNT2("ff",'31','32','33','34','35','36','37','38','39','40','41','42','43','44 ','45','46','47','48','49','50', '51','52','53','54','55','56','57','58','59','60')
    At each trimester end, the total of absences would be something like this:
    9)T1_F=
    IF(OR('Situação1'="Regular",'Situação1'="Incluído"),'T1f_1’T1_f_2+T1_.f_1+T1_.f_2+T1_f._1+T1_f._2+2T1_ff_12T1_ff2,"")
    So, using 9 fields — instead of 3 — for each trimester, I could do the task.
    Maybe I can stay with this solution — depending on how many days that I will have 2 classes — using only one field — but I would like to see if I can come with a solution that counts the absences using less fields, say just counts how many ‘ f ‘ each student has.
    Any help will be appreciated,
    Jorge Lucas, the guy from Rio Grande do Sul

    Yvan The Terrible,
    I am not surprised that you were able to write this script for me; it did not completely solve the task but it did an important portion. This is not the first time you wrote a script for me.
    Seeing the result, I thought that one could rewrite it the other way around, i.e.: with the fields and the field types of a given DB, one could write a script to build a new AW DB, with those fields. Of course, the first script to get those fields and field types should be deeper to extract the formulas of Calculations Fields and the options for the Value List Fields.
    Since I have 180 Value List fields with exactly the same options, it would be very much easier to have those in a SS module, before recreate — or just create — the DB. Besides those, there are a number of calculations fields, that are pretty much alike, with some adaptations. It would be very easy to redesign the DB.
    I am not asking you to do this, but I would not doubt that it is possible.
    The only thing that would consume time would be designing the layouts, unless one could be able to do this given, at least, the sizes of the fields (imagine that you have the sizes of most of the fields, say 60, inserted in a customized layout, instead of 1 inch width!); this would be really difficult, but here one question is too important, in order to recreate an DB file:
    *+Is there a way to import a layout from a DB file to another DB file with the same fields of this very layout?+*
    About the origins of AW and FMP: several years ago I pass some time playing at the FMP 3.0; after I saw the version 6.0 and later the version 9.0 — +it looks like some time I will see the FileMaker Pro 12.+
    I remember perfectly well that the creation of the fields in the FMP 3.0 was very much similar to ClarisWorks. After, I was able — seeing the templates — to create a relational DB with 6 to 8 files in the FMP 6.0. Of course, like Barry said, the learning curve is steeper.
    But I felt at home.
    It surprises me that both you, Yvan — on this forum — and Barry — on a direct message — said that they were created by different teams. My guess is that one copied the other.
    Thanks for your time!
    Best regards,
    Jorge Lucas (the guy from Rio Grande do Sul)
    P.S.: +if I ever grew up — I am only 55 — I wanna be like you: a terrific expert in building AppleScript scripts.+
    Message was edited by: Jorge Lucas
    Message was edited by: Jorge Lucas

  • SQLLOADER: Large Data Loads: 255 CHAR limit?

    Issue: I'm trying to load a delimited text file into an Oracle table
    with data that execeeds 255 characters and it's not working correctly.
    The table fields are set to VARCHAR2 2000 - 4000. No problem. Some of
    the data fields in the file have over 1000 characters. Ok. When running
    a load, SQLLOADER seems to only want to handle 255 characters based on
    it's use of the CHAR datatype as a defult for delimited file text
    fields. Ok. So, I add VARCHAR(2000) in the .ctl file next to the fields
    that I want to take larger datasets. That does not seem to work.
    When I set a field in the control file to VARCHAR(2000), the data for
    that field will get into the table. That's fine but, the issue is
    SQLLOADER does not just put just that field's data into the table, but
    it puts the remainder of the record into the VARCHAR(2000) field.
    SQLLOADER seems to fix the length of the field and forgets I want
    delimiters to continue to work.
    Anyone know how to get SQLLOADER to handle multiple >255 data fields in
    a delimited file load?
    jk
    Here is my control file:
    load data
    infile 'BOOK2.csv'
    append into table PARTNER_CONTENT_TEMP
    fields terminated by ',' optionally enclosed by '^' TRAILING NULLCOLS
    (ctlo_id,
    partners_id,
    content2_byline ,
    content2 varchar(4000),
    content3 varchar(2000),
    content9 varchar(1000),
    submitted_by,
    pstr_id,
    csub_id)
    null

    I have been sucessful using char instead of varchar. But having
    the optionally enclosed by value in the data has always solved
    the problem.

  • Jdapi 255 context limit?

    Hello,
    I iterate over some forms with Jdapi, but I hit a "Could not create new forms context" after 255 forms, even If I call Jdapi.shutdown() between the iterations to clean up resources. Any ideas?

    Hello,
    I iterate over some forms with Jdapi, but I hit a "Could not create new forms context" after 255 forms, even If I call Jdapi.shutdown() between the iterations to clean up resources. Any ideas?

  • 4gb limit on 32bit linux

    Hi all,
    We have multiple oracle home ( RAC home) on 32 bit linx, i udnrestand there is 4GB limit for applications running on 32 bit linux, does that limit apply to oracle user? Or the databases?
    Or individual oracle homes?
    We currentl have couple of dbs on there ..
    Total size of sga max target is 5Gb
    And oracle has utilized 4.5 (total size of show sga, including asm sga) how this is possible? I thought oracle can only max 4 GB?

    user9198889 wrote:
    We currentl have couple of dbs on there ..And that is a major contributor to the problem. There's very seldom, if ever, sound technical reasons for running multiple database instances on a single sever. The typical reason is ignorance about Oracle architecture and concepts.
    In other products, you will create multiple databases using the "+create database+" SQL command.
    Some think that this approach is valid in Oracle too. It is not.
    Simply put, in Oracle: the "+create database+" command creates the physical database engine infrastructure (called an instance) to run 100's of different logical databases. The "+create schema+" command is used to create an actual logical database. Each schema (logical database) can have its own dedicated storage or can share storage with other schemas. It can have its own resource profile and privileges. Can have its own security (e.g. LDAP authentication, o/s authentication or db authentication). Etc. Etc.
    Why use a single infrastructure for all these logical databases? Performance and scalability. You pay once for the infrastructure overheads. Once for the SGA and buffer cache and shared pool and so on. Once for the process monitor and system monitor. Once for the database writer and log writer. Etc.
    If you duplicate this infrastructure, you are now doubling and trippling (or more) the resource footprint required for your databases. And by using more resources, less is available per logical database. Which means poorer database performance. Less is available for the operating system. Again, poorer performance.
    Yes, there are valid reasons for duplicating this infrastructure on a single server. But this is an exception - not the rule. Never the norm. These reasons are also almost never technical ones, but ones dealing with licensing, version constraints and so on.
    In my experience though, 99% of the time this is however not the case when dealing with multiple database instances on a single server. There is no exception at play - merely ignorance. And the inevitable performance and lack of resources issues.

  • MAX_PATH length in windows server 2012 appears to be 255 Characters still

    I understand that NTFS has a 32k character limit, however windows API only supports 255 characters.
    I was reading that server 2012 was to do away with the 255 character limit and embrace NTFS 32k limit. What I am finding when creating a long path name in windows 2012 RC build 8400 is that I get a warning about long path names at about 255. I am using the
    VHD that MS supplied for the consumer.
    The path is c:\\<long name>\<long name>\<long name>\. If the <long name> is equal to 245 that is the end of the game. Once "c:\\<long name>\..." equals 255 that is the end of the game.
    My linux servers do not have this issue.
    How do I go about resolving it?
    Thanks,

    The restriction is lifted in ReFS which is part of the file server roll.

  • Firefox does not start in Linux unless some extension was changed (i.e. activated/deactivated)

    == Issue
    ==
    Firefox is crashing or closing unexpectedly
    == Description
    ==
    Problem: When I start FF in Linux, it crashes after the cursor is jumping for half a minute. Nothing is displayed. When I start FF from the command line, I get the prompt back after one second without any message. In safe-mode and with all extensions off it always starts.
    However, when I change something in the extensions' settings, it may start: If I start in safemode, deactivate all extensions, and restart - here it goes, with all extensions off. If I activate all the extensions again and restart - here it goes again, with all extensions on. If I delete one or more of the extensions' folders in the extensions-directory of the profile (i.e. sth changes about the extensions!), it may start again, too, but not in every case.
    What could be the cause of this issue and how can I resolve it?
    I use FF 3.6.8 in openSUSE 11.3. The profile-directory I use with FF in Linux is also used by my Windows-FF. As for extensions, I use Greasemonkey, Firebug and Web Developers Toolbar
    == Troubleshooting information
    ==
    Allgemeine Informationen
    Name
    Firefox
    Version
    3.6.8
    Profil-Verzeichnis
    Beinhaltenden Ordner anzeigen
    Installierte Plugins
    about:plugins
    Build-Konfiguration
    about:buildconfig
    Erweiterungen
    Name
    Version
    Aktiviert
    ID
    Web Developer
    1.1.8
    true
    Greasemonkey
    0.8.20100408.6
    true
    Firebug
    1.5.4
    true
    [email protected]
    openSUSE Firefox Erweiterungen
    1.0.1
    false
    [email protected]
    Modifizierte Einstellungen
    Name
    Wert
    accessibility.typeaheadfind.flashBar
    0
    browser.history_expire_days.mirror
    180
    browser.places.importBookmarksHTML
    false
    browser.places.importDefaults
    false
    browser.places.leftPaneFolderId
    -1
    browser.places.migratePostDataAnnotations
    false
    browser.places.smartBookmarksVersion
    2
    browser.places.updateRecentTagsUri
    false
    browser.startup.homepage
    about:blank
    browser.startup.homepage_override.mstone
    rv:1.9.2.8
    browser.tabs.warnOnClose
    false
    dom.max_script_run_time
    1800
    extensions.lastAppVersion
    3.6.8
    general.useragent.extra.microsoftdotnet
    (.NET CLR 3.5.30729)
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1277711431
    print.print_bgcolor
    false
    print.print_bgimages
    false
    print.print_colorspace
    default
    print.print_downloadfonts
    false
    print.print_evenpages
    true
    print.print_in_color
    true
    print.print_margin_bottom
    0.500000012107193
    print.print_margin_left
    0.500000012107193
    print.print_margin_right
    0.500000012107193
    print.print_margin_top
    0.500000012107193
    print.print_oddpages
    true
    print.print_orientation
    0
    print.print_pagedelay
    500
    print.print_paper_data
    0
    print.print_paper_height
    279,40
    print.print_paper_name
    na_letter
    print.print_paper_size_type
    1
    print.print_paper_size_unit
    1
    print.print_paper_width
    215,90
    print.print_plex_name
    default
    print.print_printer
    In Datei drucken
    print.print_resolution_name
    default
    print.print_scaling
    1,00
    print.print_shrink_to_fit
    true
    print.print_to_file
    false
    print.print_unwriteable_margin_bottom
    56
    print.print_unwriteable_margin_left
    25
    print.print_unwriteable_margin_right
    25
    print.print_unwriteable_margin_top
    25
    print.printer_Brother_HL-730+.print_bgcolor
    false
    print.printer_Brother_HL-730+.print_bgimages
    false
    print.printer_Brother_HL-730+.print_command
    print.printer_Brother_HL-730+.print_downloadfonts
    false
    print.printer_Brother_HL-730+.print_edge_bottom
    0
    print.printer_Brother_HL-730+.print_edge_left
    0
    print.printer_Brother_HL-730+.print_edge_right
    0
    print.printer_Brother_HL-730+.print_edge_top
    0
    print.printer_Brother_HL-730+.print_evenpages
    true
    print.printer_Brother_HL-730+.print_footercenter
    print.printer_Brother_HL-730+.print_footerleft
    &PT
    print.printer_Brother_HL-730+.print_footerright
    &D
    print.printer_Brother_HL-730+.print_headercenter
    print.printer_Brother_HL-730+.print_headerleft
    &T
    print.printer_Brother_HL-730+.print_headerright
    &U
    print.printer_Brother_HL-730+.print_in_color
    true
    print.printer_Brother_HL-730+.print_margin_bottom
    0.5
    print.printer_Brother_HL-730+.print_margin_left
    0.5
    print.printer_Brother_HL-730+.print_margin_right
    0.5
    print.printer_Brother_HL-730+.print_margin_top
    0.5
    print.printer_Brother_HL-730+.print_oddpages
    true
    print.printer_Brother_HL-730+.print_orientation
    0
    print.printer_Brother_HL-730+.print_pagedelay
    500
    print.printer_Brother_HL-730+.print_paper_data
    9
    print.printer_Brother_HL-730+.print_paper_height
    11,00
    print.printer_Brother_HL-730+.print_paper_size
    6357106
    print.printer_Brother_HL-730+.print_paper_size_type
    0
    print.printer_Brother_HL-730+.print_paper_size_unit
    1
    print.printer_Brother_HL-730+.print_paper_width
    8,50
    print.printer_Brother_HL-730+.print_reversed
    false
    print.printer_Brother_HL-730+.print_scaling
    1,00
    print.printer_Brother_HL-730+.print_shrink_to_fit
    true
    print.printer_Brother_HL-730+.print_to_file
    false
    print.printer_Brother_HL-730+.print_unwriteable_margin_bottom
    0
    print.printer_Brother_HL-730+.print_unwriteable_margin_left
    0
    print.printer_Brother_HL-730+.print_unwriteable_margin_right
    0
    print.printer_Brother_HL-730+.print_unwriteable_margin_top
    0
    print.printer_FreePDF.print_bgcolor
    false
    print.printer_FreePDF.print_bgimages
    false
    print.printer_FreePDF.print_colorspace
    default
    print.printer_FreePDF.print_command
    print.printer_FreePDF.print_downloadfonts
    false
    print.printer_FreePDF.print_edge_bottom
    0
    print.printer_FreePDF.print_edge_left
    0
    print.printer_FreePDF.print_edge_right
    0
    print.printer_FreePDF.print_edge_top
    0
    print.printer_FreePDF.print_evenpages
    true
    print.printer_FreePDF.print_footercenter
    print.printer_FreePDF.print_footerleft
    &PT
    print.printer_FreePDF.print_footerright
    &D
    print.printer_FreePDF.print_headercenter
    print.printer_FreePDF.print_headerleft
    &T
    print.printer_FreePDF.print_headerright
    &U
    print.printer_FreePDF.print_in_color
    true
    print.printer_FreePDF.print_margin_bottom
    0.5
    print.printer_FreePDF.print_margin_left
    0.5
    print.printer_FreePDF.print_margin_right
    0.5
    print.printer_FreePDF.print_margin_top
    0.5
    print.printer_FreePDF.print_oddpages
    true
    print.printer_FreePDF.print_orientation
    0
    print.printer_FreePDF.print_pagedelay
    500
    print.printer_FreePDF.print_paper_data
    9
    print.printer_FreePDF.print_paper_height
    297,00
    print.printer_FreePDF.print_paper_name
    na_letter
    print.printer_FreePDF.print_paper_size_type
    0
    print.printer_FreePDF.print_paper_size_unit
    1
    print.printer_FreePDF.print_paper_width
    210,00
    print.printer_FreePDF.print_plex_name
    default
    print.printer_FreePDF.print_resolution_name
    default
    print.printer_FreePDF.print_reversed
    false
    print.printer_FreePDF.print_scaling
    1,00
    print.printer_FreePDF.print_shrink_to_fit
    true
    print.printer_FreePDF.print_to_file
    false
    print.printer_FreePDF.print_unwriteable_margin_bottom
    56
    print.printer_FreePDF.print_unwriteable_margin_left
    25
    print.printer_FreePDF.print_unwriteable_margin_right
    25
    print.printer_FreePDF.print_unwriteable_margin_top
    25
    print.printer_FreePDF_XP.print_bgcolor
    false
    print.printer_FreePDF_XP.print_bgimages
    false
    print.printer_FreePDF_XP.print_command
    print.printer_FreePDF_XP.print_downloadfonts
    false
    print.printer_FreePDF_XP.print_edge_bottom
    0
    print.printer_FreePDF_XP.print_edge_left
    0
    print.printer_FreePDF_XP.print_edge_right
    0
    print.printer_FreePDF_XP.print_edge_top
    0
    print.printer_FreePDF_XP.print_evenpages
    true
    print.printer_FreePDF_XP.print_footercenter
    print.printer_FreePDF_XP.print_footerleft
    &PT
    print.printer_FreePDF_XP.print_footerright
    &D
    print.printer_FreePDF_XP.print_headercenter
    print.printer_FreePDF_XP.print_headerleft
    &T
    print.printer_FreePDF_XP.print_headerright
    &U
    print.printer_FreePDF_XP.print_in_color
    true
    print.printer_FreePDF_XP.print_margin_bottom
    0.5
    print.printer_FreePDF_XP.print_margin_left
    0.5
    print.printer_FreePDF_XP.print_margin_right
    0.5
    print.printer_FreePDF_XP.print_margin_top
    0.5
    print.printer_FreePDF_XP.print_oddpages
    true
    print.printer_FreePDF_XP.print_orientation
    0
    print.printer_FreePDF_XP.print_pagedelay
    500
    print.printer_FreePDF_XP.print_paper_data
    9
    print.printer_FreePDF_XP.print_paper_height
    11,00
    print.printer_FreePDF_XP.print_paper_size_type
    0
    print.printer_FreePDF_XP.print_paper_size_unit
    1
    print.printer_FreePDF_XP.print_paper_width
    8,50
    print.printer_FreePDF_XP.print_reversed
    false
    print.printer_FreePDF_XP.print_scaling
    1,00
    print.printer_FreePDF_XP.print_shrink_to_fit
    true
    print.printer_FreePDF_XP.print_to_file
    true
    print.printer_FreePDF_XP.print_unwriteable_margin_bottom
    0
    print.printer_FreePDF_XP.print_unwriteable_margin_left
    0
    print.printer_FreePDF_XP.print_unwriteable_margin_right
    0
    print.printer_FreePDF_XP.print_unwriteable_margin_top
    0
    print.printer_In_Datei_drucken.print_bgcolor
    false
    print.printer_In_Datei_drucken.print_bgimages
    false
    print.printer_In_Datei_drucken.print_colorspace
    default
    print.printer_In_Datei_drucken.print_command
    lpr $
    print.printer_In_Datei_drucken.print_downloadfonts
    false
    print.printer_In_Datei_drucken.print_edge_bottom
    14
    print.printer_In_Datei_drucken.print_edge_left
    16
    print.printer_In_Datei_drucken.print_edge_right
    16
    print.printer_In_Datei_drucken.print_edge_top
    14
    print.printer_In_Datei_drucken.print_evenpages
    true
    print.printer_In_Datei_drucken.print_footercenter
    print.printer_In_Datei_drucken.print_footerleft
    &PT
    print.printer_In_Datei_drucken.print_footerright
    &D
    print.printer_In_Datei_drucken.print_headercenter
    print.printer_In_Datei_drucken.print_headerleft
    &T
    print.printer_In_Datei_drucken.print_headerright
    &U
    print.printer_In_Datei_drucken.print_in_color
    true
    print.printer_In_Datei_drucken.print_margin_bottom
    0.500000012107193
    print.printer_In_Datei_drucken.print_margin_left
    0.500000012107193
    print.printer_In_Datei_drucken.print_margin_right
    0.500000012107193
    print.printer_In_Datei_drucken.print_margin_top
    0.500000012107193
    print.printer_In_Datei_drucken.print_oddpages
    true
    print.printer_In_Datei_drucken.print_orientation
    0
    print.printer_In_Datei_drucken.print_pagedelay
    500
    print.printer_In_Datei_drucken.print_paper_data
    0
    print.printer_In_Datei_drucken.print_paper_height
    279,40
    print.printer_In_Datei_drucken.print_paper_name
    na_letter
    print.printer_In_Datei_drucken.print_paper_size_type
    1
    print.printer_In_Datei_drucken.print_paper_size_unit
    1
    print.printer_In_Datei_drucken.print_paper_width
    215,90
    print.printer_In_Datei_drucken.print_plex_name
    default
    print.printer_In_Datei_drucken.print_resolution_name
    default
    print.printer_In_Datei_drucken.print_reversed
    false
    print.printer_In_Datei_drucken.print_scaling
    1,00
    print.printer_In_Datei_drucken.print_shrink_to_fit
    true
    print.printer_In_Datei_drucken.print_to_file
    false
    print.printer_In_Datei_drucken.print_unwriteable_margin_bottom
    56
    print.printer_In_Datei_drucken.print_unwriteable_margin_left
    25
    print.printer_In_Datei_drucken.print_unwriteable_margin_right
    25
    print.printer_In_Datei_drucken.print_unwriteable_margin_top
    25
    print.printer_Microsoft_XPS_Document_Writer.print_bgcolor
    false
    print.printer_Microsoft_XPS_Document_Writer.print_bgimages
    false
    print.printer_Microsoft_XPS_Document_Writer.print_colorspace
    default
    print.printer_Microsoft_XPS_Document_Writer.print_command
    print.printer_Microsoft_XPS_Document_Writer.print_downloadfonts
    false
    print.printer_Microsoft_XPS_Document_Writer.print_edge_bottom
    0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_left
    0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_right
    0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_top
    0
    print.printer_Microsoft_XPS_Document_Writer.print_evenpages
    true
    print.printer_Microsoft_XPS_Document_Writer.print_footercenter
    print.printer_Microsoft_XPS_Document_Writer.print_footerleft
    &PT
    print.printer_Microsoft_XPS_Document_Writer.print_footerright
    &D
    print.printer_Microsoft_XPS_Document_Writer.print_headercenter
    print.printer_Microsoft_XPS_Document_Writer.print_headerleft
    &T
    print.printer_Microsoft_XPS_Document_Writer.print_headerright
    &U
    print.printer_Microsoft_XPS_Document_Writer.print_in_color
    true
    print.printer_Microsoft_XPS_Document_Writer.print_margin_bottom
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_left
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_right
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_top
    0.5
    print.printer_Microsoft_XPS_Document_Writer.print_oddpages
    true
    print.printer_Microsoft_XPS_Document_Writer.print_orientation
    0
    print.printer_Microsoft_XPS_Document_Writer.print_pagedelay
    500
    print.printer_Microsoft_XPS_Document_Writer.print_paper_data
    0
    print.printer_Microsoft_XPS_Document_Writer.print_paper_height
    297,00
    print.printer_Microsoft_XPS_Document_Writer.print_paper_name
    na_letter
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_type
    1
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_unit
    1
    print.printer_Microsoft_XPS_Document_Writer.print_paper_width
    210,00
    print.printer_Microsoft_XPS_Document_Writer.print_plex_name
    default
    print.printer_Microsoft_XPS_Document_Writer.print_resolution_name
    default
    print.printer_Microsoft_XPS_Document_Writer.print_reversed
    false
    print.printer_Microsoft_XPS_Document_Writer.print_scaling
    1,00
    print.printer_Microsoft_XPS_Document_Writer.print_shrink_to_fit
    true
    print.printer_Microsoft_XPS_Document_Writer.print_to_file
    false
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_bottom
    56
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_left
    25
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_right
    25
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_top
    25
    print.printer_OKI_B4300_PS_(MS).print_bgcolor
    false
    print.printer_OKI_B4300_PS_(MS).print_bgimages
    false
    print.printer_OKI_B4300_PS_(MS).print_colorspace
    default
    print.printer_OKI_B4300_PS_(MS).print_command
    print.printer_OKI_B4300_PS_(MS).print_downloadfonts
    false
    print.printer_OKI_B4300_PS_(MS).print_edge_bottom
    0
    print.printer_OKI_B4300_PS_(MS).print_edge_left
    0
    print.printer_OKI_B4300_PS_(MS).print_edge_right
    0
    print.printer_OKI_B4300_PS_(MS).print_edge_top
    0
    print.printer_OKI_B4300_PS_(MS).print_evenpages
    true
    print.printer_OKI_B4300_PS_(MS).print_footercenter
    print.printer_OKI_B4300_PS_(MS).print_footerleft
    &PT
    print.printer_OKI_B4300_PS_(MS).print_footerright
    &D
    print.printer_OKI_B4300_PS_(MS).print_headercenter
    print.printer_OKI_B4300_PS_(MS).print_headerleft
    &T
    print.printer_OKI_B4300_PS_(MS).print_headerright
    &U
    print.printer_OKI_B4300_PS_(MS).print_in_color
    true
    print.printer_OKI_B4300_PS_(MS).print_margin_bottom
    0.5
    print.printer_OKI_B4300_PS_(MS).print_margin_left
    0.5
    print.printer_OKI_B4300_PS_(MS).print_margin_right
    0.5
    print.printer_OKI_B4300_PS_(MS).print_margin_top
    0.5
    print.printer_OKI_B4300_PS_(MS).print_oddpages
    true
    print.printer_OKI_B4300_PS_(MS).print_orientation
    0
    print.printer_OKI_B4300_PS_(MS).print_pagedelay
    500
    print.printer_OKI_B4300_PS_(MS).print_paper_data
    9
    print.printer_OKI_B4300_PS_(MS).print_paper_height
    297,00
    print.printer_OKI_B4300_PS_(MS).print_paper_name
    na_letter
    print.printer_OKI_B4300_PS_(MS).print_paper_size_type
    0
    print.printer_OKI_B4300_PS_(MS).print_paper_size_unit
    1
    print.printer_OKI_B4300_PS_(MS).print_paper_width
    210,00
    print.printer_OKI_B4300_PS_(MS).print_plex_name
    default
    print.printer_OKI_B4300_PS_(MS).print_resolution_name
    default
    print.printer_OKI_B4300_PS_(MS).print_reversed
    false
    print.printer_OKI_B4300_PS_(MS).print_scaling
    1,00
    print.printer_OKI_B4300_PS_(MS).print_shrink_to_fit
    true
    print.printer_OKI_B4300_PS_(MS).print_to_file
    true
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_bottom
    56
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_left
    25
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_right
    25
    print.printer_OKI_B4300_PS_(MS).print_unwriteable_margin_top
    25
    print.printer_hl730series.print_bgcolor
    false
    print.printer_hl730series.print_bgimages
    false
    print.printer_hl730series.print_colorspace
    default
    print.printer_hl730series.print_command
    lpr $
    print.printer_hl730series.print_downloadfonts
    false
    print.printer_hl730series.print_edge_bottom
    14
    print.printer_hl730series.print_edge_left
    16
    print.printer_hl730series.print_edge_right
    16
    print.printer_hl730series.print_edge_top
    14
    print.printer_hl730series.print_evenpages
    true
    print.printer_hl730series.print_footercenter
    print.printer_hl730series.print_footerleft
    &PT
    print.printer_hl730series.print_footerright
    &D
    print.printer_hl730series.print_headercenter
    print.printer_hl730series.print_headerleft
    &T
    print.printer_hl730series.print_headerright
    &U
    print.printer_hl730series.print_in_color
    true
    print.printer_hl730series.print_margin_bottom
    0.500000012107193
    print.printer_hl730series.print_margin_left
    0.500000012107193
    print.printer_hl730series.print_margin_right
    0.500000012107193
    print.printer_hl730series.print_margin_top
    0.500000012107193
    print.printer_hl730series.print_oddpages
    true
    print.printer_hl730series.print_orientation
    0
    print.printer_hl730series.print_pagedelay
    500
    print.printer_hl730series.print_paper_data
    0
    print.printer_hl730series.print_paper_height
    279,40
    print.printer_hl730series.print_paper_name
    na_letter
    print.printer_hl730series.print_paper_size_type
    1
    print.printer_hl730series.print_paper_size_unit
    1
    print.printer_hl730series.print_paper_width
    215,90
    print.printer_hl730series.print_plex_name
    default
    print.printer_hl730series.print_resolution_name
    default
    print.printer_hl730series.print_reversed
    false
    print.printer_hl730series.print_scaling
    1,00
    print.printer_hl730series.print_shrink_to_fit
    true
    print.printer_hl730series.print_to_file
    false
    print.printer_hl730series.print_unwriteable_margin_bottom
    56
    print.printer_hl730series.print_unwriteable_margin_left
    25
    print.printer_hl730series.print_unwriteable_margin_right
    25
    print.printer_hl730series.print_unwriteable_margin_top
    25
    print.tmp.printerfeatures.CUPS/hl730series.can_change_colorspace
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_downloadfonts
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_jobtitle
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_num_copies
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_orientation
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_paper_size
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_plex
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_printincolor
    true
    print.tmp.printerfeatures.CUPS/hl730series.can_change_resolution
    false
    print.tmp.printerfeatures.CUPS/hl730series.can_change_spoolercommand
    false
    print.tmp.printerfeatures.CUPS/hl730series.colorspace.0.name
    default
    print.tmp.printerfeatures.CUPS/hl730series.colorspace.count
    1
    print.tmp.printerfeatures.CUPS/hl730series.has_special_printerfeatures
    true
    print.tmp.printerfeatures.CUPS/hl730series.orientation.0.name
    portrait
    print.tmp.printerfeatures.CUPS/hl730series.orientation.1.name
    landscape
    print.tmp.printerfeatures.CUPS/hl730series.orientation.count
    2
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.height_mm
    210
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.is_inch
    false
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.name
    A5
    print.tmp.printerfeatures.CUPS/hl730series.paper.0.width_mm
    148
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.height_mm
    297
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.is_inch
    false
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.name
    A4
    print.tmp.printerfeatures.CUPS/hl730series.paper.1.width_mm
    210
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.height_mm
    420
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.is_inch
    false
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.name
    A3
    print.tmp.printerfeatures.CUPS/hl730series.paper.2.width_mm
    297
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.height_mm
    279
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.name
    Letter
    print.tmp.printerfeatures.CUPS/hl730series.paper.3.width_mm
    215
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.height_mm
    355
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.name
    Legal
    print.tmp.printerfeatures.CUPS/hl730series.paper.4.width_mm
    215
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.height_mm
    431
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.name
    Tabloid
    print.tmp.printerfeatures.CUPS/hl730series.paper.5.width_mm
    279
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.height_mm
    254
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.is_inch
    true
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.name
    Executive
    print.tmp.printerfeatures.CUPS/hl730series.paper.6.width_mm
    190
    print.tmp.printerfeatures.CUPS/hl730series.paper.count
    7
    print.tmp.printerfeatures.CUPS/hl730series.plex.0.name
    default
    print.tmp.printerfeatures.CUPS/hl730series.plex.count
    1
    print.tmp.printerfeatures.CUPS/hl730series.resolution.0.name
    default
    print.tmp.printerfeatures.CUPS/hl730series.resolution.count
    1
    print.tmp.printerfeatures.CUPS/hl730series.supports_colorspace_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_downloadfonts_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_jobtitle_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_orientation_change
    true
    print.tmp.printerfeatures.CUPS/hl730series.supports_paper_size_change
    true
    print.tmp.printerfeatures.CUPS/hl730series.supports_plex_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_printincolor_change
    true
    print.tmp.printerfeatures.CUPS/hl730series.supports_resolution_change
    false
    print.tmp.printerfeatures.CUPS/hl730series.supports_spoolercommand_change
    false
    print.tmp.printerfeatures.PostScript/default.can_change_colorspace
    false
    print.tmp.printerfeatures.PostScript/default.can_change_downloadfonts
    false
    print.tmp.printerfeatures.PostScript/default.can_change_jobtitle
    false
    print.tmp.printerfeatures.PostScript/default.can_change_num_copies
    true
    print.tmp.printerfeatures.PostScript/default.can_change_orientation
    true
    print.tmp.printerfeatures.PostScript/default.can_change_paper_size
    true
    print.tmp.printerfeatures.PostScript/default.can_change_plex
    false
    print.tmp.printerfeatures.PostScript/default.can_change_printincolor
    true
    print.tmp.printerfeatures.PostScript/default.can_change_resolution
    false
    print.tmp.printerfeatures.PostScript/default.can_change_spoolercommand
    true
    print.tmp.printerfeatures.PostScript/default.colorspace.0.name
    default
    print.tmp.printerfeatures.PostScript/default.colorspace.count
    1
    print.tmp.printerfeatures.PostScript/default.has_special_printerfeatures
    true
    print.tmp.printerfeatures.PostScript/default.orientation.0.name
    portrait
    print.tmp.printerfeatures.PostScript/default.orientation.1.name
    landscape
    print.tmp.printerfeatures.PostScript/default.orientation.count
    2
    print.tmp.printerfeatures.PostScript/default.paper.0.height_mm
    210
    print.tmp.printerfeatures.PostScript/default.paper.0.is_inch
    false
    print.tmp.printerfeatures.PostScript/default.paper.0.name
    A5
    print.tmp.printerfeatures.PostScript/default.paper.0.width_mm
    148
    print.tmp.printerfeatures.PostScript/default.paper.1.height_mm
    297
    print.tmp.printerfeatures.PostScript/default.paper.1.is_inch
    false
    print.tmp.printerfeatures.PostScript/default.paper.1.name
    A4
    print.tmp.printerfeatures.PostScript/default.paper.1.width_mm
    210
    print.tmp.printerfeatures.PostScript/default.paper.2.height_mm
    420
    print.tmp.printerfeatures.PostScript/default.paper.2.is_inch
    false
    print.tmp.printerfeatures.PostScript/default.paper.2.name
    A3
    print.tmp.printerfeatures.PostScript/default.paper.2.width_mm
    297
    print.tmp.printerfeatures.PostScript/default.paper.3.height_mm
    279
    print.tmp.printerfeatures.PostScript/default.paper.3.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.3.name
    Letter
    print.tmp.printerfeatures.PostScript/default.paper.3.width_mm
    215
    print.tmp.printerfeatures.PostScript/default.paper.4.height_mm
    355
    print.tmp.printerfeatures.PostScript/default.paper.4.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.4.name
    Legal
    print.tmp.printerfeatures.PostScript/default.paper.4.width_mm
    215
    print.tmp.printerfeatures.PostScript/default.paper.5.height_mm
    431
    print.tmp.printerfeatures.PostScript/default.paper.5.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.5.name
    Tabloid
    print.tmp.printerfeatures.PostScript/default.paper.5.width_mm
    279
    print.tmp.printerfeatures.PostScript/default.paper.6.height_mm
    254
    print.tmp.printerfeatures.PostScript/default.paper.6.is_inch
    true
    print.tmp.printerfeatures.PostScript/default.paper.6.name
    Executive
    print.tmp.printerfeatures.PostScript/default.paper.6.width_mm
    190
    print.tmp.printerfeatures.PostScript/default.paper.count
    7
    print.tmp.printerfeatures.PostScript/default.plex.0.name
    default
    print.tmp.printerfeatures.PostScript/default.plex.count
    1
    print.tmp.printerfeatures.PostScript/default.resolution.0.name
    default
    print.tmp.printerfeatures.PostScript/default.resolution.count
    1
    print.tmp.printerfeatures.PostScript/default.supports_colorspace_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_downloadfonts_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_jobtitle_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_orientation_change
    true
    print.tmp.printerfeatures.PostScript/default.supports_paper_size_change
    true
    print.tmp.printerfeatures.PostScript/default.supports_plex_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_printincolor_change
    true
    print.tmp.printerfeatures.PostScript/default.supports_resolution_change
    false
    print.tmp.printerfeatures.PostScript/default.supports_spoolercommand_change
    true
    print.tmp.printerfeatures.hl730series.can_change_colorspace
    false
    print.tmp.printerfeatures.hl730series.can_change_downloadfonts
    false
    print.tmp.printerfeatures.hl730series.can_change_jobtitle
    false
    print.tmp.printerfeatures.hl730series.can_change_num_copies
    true
    print.tmp.printerfeatures.hl730series.can_change_orientation
    true
    print.tmp.printerfeatures.hl730series.can_change_paper_size
    true
    print.tmp.printerfeatures.hl730series.can_change_plex
    false
    print.tmp.printerfeatures.hl730series.can_change_printincolor
    true
    print.tmp.printerfeatures.hl730series.can_change_resolution
    false
    print.tmp.printerfeatures.hl730series.can_change_spoolercommand
    false
    print.tmp.printerfeatures.hl730series.colorspace.0.name
    default
    print.tmp.printerfeatures.hl730series.colorspace.count
    1
    print.tmp.printerfeatures.hl730series.has_special_printerfeatures
    true
    print.tmp.printerfeatures.hl730series.orientation.0.name
    portrait
    print.tmp.printerfeatures.hl730series.orientation.1.name
    landscape
    print.tmp.printerfeatures.hl730series.orientation.count
    2
    print.tmp.printerfeatures.hl730series.paper.0.height_mm
    210
    print.tmp.printerfeatures.hl730series.paper.0.is_inch
    false
    print.tmp.printerfeatures.hl730series.paper.0.name
    A5
    print.tmp.printerfeatures.hl730series.paper.0.width_mm
    148
    print.tmp.printerfeatures.hl730series.paper.1.height_mm
    297
    print.tmp.printerfeatures.hl730series.paper.1.is_inch
    false
    print.tmp.printerfeatures.hl730series.paper.1.name
    A4
    print.tmp.printerfeatures.hl730series.paper.1.width_mm
    210
    print.tmp.printerfeatures.hl730series.paper.2.height_mm
    420
    print.tmp.printerfeatures.hl730series.paper.2.is_inch
    false
    print.tmp.printerfeatures.hl730series.paper.2.name
    A3
    print.tmp.printerfeatures.hl730series.paper.2.width_mm
    297
    print.tmp.printerfeatures.hl730series.paper.3.height_mm
    279
    print.tmp.printerfeatures.hl730series.paper.3.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.3.name
    Letter
    print.tmp.printerfeatures.hl730series.paper.3.width_mm
    215
    print.tmp.printerfeatures.hl730series.paper.4.height_mm
    355
    print.tmp.printerfeatures.hl730series.paper.4.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.4.name
    Legal
    print.tmp.printerfeatures.hl730series.paper.4.width_mm
    215
    print.tmp.printerfeatures.hl730series.paper.5.height_mm
    431
    print.tmp.printerfeatures.hl730series.paper.5.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.5.name
    Tabloid
    print.tmp.printerfeatures.hl730series.paper.5.width_mm
    279
    print.tmp.printerfeatures.hl730series.paper.6.height_mm
    254
    print.tmp.printerfeatures.hl730series.paper.6.is_inch
    true
    print.tmp.printerfeatures.hl730series.paper.6.name
    Executive
    print.tmp.printerfeatures.hl730series.paper.6.width_mm
    190
    print.tmp.printerfeatures.hl730series.paper.count
    7
    print.tmp.printerfeatures.hl730series.plex.0.name
    default
    print.tmp.printerfeatures.hl730series.plex.count
    1
    print.tmp.printerfeatures.hl730series.resolution.0.name
    default
    print.tmp.printerfeatures.hl730series.resolution.count
    1
    print.tmp.printerfeatures.hl730series.supports_colorspace_change
    false
    print.tmp.printerfeatures.hl730series.supports_downloadfonts_change
    false
    print.tmp.printerfeatures.hl730series.supports_jobtitle_change
    false
    print.tmp.printerfeatures.hl730series.supports_orientation_change
    true
    print.tmp.printerfeatures.hl730series.supports_paper_size_change
    true
    print.tmp.printerfeatures.hl730series.supports_plex_change
    false
    print.tmp.printerfeatures.hl730series.supports_printincolor_change
    true
    print.tmp.printerfeatures.hl730series.supports_resolution_change
    false
    print.tmp.printerfeatures.hl730series.supports_spoolercommand_change
    false
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    == User Agent
    ==
    Opera/9.80 (X11; Linux i686; U; de) Presto/2.6.30 Version/10.60

    Extensions can sometimes be the cause of problems. If the problem does not occur in Safe Mode, then you can disable your extensions one-by-one until you find out which one is causing the problem. See [[Troubleshooting extensions and themes]]

Maybe you are looking for

  • J2SDK1.4 Installation problem on Linux

    After downloading J2sdk 1.4 from Java Sun site, it was stored on my windows system as j2sdk-1_4_0_01-linux-i586-rpm.bin file. I did ftp to this file to a location in my Linux box. But I am unable to extract the .bin file to .rpm file.Somebody please

  • How to call external jar files in EJB project for CE

    Hi, I would be thankful if someone could help me with this - I need to call the external jar files into my EJB project - Here is what I have done and am getting runtime exception as  - java.lang.RuntimeException: java.lang.NoClassDefFoundError: com/g

  • UCCX 7.0: Outbound IVR call based on datetime

    Hi, I want to know can I dial my customers (through UCCX Outbound Subsystem) from the dialing list where datetime is included and I want to dial them at that particular datetime. The idea came from like example, I want to wish birthday to someone at

  • Cancel Material Doc.- Return to vendor created by Quality decision

    Hi, How to cancel material document which is created as Return to Vendor ( Mvt. type 122) using Usage decision in Quality module. One bypass may be to recive GR agianst the PO. Is there any other better solution than this? Krishna

  • Error when trying to download iTunes 10.6.3 for Windows XP

    I am receiving the following error when trying to download iTunes 10.6.3 for Windows XP: There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or packa