Format.dat parameters for a LaCie d2 250GB USB disk

When attemting to format a LaCie d2 250GB USB disk on a Sparc Solaris 9 system, autoconfigure for disk type fails. Does anybody have the drive geometry for this disk that I can put in format.dat? http://www.lacie.com has info relating to only M$ or Mac systems but nothing relating to no. of cylinders/heads/sectors etc.
Thanks much in advance
Regards
SK

I have got a 1 TB LaCie d2 Quadra Hard Disk with FireWire 800 and 400, USB 2.0 and eSATA.
You can get rid of the preinstalled software, but what I recommend you to do is to download the LaCie Firmware Updater to update the external drive firmware to the most recent version > http://www.lacie.com/us/support/drivers/driver.htm?id=10250
Then, nothing else to do. If you are going to use your external drive only with Macs, format it in "Mac OS Extended (Journaled)", so you can use it to store files or to make backups of your files

Similar Messages

  • Format Date Parameters

    I have an BI Publisher parameter
    <?P_INVOICE_BEGIN_DATE?>
    It displays like this:
    1988-10-01T00:00:00.000-04:00
    How do I display it like this:
    01-OCT-1988
    Thanks!

    <?format-date:P_INVOICE_BEGIN_DATE;’dd-MMM-yyyy’?>For ex:
    <?format-date:’2007-07-01T00:00:00.000-06:00’;’DD-MON-YYYY’?>
    you get 01-Jul-2007 as output.

  • Dynamic date parameters for a scheduled report that runs every day

    I have a report that has input parameters for a start date and
    end date. The report will be scheduled to run once a day at a
    scheduled time. I need the report to automatically set the start
    date and end dates when the report runs at the scheduled time.
    When the report runs at the scheduled time, the end date needs
    to be set to that time and the start date needs to be set to 24
    hrs before the end date. I want the start and end dates to roll
    forward automatically when the scheduled report runs each day. I
    don't want any user intervention to change the start and end
    dates every day. How can I do this in a report ?
    Also, since the report is scheduled to run each day, I want the
    output to be saved to a unique file name each time the report is
    run as each day's report will report on the data only for that
    day. How can I get the report to save to a unique file name
    automatically each day ? Again, I don't want any user
    intervention where they would set the output file name manually.

    Try adding the following in the beforereport or beforepform
    trigger, before the RETURN clause (TRUNC gets rid of the time
    component of the date):
    :p_date_from := TRUNC(sysdate) - 1;
    :p_date_to := TRUNC(sysdate);
    :desname := 'REPORT'||TO_CHAR(sysdate, 'DDMMYYYY')||'.txt'
    Paul Williams

  • Default Date Parameters for SSRS Subscription

    I have a SSRS 2008 R2 report running on a Sharepoint 2010 site.
    It has two date parameters (Beginning and Ending Date).
    The defaults of these dates are calculated correctly when running interactively.
    For example:
    =DateAdd("d",-28, Today)
    =DateAdd("d",-1, Today)
    However, when you create a subscription the defaults are based on when the report is submitted and not when the report is executed.
    Is there anyway to set a subscription to pull the default parameters every time when executed.
    Thanks in advance.

    Hi miguelh,
    Based on my research, if we specified the report parameters with “Use Report Default Value” is checked in the subscription, we could get the report from this subscription with the default value. The default values are based on the expression when the subscription
    is executed, rather than the time when we create the subscription. If today is 7/21/2014, the Beginning Date is 6/23/2014, Ending Date is 7/20/2014.
    So, please double check you have typed the expressions as the default values in the two date parameters and we have select the “Use Report Default Value” as the parameter values when creating the subscription .
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Date parameters for Date range

    Hi,
    I got a report with 2 parameters From Date and To Date and i have 2 columns items in the report absence start date and absence end date.
    i have to make sure that the date range satisfies all case's
    what is the best way that I can these validation rules in discoverer on these dates...?
    case's are something like this:
    1 (absence start date > from date; absence end date > to date)
    2 (absence start date > from date; absence end date < to date)
    3 (absence start date < from date; absence end date > to date)
    4 (absence start date > from date; absence end date < to date)
    Any help would be really appreciated.

    Using conditions in Discoverer is just like specifying a where clause in SQL with AND and OR. You should be able to use conditions for what is being described below.
    Are you not able to do that using conditions in your report ?

  • Date parameters for the previous fiscal quarter?

    Hello Folks,
    I have this requirement of selecting the dates for the previous fiscal quarter. usually a fiscal quarter is January 2011 - March 2011. But in my case the fiscal year should be December 2010 to February 2011 and if i check in june 2011 it should return Mar 2011 till May 2011 and so forth. So how can i acheive to be able to select these dates i.e 12/1/2010 till 02/28/2011 in the where clause for the current date?
    create table test_A (id int, col varchar(50),change_date date);
    insert into test_A values(1, 'A',to_date('20101201 000000', 'YYYYMMDD HH24MISS'));
    insert into test_A values(2, 'A1',to_date('20110122 000000', 'YYYYMMDD HH24MISS'));
    insert into test_A values(3, 'A1',to_date('20110202 000000', 'YYYYMMDD HH24MISS'));
    insert into test_A values(5, 'A1',to_date('20110306 000000', 'YYYYMMDD HH24MISS'));
    insert into test_A values(6, 'A1',to_date('20110305 000000', 'YYYYMMDD HH24MISS'));
    insert into test_A values(7, 'A1',to_date('20110307 000000', 'YYYYMMDD HH24MISS'));
    select * from test_A
    1     1     A     12/1/2010
    2     2     A1     1/22/2011
    3     3     A1     2/2/2011
    4     5     A1     3/6/2011
    5     6     A1     3/5/2011
    6     7     A1     3/7/2011
    I only want to see the following
    1     1     A     12/1/2010
    2     2     A1     1/22/2011
    3     3     A1     2/2/2011

    select  *
      from  test_A
      where change_date >= add_months(trunc(sysdate,'Q'),-1)
        and change_date <  add_months(trunc(sysdate,'Q'),2)
            ID COL                                                CHANGE_DATE
             1 A                                                  20101201 000000
             2 A1                                                 20110122 000000
             3 A1                                                 20110202 000000
    3 rows selected.
    SQL> SY.

  • Need help on Date Parameters for BIP Report

    Hello,
    I need to add a date parameter in my BIP report. I have used a date parameter on a BIP report that has a for-each grouping, but my BIP report RTF template that was converted from Actuate do not have a for-each grouping and I was getting an error when I validate the RTF template. Can someone please help?
    Thank you

    can u send me template and xml . i will try at my side. email: [email protected]
    Some times converted templates won't work straight away. you still need to do manual adjustments to make it work based one the requirement u have.
    check this:
    http://bipconsulting.blogspot.com/2009/08/actuate-to-bi-publisher-reports.html

  • How scheduler job in HPUX and Data Parameters

    Hi guys, is there a way to invoke a PAS procedure from an external scheduler?
    Anyone have an procedure example that passes date parameters for the load data procedure?
    Thank you,
    Rgrds, Vitoriano

    Hi Luis,
    On how to call PAS procedures you might want to check the following thread: Re: Run procedure in Application Server from the command line
    Regarding the date parameters, what are you trying to achive? You can anyway get very good ideas from the wfmde_setup.pro file, used for E&A. There you have some code to turn the actual system date into a PAS parameter.
    Best regards,
    Ricardo Vieira

  • Parameters of Date Datatype for stored Procedure

    I have a stored procedure where i hav two date parameters..initial i had the parameter datatype as varchar and in query i used the format to_date(fromdate ,'dd/mm/yyyy')
    My fromdate is in the format 31-01-2010
    everything worked fine...now i changed the datatype of parameters to date...how shud i give the input ?
    If i give as 01/31/2010 as i get the error
    ORA-06550: line 6, column 15:
    PLS-00382: expression is of wrong type
    ORA-06550: line 6, column 3:
    PL/SQL: Statement ignored
    ORA-06550: line 7, column 13:

    Cathrin wrote:
    I have a stored procedure where i hav two date parameters..initial i had the parameter datatype as varchar .. and this is wrong. Surely!
    Why are you passing date values as varchar2?
    One of the fundamental programming principles is to use the correct data types for variables and parameters. Exactly because of the type of problem you are now experiencing.
    So do not use string variables for numbers and dates and arrays and other types. 99.99% of the time this will be just plain wrong. And at this stage, it is more than safe to ignore the 0.01% exception to this rule.
    Use the correct data types. That simple.

  • SSRS 2012 SP2, Native / Report Manager, non-IE browsers show date parameters in US format MM/DD/YYYY, ignoring locale settings

    I have a server running SSRS 2012 SP2, in Native / Report Manager mode. The server, reports, desktop etc are all set to en-AU.
    Using IE, date parameters show as expected in DD/MM/YYYY format.  However using Chrome or Firefox, they show in US format MM/DD/YYYY.
    Does anyone know how to fix this?

    Hi Jiri,
    Thanks for that speedy tip - that has solved it for Chrome.
    I followed a similar path to get it fixed for Firefox - Settings / Content / Languages / add English/Australia [en-au] / Move Up to top spot.
    Mike

  • How do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full

    how do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full.. HELP!

    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.

  • How to format data for a custom group

    Hi all
    I have a pivot table with Actual and Budget as columns and some accounts in the rows. Since I'm using the account hierarchical column, I created custom groups for the accounts using the Selection steps pane. For example, I created a new group called Profit to combine 3 different Profit accounts and display one Profit line.
    Now I want to format the data for the Profit group. I right-click on the Profit group, choose to edit the group and click on the Format button on the bottom left corner. I add some formatting, e.g. borders. When I now view the pivot table, borders have been applied to the label of the group - so the word Profit is now bordered. However, the values in the Actual and Budget columns do not have a border. Don't know what I'm missing, but I want both the group label and the values to be formatted the same way.
    How can I apply formatting to the data/values for the custom group?

    Yeah tried that already, it formats the entire column whereas I need just the values for the Profit row to be formatted. Seems it is a limitation only when using custom groups?

  • Formatting dates in a table in webdynpro java for mutliple entries.

    Hi all,
    I have a requirement to format date values in a table for multiple entries to dd/MM/yyyy format in webdynpro java for mutiple line items in that table.
    Please help me out with the technique for the same.
    Thanks and Regards,
    Soumyadeep.

    Hi,
    here is the code for changing the formatting the date.
    Date currentDate = new Date ();
                DateFormat df =  DateFormat.getDateInstance(DateFormat.SHORT);
                String today = df.format(currentDate);
                SimpleDateFormat sdfInput = new SimpleDateFormat("dd/mm/yyyy");
                SimpleDateFormat sdfOutput = new SimpleDateFormat ("mm/dd/yyyy");
    try {
                      String dateft = sdfOutput.format((Date) sdfInput.parse(df.format(currentDate)));
                } catch (ParseException e) {

  • Function Modules for Format Date, Month Name and Quarter value.

    Hi All,
    1. I am getting the date field from the Flatfile, so i need to format the date to YYYYMMDD. Is there any Function module for that in BW.
    2. Based on the above Formated Date i have to find out the Name of the Month like JANUARY, FEBUARY etc.
    3. Based on the same above Formated Date i need to find out the Quarter like 1, 2 etc.
    Could you please let me know if any function modules are there for the above questions in BW not in ABAP, why i mention is some Function modules are there in ABAP but not in BW.
    Thanks in advance.
    Regards,
    srinivas

    Hi ,
    1.If your input date format is MMDDYYYY then Use SDATE as conversion routine in trans strucutre to convert into YYYYMMDD.
    2.By passing year as input parameter for the following FM you would get all the months with text.Using READ statement in routine you can get month name
    MONTH_NAMES_GET
    3.For Quarters you can use the following FM:
    TSTR_PERIODS_QUARTERS
    hope it helps...
    regards,
    Raju

  • Date format in invoice for

    hi,
    us company code is billing to uk customer and the date format in the oy01 tcode is maintained for uk country as dd.mm.yyyy and for us it s maintained as mm/dd/yyyy now the requirement is if us company code is billing irrespective of the customer, date format for due date(which is calculated by adding the no. of days in the payment terms ) in the invoice should be mm/dd/yyyy but here it is appearing as dd.mm.yyyy as customer belong to uk is there any standard setting where in this requirement can be met, i have also checked date format in su01 for the user id it is not effecting the out come.
    kindly guide.
    thanks

    hi shakeer,
    execute SU01 goto DEFAULTS - there date format will be there.
    please change as per your requriment.
    hope this clears your issue
    balajia

Maybe you are looking for

  • Array of Cluster with event structure

    Hi, I am having Array of cluster with cluster having 1 String Control , 1 Combo box, 1 Led control and 2 Numeric control. In the combo box i am having two options to select ('Binary' and 'PWM').Whenever Binary is selected then Led control has be enab

  • Search criteria in an Acroform

    I have an Acroform that is about 100 pages. Each page has the same  information, but for different individuals. I need an easy way for  people to search the PDF for an individual's name, for their country of  origin, and so forth. Is the best way to

  • Need table name for storage place and supplier nr

    Hello everybody, I have to fill out the PM order via bapi BAPI_ALM_ORDER_MAINTAIN, however I want to fill out the table component with this bapi, but I do not know the storage location of the material. I only have the supplier. So I want to ask, if s

  • Having trouble accessing the print from Facebook on my Photosmart 7510..

    When I first set up my 7510, I had setup the Print from Facebook option. A few days later I tried to use the feature and was prompted to enter the code again on facebook.com/device. When I try to do this, Facebook does not accept the code. I just res

  • User system gets freeze / Hang when he opens a file from SharePoint. But in chrome it works fine.

    Hi, This is the only USER who is facing above issue. But when he hold CTRL key and click on the file. It works fine. We are using IE 8 32 bit. Please note it works fine in IE 8 64 bit.  Could you please advise why it happens? Is this something share