Import Export of contacts via ASCII CSV file

Hi all. I have a 9300 Curve. This is my phone. I had a workphone which was a 9900 Bold. I backed up the Bold when i left the job. I want to import the contacts from the Bold back up into the Curve. If i export the Curve contacts to a csv file. Then import the bold contacts from restoring just the contacts list.... so far ok, bold contacts in, curve contacts overwritten but they are in a file as csv. I then try to one way sync the curve contacts back in.....the csv file has removed all the zeros from the start of every number. If you "edit" the csv in notepad they are there but when you look via excel...they are not. If i sync back in....the zero's are gone. I do not want to sync with windows live or anything like that as it will import a whole heap of **bleep** i dont want as well.
Any clues?
Thanks

*Feedback*
"Use the form below to send us your comments. We read all feedback carefully, but please note that we cannot respond to the comments you submit."
http://www.apple.com/feedback/ipad.html
Airstash
                                        Compatibility                               
                                        Wireless operation:                               
                                                Web browser WiFi b/g capable device                                       
                                                Optimized experience for iPhone, iPod touch, and iPad via HTML5                                       
                                                No internet connection required                                       
                                        USB operation:                               
                                                Compatible with most operating systems that support USB Mass Storage Class (thumb drives)                                       
                                                Firmware update via file drag and drop                                       
http://www.airstash.com/

