Leading zeros and export to CSV


Hello

I run a sql query for retrieving telephone numbers and when exporting to CSV 0 are deleted. I understand that this is a problem of excel formatting, however does it perform a work around in the SQL that can preserve the leading zeros when exporting to CSV?

sliderrules wrote:

The format of data is of type char

SELECT «=» | test ctelno

When they are copied to surpass the value bed = 0999 6767 in excel (including =)

You need double quotes

'="'|| c.ctelno |' » "

Tags: Database

Similar Questions

  • script to get the csv vm disk usage and export to csv format

    Hi all

    I am trying to create a script to get the use of disk for vm - space - free space and total disk space.

    I used this script that allows me to get the required result.

    but I need to edit the script for each cluster, VM he should get computers virtual cluster and check the vm disuage. and export of csv file

    $vms = import-CSV "C:\Cluster.csv".

    $outputfile = "c:\Diskusage.csv".

    SE connect-viserver VC-vcadmin username-password

    {foreach ($vm to $vms)

    Get - VM $vm.name | Where {$_.} PowerState - eq "Receptor"} | Get-VMGuest | Select the ExpandProperty - VMName disks | Select VMName, path, @{Name = "DiskCapacityGB"; Expression = {[math]: Round ((($_.))} {{((Ability) / 1 GB), 2)}}, @{Name = "DiskUsedMB"; Expression = {[math]: Round ((($_.))} Capacity - $_. {{((FreeSpace) / 1 MB), 2)}}, @{Name = "DiskFreeMB"; Expression = {[math]: Round ((($_.))} {{((FreeSpace) / 1 MB), 2)}} | Export-Csv - NoTypeInformation $outputfile}

    Viserver disconnect

    Joint the output file

    Veuileez help me in creating the script

    You can try like this?

    Connect-viserver VC -user vcadmin -password
    foreach($cluster in Get-CLuster){
        $outputfile = "c:\" + $cluster.Name + "-Diskusage.csv"    Get-VM -Location $cluster |
        Where { $_.PowerState -eq "PoweredOn" } |
        Get-VMGuest |
        Select VMName -ExpandProperty Disks |
        Select VMName, Path,
            @{Name="DiskCapacityGB";Expression={[math]::Round((($_.Capacity)/1GB),2)}},
            @{Name="DiskUsedMB";Expression={[math]::Round((($_.Capacity - $_.FreeSpace)/1MB),2)}},
            @{Name="DiskFreeMB";Expression={[math]::Round((($_.FreeSpace)/1MB),2)}} |
        Export-Csv -NoTypeInformation $outputfile}
    
    Disconnect-viserver
    

    The script creates a CSV file for each cluster.

  • Find records VM size and export to csv format

    Hello

    I need this script to export to csv format, but I have problems to make it work.

    Notice-EEG - ViewType VirtualMachine-property name, Config.Hardware.Device, LayoutEx | %{

    $viewVM = $_; $viewVM.Config.Hardware.Device |? {$_-is [VMware.Vim.VirtualDisk]} | %{

    # for each device VirtualDisk, get some info

    $oThisVirtualDisk = $_

    # get the disk element LayoutEx, which corresponds to the VirtualDisk

    $oLayoutExDisk = $viewVM.LayoutEx.Disk |? {$_. {Key - eq $oThisVirtualDisk.Key}

    # get the FileKeys that correspond to the LayoutEx-> sort items of this VirtualDisk

    $arrLayoutExDiskFileKeys = $oLayoutExDisk.Chain |? {$_-is [VMware.Vim.VirtualMachineFileLayoutExDiskUnit]}

    New-Object PSObject-property @ {} TypeName

    # Add the VM name

    VMName = $viewVM.Name

    # disc label, such as "disk 1".

    DiskLabel = $_. DeviceInfo.Label

    # the path to the data store for the file VirtualDisk

    DatastorePath = $_. Backing.FileName

    # the size provisioned to the VirtualDisk

    ProvisionedSizeGB = [Math]: tour ($_.) CapacityInKB / 1 MB, 1).

    # Get the file LayoutEx elements that correspond to the FileKeys for this LayoutEx disk and the size for items that are "diskExtents" (retrieved in the form of bytes, so convert to GB)

    SizeOnDatastoreGB = [Math]: round (($arrLayoutExDiskFileKeys | % {$_.)) FileKey} | % {$intFileKey = $_; $viewVM.LayoutEx.File |?} {($_. Eq - $intFileKey - button) and ($_.) Type - eq "diskExtent")}} | Measure - Object - size of the sum). Summary / 1 GB, 1).

    } # end new object

    } # end foreach-object

    } # end external foreach-object

    Capture all the output in a variable and send this variable in a CSV file.

    Something like that

    $result = Get-View -ViewType VirtualMachine -Property Name, Config.Hardware.Device, LayoutEx | %{
        $viewVM = $_; $viewVM.Config.Hardware.Device | ?{$_ -is [VMware.Vim.VirtualDisk]} | %{
            ## for each VirtualDisk device, get some info         $oThisVirtualDisk = $_        ## get the LayoutEx Disk item that corresponds to this VirtualDisk         $oLayoutExDisk = $viewVM.LayoutEx.Disk | ?{$_.Key -eq $oThisVirtualDisk.Key}
            ## get the FileKeys that correspond to the LayoutEx -> File items for this VirtualDisk         $arrLayoutExDiskFileKeys = $oLayoutExDisk.Chain | ?{$_ -is [VMware.Vim.VirtualMachineFileLayoutExDiskUnit]}
            New-Object -TypeName PSObject -Property @{
                ## add the VM name            VMName = $viewVM.Name
                ## the disk label, like "Hard disk 1"            DiskLabel = $_.DeviceInfo.Label
                ## the datastore path for the VirtualDisk file            DatastorePath = $_.Backing.FileName
                ## the provisioned size of the VirtualDisk            ProvisionedSizeGB = [Math]::Round($_.CapacityInKB / 1MB, 1)
                ## get the LayoutEx File items that correspond to the FileKeys for this LayoutEx Disk, and get the size for the items that are "diskExtents" (retrieved as bytes, so converting to GB)            SizeOnDatastoreGB = [Math]::Round(($arrLayoutExDiskFileKeys | %{$_.FileKey} | %{$intFileKey = $_; $viewVM.LayoutEx.File | ?{($_.Key -eq $intFileKey) -and ($_.Type -eq "diskExtent")}} | Measure-Object -Sum Size).Sum / 1GB, 1)
            } ## end new-object    } ## end foreach-object } ## end outer foreach-object
    
    $result | Export-Csv "C:\report.csv" -NoTypeInformation -UseCulture
    
  • Output on screen and EXPORT. CSV

    Hi all

    Were the creation of scripts for some general tasks and I got a little confused on what is happening.  I have two scripts that are output on the screen even with EXPORT. CSV commond to end.  I get the output sent to the CSV fine and there is no obvious errors.

    Any whay Idears, that this could happen?  I can post my script if that helps.

    Thank you

    Phil

    This is the line with only $objHba in it.

    It will display the content of this variable to the screen.

    # $vmlist = Get-VM
    $table = @()
    
    foreach ($vmhost in (Get-view -ViewType Hostsystem )) {
         foreach ($hba in ($vmhost.config.storagedevice.hostbusadapter | where {$_.PortWorldWideName})) {
              $objHba = "" | Select-Object Hostname,Device,Model,Driver,Pci,Wwpn
              $objHba.HostName = $vmhost.Name
              $objHba.Device = $hba.Device
              $objHba.Model = $hba.Model
              $objHba.Driver = $hba.Driver
              $objHba.Pci = $hba.Pci
              $objHba.Wwpn = "{0:x}" -f $hba.PortWorldWideName
    #           $objHba
              $table += $objHba
         }
    }
    
    $table | Export-Csv $outputDir\data\$date.$viserver.$filename.csv -NoTypeInformation
    

    BTW what is the first (of line) doing here? It has nothing to do with the rest of the script.

    Copy & paste mistake I guess?

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Get-Annotation and export to CSV

    I am trying to export of Annotation custom fields in a CSV with foreach and difficulty to operate there where I want.

    1. is it possiible export with foreach or do I have to use foreach-object?

    $vms = get-vm pt*
    foreach ($vm in $vms){
        $vm = Get-View $vm.ID
        $nm = $vm.name
        $hn = $vm.guest.hostname
        $ip = $vm.guest.ipaddress
        $contact = get-vm $vms | Get-Annotation -CustomAttribute "System Contact"|select Value
        $vm | select `
        @{Name = "Name"; E={$nm}},`
        @{Name = "Contact"; E={$contact}},`
        @{Name = "Hostname"; E={$hn}},`
        @{Name = "IP"; E={$ip}}
    }format-table -AutoSize -Wrap

    2. How can I get rid of the "{@{value ="in the exit?}} "

    Name                          Contact                       Hostname                      IP
    ----                          -------                       --------                      --
    PT1                      {@{Value=abcd.Serverteam...     pt1.abcd.com              10.0.1.5
    PT2                      {@{Value=abcd.Serverteam...     pt2.abcd.com              10.0.1.33

    The better, more PowerShell, way to do this would be to use the pipeline.

    Something like that

    Get-VM tp* | Select Name,  @{N="Hostname";E={$_.Guest.Hostname}},  @{N="IP address";E={$_.Guest.IpAddress}},  @{N="Contact";E={
        Get-Annotation -Entity $_ -CustomAttribute "System Contact" |
        Select -ExpandProperty Value}} | Export-Csv c:\report.csv -NoTypeInformation -UseCulture
    
  • Reports on multiple virtual centers and export to CSV format

    Everyone,

    Does anyone know if possible a way for me to do the following in the following format.

    Requirements:

    (1) report on multiple virtual centers

    (2) export results to CSV or Excel with a title between each virtual Center

    (3) the need for Virtual Center Cluster belongs, name of the Cluster, host number of ESX and number of virtual machines. (Additional information can be added to the report later).

    It would be not so hard if I could just connect and report on all virtual centers and my results to export in this way.  However, each virtual server Center have a different purpose and that is how senior management wants to see the results.

    For example:

    VC3 VC1 and VC2 = service server environment

    VC4 and VC5 VC6 = service Workstation environments

    VC7 VC8 = environment of Cloud Computing Services

    What I would do is:

    (1) connect to the first 3 virtual centers and collect the above information.

    (2) I would like to create a title in the CSV or Excel named 'Standard Server environment summary'

    (3) then I would like to export these 4 columns with data for each cluster.

    Cluster is managed by this Virtual Center, the name of the Cluster, number # VM and ESX host

    I then unplug the 3 first virtual centres.

    Next

    (1) I would like to connect to the 3 next virtual centres

    2) add to the previous CSV or Excel with a title 'desktop environment summary.

    (3) export the same information as above in the CSV file

    Any help would be greatly appreciated.

    Try something like this

    $vcenters = @{}
    $vcenters["Server Environment"] = @("VC1","VC2","VC3")
    $vcenters["Workstation Environment"] = @("VC4","VC5","VC6")
    $vcenters["Cloud Environment"] = @("VC7","VC8")
    
    Set-PowerCLIConfiguration -DefaultVIServerMode Single -Confirm:$false | Out-Null
    $vcenters.GetEnumerator() | %{
      &{foreach($vc in $_.Value){
          $currentvc = Connect-VIServer -Server $vc      Get-Cluster -Server $currentvc | %{
            New-Object PSObject -Property @{
              "Cluster is managed by VC" = $currentvc.Name          Cluster = $_.Name          "# of ESX hosts" = @($_.ExtensionData.Host).Count          "# of VM" = Get-View $_.ExtensionData.Host -Server $currentvc |          %{@($_.Vm).Count} |          Measure-Object -Sum |          Select -ExpandProperty Sum        }
          }
        }} | Select "Cluster is managed by VC",Cluster,"# of ESX hosts","# of VM" |  Export-Xls -Path C:\report.xls -WorksheetName $_.Name  Disconnect-VIServer -Server $currentvc -Confirm:$false}
    

    You will have to render the Xls export function.

    Simplest is to include in the script with the code above.

    The name of the group is reflected in the name of the worksheet, having a separate line would be a little more difficult.

  • How to extract data from an arbitrary xml file and export it to a CSV friendly?

    Hallo,
    I am facing big problems in the use of XML files. I have a
    application that generates XML files with clusters containing arrays
    and scalars as in the example pasted below. My task is to
    Read it and export the data into a CSV document readable by a human.
    Since I do not know the actual content of the cluster, I need some sort
    Smart VI through the XML looking for berries
    and other data structures for export properly in the CSV file
    format (columns with headers).
    Thank you



    3


    6


    0



    1



    2



    3



    4



    5




    3.14159265358979



    Ciao

    Rather than to get the

    node, you can just go directly to the node since ' one that really interests you. Basically what it means to determine the elements of table how much you have, and it depends on if you have 1 or 2 knots . The rest is just of the child nodes and the next siblings. See attachment as a starting point. The attached XML file is a table 2D (change the .xml extension).

    Notes on the example:

    • I did not close properly references, so it's something you need to do.
    • It is limited to tables 1 d or 2D.
    • I suggest using a control path of the file to specify the input XML file and path of the file/folder control to specify the location of the output file.

  • A column value a comma, which leads to a column different while export to CSV file

    Hi all

    I have a few columns that will be built in the CSV file. The problem is in one of the column value of a comma in there. Thus, it creates a separate column two in CSv file.

    For example:

    Name of the column: description.

    Value: Bumpers, cushion

    But then that export in CSV file, it gives me bumper as a column and seat cushion in the second column.

    I'm using Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    Appreciate your help.

    Thank you

    Suresh

    Hello

    REPLACE (str

    , '"'

    , '"'

    )

    Returns a copy of the string str, but with all the ' "" ' changed substrigs in ' ' ' "

    This assumes that your front-end is not treat & like variable substitution marker.  If it is so, and -is your SQL * more escape character, then you can say

    REPLACE (str

    , '\"'

    , '"'

    )

  • Export to CSV problem...

    Hello

    I have a problem, hope I have explained it well.
    First of all, I have all report (SQL query) region with a silmple select (SELECT col1, col2 from table1).

    In this selection, I select the column which is a varchar2, a table.
    In some cases, the values in the column is for example 3-3' 2-2 "or 1-1'... etc.

    So I implements the integrated Apex for the export of data to CSV format:-report attributes-> export-> output CSV report activate: YES, Link label: export to CSV.

    When I click on the link 'Export to CSV', APEX exports to CSV and run my local excel to open this CSV... well...

    Well, the problem is that when I look in excel, he interpreted values such as: 2 Feb or March 3 or 1. Jan and so on... This is not true, of course.


    My question:
    Is it possible to get data excel for this column in a table, it is...
    Instead mar 3. I need to 3-3,... etc.


    Thank you very much...
    Zlatko

    Zlatko,

    I use this technique often to display zeros on the digital data defined as varchar2.

    Encode your column varchar2 like that and to preserve its format when exporting:

    SELECT "=" "| your_tbl.your_col | ' ' ' 'Date ' ' ' '.
    Of your_tbl

    In addition, you will need to select your date/varchar2 column twice in your SQL. Once the way you have it now and a second time as above. Then the report of two columns should be conditionally displayed, your old method on the report and the new method on your export.

    Under conditional display in the attributes column, place a Type of Condition of PL/SQL Expression of:
    INSTR (NVL(:REQUEST,'YABBADABBADO'), 'EXCEL') = 0
    INSTR (NVL(:REQUEST,'YABBADABBADO'), 'EXCEL')! = 0

    The first condition is your column of report and the latter is for your column of export.

    Jeff

  • Character grave zeros when exporting to Excel

    I have a model that once exported to Excel of the E-Business Suite, removes the leading zeros. We want these zeros to be there.

    For example, project number 000400 is SEGMENT1 of PA_PROJECTS_ALL seen in Word, it shows the full text string. When the user exports to Excel, it goes down three zeros and does is display 400.

    Is there a way to get around this?

    Thank you
    Rob

    It is not necessarily Excel text field. My Adviser on the link suggests putting it like that on the model:
    =""
    that is, adding quotes and sign of the equation. If you do this, Excel will treat as text and preserve the leading zeros.

  • SSRS 2012 export to CSV with no data by generating coma separated with an empty value

    I have a report that have no data due to parameter motor (both have true noheader configuration).

    In SSRS 2005 its generate empty csv file and for SSRS 2012 his record still generate with coma and an empty value, something like this:

    ,,,,

    Those that were generated by Server (SSRS 2005 and 2012 SSRS), tnot different heres in the rsreportserver.config file to make segment.

    If I exported the csv file to SQL Server Data Tools for Visual Studio 2012, it generated an empty file (which is correct).

    Anything I missed here?

    Just realized, its due to my 2012 SSRS is the RTM version and its due to SSRS bugs has been fixed on SP2 + CU3

    https://support.Microsoft.com/en-us/KB/3002049

  • Overall summary of environmental export to CSV (Free Edition)

    2 request free editions & other versions:

    1 Free Edition could would export info 'summary of global environment. file csv tab Explorer environment?

    2. Annex export these CSV files to the email and the UNC path

    Hi, Edward - you can do both of these points with the full paid version of Foglight for virtualization Standard Edition. If you click the upgrade option, it will allow the full functionality for 30 days. You can also download the full version here - http://www.quest.com/foglight-for-virtualization-standard-edition/

    Let me know if you need more info - thanks Danny

  • Leading zero is dropped after mapping

    Hello. In collaboration with FDMEE 11.1.2.3.700. File comes with several zeros for the dimension account. Have a script Jython to keep only the last six digits and that works very well. Some of the accounts have always properly leading zeros, such as 070000 and 041205, and I can see in the source account column in workbench. The accounts are then mapped, either by mapping explicit to manage sign flips or * to * for passthrough. Accounts that are explicitly mapped come more correctly: 070000 corresponds to the 070000. But accounts with zeros through map passthrough are declining the zero no significant: 041205 traverse * to * but as 41205.

    Thoughts? Don't think that we have had this problem before patching to 700.

    Eric

    Has changed the map of * to * to? À ??? and it works.

  • APEX 5.0 Export to CSV produces duplicate records

    Good day to you all:

    I use APEX 5.0, and I have a classic report that has a total number of lines of 274.  (274 documents also in SQL Developer).  However, when I export the report to CSV, duplicate records are produced and the total number of lines increases to 365.  Has anyone already known this before bug in APEX 5.0?  I tried to reproduce the report to a type of interactive, but I get the same results when you export to CSV.  Advice or guidance would be appreciated.  Thank you.

    Aqua

    Hey Aqua,

    If you are APEX 5.0.0 or 5.0.1? And which version of the database, you are on?

    There was a problem with CLOB (which are used for the download) in 5.0.0 running on specific versions of 11 GR 2. A fix is included in the 5.0.1 patch set.

    Concerning

    Patrick

  • I need an easy way to export a CSV of clips start in my calendar.

    I need to combine several clips and export in a single project or mp4 format with the name of the element and start time in a csv format. Establishment of markers for several music videos takes a long time and we won't be discussing chaining several clips that need a lot of editing - just combining and creating a matching file will not start times. I would like that my workflow as follows:

    1. to import the mp4 (file name = name of the clip)

    2. slide the timeline by chronological order of capture

    3. easily define marker chronological beginning of the clip (auto-magiquement if possible)

    4. export Media

    5. export the list of lots of markers (or metadata with the start of clip times)

    Fact

    Any help?

    Thank you

    I have a timeline with bars and tone, followed by three clips (00010.mov, 00011.mov, 00012.mov).

    I export an EDL, ensuring that the use Source file name is checked:

    He created the EDL, which is a text file (just change the extension to .edl in .txt file):

    and since it is a text file, I can import it into Excel in a delimited data file space:

    and I like in Excel the reformat.

    MtD

Maybe you are looking for