Similar Messages

  • How do i export my contacts into a csv file?

    I need to export my contacts into a csv file - Apple support says it can't be done.  Any suggestions anyone please?

    or -> http://lmgtfy.com/?q=Mac+OS+export+contacts+to+CSV

  • How can i import contacts from a csv file to "iCloud Contacts"?

    How can I import contacts from a csv file to "iCloud Contacts"?

    The only way I know of to import cells from a csv file is by creating a new file.  But then you can select the desired cells and copy them to the other file.  I just did it to be sure it works.
    1. Create the new spreadsheet file via the upload command.
    2. Select the cells (table) that you want to move to the other file and press command+C (copy).
    3. Close the new file and open the existing file.
    4. Select the top/right cell of the area to receive the copied "table" and press commant+V (paste).
    I hope this is what you're trying to do!

  • Powershell - Bulk Set-ADUser attributes via a CSV file

    I am attempting to do a Bulk replace of AD User account attributes via a CSV file.  Each line in this script works except the part of Set-ADUser where I enter -Replace $attribs. I'm not sure how to code this
    part.
    <#
    The .csv file should have the following headers (first line)
    GroupName,Status,Approver1,Approver2,Owner
    #>
    #Import CSV
    $csv = @()
    $csv = Import-Csv -Path "C:\TempAdd_Grp_Attrib.csv"
    #Loop through all items in the CSV
    ForEach ($item In $csv)
    $gname = $item.GroupName
    $attribs = @{'extensionAttribute2'=$item.Status; 'extensionAttribute3'=$item.Approver1; 'extensionAttribute4'=$item.Approver2; 'managedBy'=$item.Owner}
    Set-ADGroup -Identity $gname #-Replace $attribs
    mamadukes

    Yes. I am attempting to update the AD Group extension attributes.
    The code below works, but I know I can streamline this if I use the INSTANCE, which I am having an issue with (Set-ADGroup -Instance $Update)
    Import-Module ActiveDirectory
    <#
    The .csv file should have the following headers (first line)
    GroupName,Status,Approver1,Approver2,Owner
    #>
    #Import CSV
    $date = get-date -Format "MMddyyyymm"
    $csv = @()
    $csv = Import-Csv -Path "C:\Temp\Add_Grp_Attrib2.csv"
    #Loop through all items in the CSV
    ForEach ($item In $csv)
    $Update=(Get-ADGroup $item.GroupName -Properties extensionAttribute2,extensionAttribute3,extensionAttribute4,ManagedBy);
    $Update."extensionAttribute2"=$item.Status
    $Update."extensionAttribute3"=$item.Approver1
    $Update."extensionAttribute4"=$item.Approver2
    # Set-ADGroup -instance $Update
    Set-ADGroup -Identity $item.groupName -ManagedBy $item.Owner
    Get-ADGroup $item.GroupName -Properties extensionAttribute2,extensionAttribute3,extensionAttribute4,ManagedBy | select name,extensionAttribute2,extensionAttribute3,extensionAttribute4,ManagedBy | Export-Csv "C:\temp\Add_Grp_Attrib_Updates_$date.csv" -NoTypeInformation
    mamadukes

  • Contacts Update from CSV file

    Hi,
    I have a CSV file which has all my contacts and I have just got a N73 can you please help me how do I import the contacts from a CSV file.
    Incase CSV is not possible I have a VCF file which has all the contacts.
    I also Have a sony ericsson phone which has all the contacts but when I try sending in all contacts at once I am not able to do it but its possibe to do it one at a time.
    Please help me update my contacts.

    you can sync the .csv with outlook then sync it to the N73.
    What's the law of the jungle?

  • PowerShell - Bulk-New-ADUser Creation via a csv file

    This script creates bulk AD users via a csv file. The script creates & configures the user accounts correctly even though the following error message appears. How can I correct this?
    Set-Locaiton : Cannot find path 'AD:Mydomain,OU=MyDomain,DC=My,DC=Domain,DC=org' because it does not exist.
    Import-Module ActiveDirectory
    $csv = Import-CSV -Path "C:\Temp\CreateUsers.csv"
    cd AD:
    set-location -path "OU=MyDomain,DC=My,DC=Domain,DC=org" -PassThru
    foreach($Item in $csv){
    $newUserID=@{
    Name=$item.userID
    Description=$item.description
    GivenName=$item.UserID
    surName=$item.UserID
    DisplayName=$item.UserID
    UserPrincipalName=$item.UserID + "@MyDomain.org"
    EmployeeID=$item.Owner
    ScriptPath="login.cmd"
    Try{
    New-ADUser @newUserID -ErrorAction Stop -AccountPassword (ConvertTo-SecureString $Item.Password -AsPlainText -Force) -PassThru
    Enable-ADAccount -Identity $item.userID
    Set-ADUser -Identity $item.userID -ChangePasswordAtLogon $true
    Write-Host "UserID $($item.UserID) created!" -ForegroundColor green
    Catch{
    Write-Host "There was a problem creating UserID $($item.UserID). The account was not created!" -ForegroundColor Red
    set-location -path "c:\temp"
    mamadukes

    Slight variation, populated from the AdventureWorks SQL database rather than a CSV
    Import-Module "SQLPS" -DisableNameChecking
    New-PSDrive -Name AWDB -PSProvider SQLServer -ROOT SQLSERVER:\sql\localhost\default\databases\adventureworks2012
    Set-Location AWDB:\Tables
    $SQLText = "SELECT e.BusinessEntityID, p.Title, p.FirstName, p.MiddleName, p.LastName, p.Suffix, "+
    "e.JobTitle, d.Name AS Department, d.GroupName, edh.StartDate, e.LoginID"+
    " FROM HumanResources.Employee AS e"+
    " INNER JOIN Person.Person AS p ON p.BusinessEntityID = e.BusinessEntityID"+
    " INNER JOIN HumanResources.EmployeeDepartmentHistory AS edh ON e.BusinessEntityID = edh.BusinessEntityID"+
    " INNER JOIN HumanResources.Department AS d ON edh.DepartmentID = d.DepartmentID"+
    " WHERE (edh.EndDate IS NULL)"+
    " AND (p.FirstName ='Brian')"
    $Query = Invoke-SQLCmd -Query $SQLText
    $Password = "P@assword1"
    foreach($Item in $Query)
    $LoginID=$Item.LoginID
    $LoginID="CORP\"+($LoginID).Substring(16)
    $newUserID=@{
    Name=$item.FirstName+$Item.LastName
    Description="This is a test of a bulk user add"
    GivenName=$item.FirstName
    Surname=$item.LastName
    DisplayName=$item.FirstName+" "+$Item.LastName
    UserPrincipalName="$($item.FirstName+"."+$Item.LastName)@corp.contoso.com"
    EmployeeID=$item.BusinessEntityID
    ScriptPath='login.cmd'
    Company="Contoso"
    Department=$Item.Department
    EmailAddress="$($item.FirstName+"."+$Item.LastName)@corp.contoso.com"
    Title=$Item.JobTitle
    $TargetOU="OU="+$item.Department+",DC=corp,DC=contoso,DC=com"
    Try{
    $newUserID
    New-ADUser @newUserID -Path $TargetOU -ErrorAction Stop -AccountPassword (ConvertTo-SecureString $Password -AsPlainText -Force) -Passthru
    Enable-ADAccount -Identity $newUserID.Name
    Set-ADUser -Identity $newUserID.Name -ChangePasswordAtLogon $true
    Write-Host "UserID $($newUserID.Name) created!" -ForegroundColor green
    Catch{
    Write-Host "There was a problem creating UserID $($item.UserID). The account was not created!" -ForegroundColor Red
    No need to be on the PSDrive AD:, the OU can be specified in the Path parameter in the New-ADUser.
    This was done on a member server with SQL Server (not a domain controller).
    Thanks for your help

  • Exporting table data to a CSV file

    hello everyone,
    i need help on exporting table data to a CSV file.
    I have a div element containing the table which displays some data.
    there is a "Export" button just above the table, which if clicked, will export the current data in the table to a .csv file.
    can this be done in jsp? or i need to use servlet?
    also how can i submit the table data only? (as my webpage contiain other data also)
    can anyone provide with some sort of sample code?
    thanks in advance!!

    oops!!
    i just forgot..
    when the user will click on the export button, i want to greet him with a "Save As"
    popup, so that he can specify the filename and location to save the file.
    thanks!!

  • Having trouble important my Google contacts via Microsoft Exchange. The Exchange pop up says that I have entered the wrong password.

    Having trouble important my Google contacts via Microsoft Exchange. An Exchange pop up says that I have entered the wrong password. Help?

    I found a fix!! Refer to this article regarding using Microsoft Exchange for Google accounts: http://www.zdnet.com/with-new-gmail-and-google-maps-ios-apps-the-iphone-5-is-cle arly-the-best-smartphone-available-7000008756/
    In a nutshell, the Google/Microsoft Exchange combo will no longer work on apple devices. You will need to delete your Exchange account altogether. I know, scary! After you delete it, add your Gmail account like you would add any other regular email account on your device [Settings > Mail, Contacts, Calendars > Gmail > add your info]. That takes care of your email and calendar.
    Now to get your google contacts back! Refer to these instructions: http://support.apple.com/kb/HT4872?viewlocale=en_US
    I promise, these steps worked for me (even though I was wincing while I deleted my Exchange account). Now I have my Gmail, Google contacts, and Google calendars (even the shared calendars!) on both my iPhone and iPad :D 

  • Exporting query results into a csv file using arabic and hebrew chars

    Hi,
    iv'e encountered a problem, using plsql to export a query into a csv file.. the arabic turns into question mark. Do you have any idea why?

    Usually this indicates a mismatch between client and database character set.
    How do you export this query?
    What is your database version?
    What is your client OS?
    T.

  • I want to save my Thunderbird contact list as csv file for importing to Verizon net mail

    I can find abook.mab but verizon will only accept csv.

    The old times way, is create a record in Verizon's address book. and export it to CSV.
    Open in Notepad
    Open you other CSV file in Notepad.
    Compare the headings and make them the same in the import book as are present in the one you exported. There is no need for all fields/Headings to be included, but as the comma separates data as well as headings it is much easier to do in a spreadsheet as Wole columns must be manipilated as one.
    I talks a little about it [http://thunderbirdtweaks.blogspot.com.au/2013/03/importing-csv-files.html here] in relation to Thunderbird import of CSv. It almost always requires a manual tweak, as the standard has about half a dozen common implementations. they are not truly interchangeable and most web applications only support on or two of them. Opening in a spreadsheet as I do in my blog post is about the most universal way to open a CSV file. The spreadsheet authors have invested considerable time in the format as it is one of the oldest methods of interchanging data. It is also one of the least friendly for those who are used to clicking a button as it has roots on mainframes on the 1950s and 60s.

  • Importing problem-iCal won't recognize .csv files

    I've recently upgraded to 10.4.9 from 10.3.9 on my Power PC iMac G5. The old version of iCal had no problem seeing downloaded .csv files and importing them. The new version won't see them or import them. Under 10.3.9, all I had to do was double click on the downloaded .csv file and it would import all events into iCal. Now, nothing happens. I'm a basic user and don't know about scripting or anything else. Any help?

    YES! SUCCESS!
    I found two ways of doing this. After searching the net, I found this online app on this guys website that worked the best:
    http://manas.tungare.name/projects/yahoo2ical/
    It says it's a "yahoo" csv converter, but it worked fine for my outlook csv file.
    The other option is, if you have an account with google, like a gmail account, you can use their google calendar to import your csv file. Once you've done that, you can subscribe to that calendar you imported via the "share" option. Just get the .ics address. This took a couple tries on google's site to import, but it worked.

  • How can we export table data to a CSV file??

    Hi,
    I have the following requirement. Initially business agreed upon, exporting the table data to Excel file. But now, they would like to export the table data to a CSV file, which is not being supported by af:exportCollectionActionListener component.
    Because, when i opened the exported CSV file, i can see the exported data sorrounded with HTML tags. Hence the issue.
    Does someone has any solution for this ... Like, how can we export the table data to csv format. And it should work similar to exporting the data to excel sheet.
    For youre reference here is the code which i have used to export the table data..
    ><f:facet name="menus">
    ><af:menu text="Menu" id="m1">
    ><af:commandMenuItem text="Print" id="cmi1">
    ><af:exportCollectionActionListener exportedId="t1"
    >title="CommunicationDistributionList"
    >filename="CommunicationDistributionList"
    >type="excelHTML"/> ---- I tried with removing value for this attribute. With no value, it did not worked at all.
    ></af:commandMenuItem>
    ></af:menu>
    ></f:facet>
    Thanks & Regards,
    Kiran Konjeti

    Hi Alex,
    I have already visited that POST and it works only in 10g. Not in 11g.
    I got the solution for this. The solution is :
    Use the following code in jsff
    ==================
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="text/csv; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    OR
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="application/vnd.ms-excel; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    And place this code in ManagedBean
    ======================
    > public void test(FacesContext facesContext, OutputStream outputStream) throws IOException {
    > DCBindingContainer dcBindings = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    >DCIteratorBinding itrBinding = (DCIteratorBinding)dcBindings.get("fetchDataIterator");
    >tableRows = itrBinding.getAllRowsInRange();
    preparaing column headers
    >PrintWriter out = new PrintWriter(outputStream);
    >out.print(" ID");
    >out.print(",");
    >out.print("Name");
    >out.print(",");
    >out.print("Designation");
    >out.print(",");
    >out.print("Salary");
    >out.println();
    preparing column data
    > for(Row row : tableRows){
    >DCDataRow dataRow = (DCDataRow)row;
    > DataLoaderDTO dto = (DataLoaderDTO)dataRow.getDataProvider();
    >out.print(dto.getId());
    >out.print(",");
    >out.print(dto.getName());
    >out.print(",");
    >out.print(dto.getDesgntn());
    >out.print(",");
    >out.print(dto.getSalary());
    >out.println();
    >}
    >out.flush();
    >out.close();
    > }
    And do the following settings(*OPTIONAL*) for your browser - Only in case, if the file is being blocked by IE
    ==================================================================
    http://ais-ss.usc.edu/helpdoc/main/browser/bris004b.html
    This resolves implementation of exporting table data to CSV file in 11g.
    Thanks & Regards,
    Kiran Konjeti

  • How to Export BW Query Report to .csv file

    I try to export BW QueryReport to .csv file using ReportAgent and URL command in WEB Template:
    <SAP_BW_URL DATA_PROVIDER='VIEW1' CMD='EXPORT' FORMAT='CSV'>
    but can't find the result file.
    Is someone have experience in exporting BW Reports to file in automatic way?

    Another way to do it would be to use transaction RSCRM_BAPI.
    Not ideal for large volumes but allows you to extract from a query.
    Regards,
    Mike

  • Export query results to a CSV file

    Hi,
    My requirement is I need to export the results of a query to a CSV file. Can anyone please suggest a way to include the column names also in the CSV file?
    Thanks in advance.
    Annie

    Following code is from asktom. I have modified to include column heading. This will get your desired CSV file for a given query.
    create or replace function  dump_csv( p_query     in varchar2,
                                          p_separator in varchar2
                                                        default ',',
                                          p_dir       in varchar2 ,
                                          p_filename  in varchar2 )
    return number
    AUTHID CURRENT_USER
    is
        l_output        utl_file.file_type;
        l_theCursor     integer default dbms_sql.open_cursor;
        l_columnValue   varchar2(2000);
        l_status        integer;
        l_colCnt        number default 0;
        l_separator     varchar2(10) default '';
        l_cnt           number default 0;
         l_colDesc          dbms_sql.DESC_TAB;
    begin
        l_output := utl_file.fopen( p_dir, p_filename, 'w' );
        dbms_sql.parse(  l_theCursor,  p_query, dbms_sql.native );
        for i in 1 .. 255 loop
            begin
                dbms_sql.define_column( l_theCursor, i,
                                        l_columnValue, 2000 );
                l_colCnt := i;
            exception
                when others then
                    if ( sqlcode = -1007 ) then exit;
                    else
                        raise;
                    end if;
            end;
        end loop;
        dbms_sql.define_column( l_theCursor, 1, l_columnValue, 2000 );
        l_status := dbms_sql.execute(l_theCursor);
         dbms_sql.describe_columns(l_theCursor,l_colCnt, l_colDesc);
         l_separator := '';
         for lColCnt in 1..l_colCnt
         loop          
                utl_file.put( l_output, l_separator ||  '"' || Upper(l_colDesc(lColCnt).col_name) || '"');
                   l_separator := p_separator;
         end loop;
         utl_file.new_line( l_output );
        loop
            exit when ( dbms_sql.fetch_rows(l_theCursor) <= 0 );
            l_separator := '';
            for i in 1 .. l_colCnt loop
                dbms_sql.column_value( l_theCursor, i,
                                       l_columnValue );
                utl_file.put( l_output, l_separator ||  '"' ||
                                        l_columnValue || '"');
                l_separator := p_separator;
            end loop;
            utl_file.new_line( l_output );
            l_cnt := l_cnt+1;
        end loop;
        dbms_sql.close_cursor(l_theCursor);
        utl_file.fclose( l_output );
        return l_cnt;
    end dump_csv;The original link is below.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:95212348059
    Thanks,
    Karthick.

  • Convert ASCII CSV file

    i have a program which able to digest a CSV file into the DB (SQLanywhere), however my original CSV file is a ASCII format, where the program is only accept UTF-8. is there any method can convert the CSV file from ASCII to UTF-8 automatically?
    Q1.
    is it using the following for conversion?
    byte[] bytes = test.getBytes("IS0-8859-1");
    String encoded = new String(bytes,"UTF-8");
    Q2.
    is there any method can eliminate the text qualifier (")?
    e.g. "0028634063","BETTY CROCKER'S KIDS COOK!-HB"," 121.50" become
    0028634063,BETTY CROCKER'S KIDS COOK!-HB,121.50
    Thanks a lot!

    Q1.
    is it using the following for conversion?
    byte[] bytes = test.getBytes("IS0-8859-1");
    String encoded = new String(bytes,"UTF-8");I'm pretty sure the above is not going to do what you expect. You convert some test string to bytes in the 8859-1 encoding. Now bytes has 8859-1 values. Then, you try to create "encoded" with that same "bytes" array...but now you seem to think it suddenly has UTF-8 values. It doesn't...it still has the 8859-1 values you just created. Using "bytes" as a UTF-8 array doesn't seem quite right.
    John O'Conner

Maybe you are looking for

  • What is the best way to do this?

    Dear All, I am creating a couple of SWFs, SWFa (Games Board Holder) & SWFb (Quiz). I would like to load up SWFb from SWFa and then a variable in SWFa would be set from the Quiz SWFb once the quiz is complete. var mc:MovieClip = this.createEmptyMovieC

  • Unable to connect to Server  Error in Essbase 11.1.2

    Hi, We are working on Essbase 11.1.2.2. Our applications are in Production and suddenly the  some of the BSO Application are down. We tried to re start the applications but not restarted. So  we restarted the Essbase Hyperion Services in the Server. 

  • IPhoto not showing image for editing

    In iPhoto, in events, I click on an event, then highlight a photo.  When I double click the thumbnail, I see a preview but when I click that to edit or if, on the thumbnail, I right click>"edit in iPhoto", all I see is a blank screen.  If I highlight

  • Just wanted to say...

    You're all going to think I'm just trying to curry favor (maybe. maybe....) but I just wanted to thank everyone here who chimes in on posts. SharePoint is a big product and I learn more about it every day, even when I don't want to ;) This has been a

  • I sent a file to a friend and he can view one layer?

    I'm using a free trial version of illustrator and it has multiple layers. When I send it to a friend to open, he can only view one layer. Wondering what could be the issue?