sql >> Databáze >  >> RDS >> Sqlserver

Chyba importu souboru CSV:Hodnota sloupce obsahující oddělovač sloupců

Slovo varování:Nejsem běžný kodér C#.

Ale každopádně tento kód dělá následující:

Otevře se soubor s názvem C:\Input.TXT

Prohledává každý řádek. Pokud má řádek více než 5 čárek, odstraní všechny čárky navíc z třetího posledního pole (poznámky)

Výsledek zapíše do C:\Output.TXT – to je ten, který musíte skutečně importovat

Je možné provést mnoho vylepšení:

  • Získejte cesty k souborům od správců připojení
  • Ošetření chyb
  • Zkušený programátor v C# by to pravděpodobně mohl udělat v kódu hlaf

Mějte na paměti, že váš balíček bude potřebovat přístup pro zápis do příslušné složky

public void Main()
{
    // Search the file and remove extra commas from the third last field
    // Extended from code at
    // http://stackoverflow.com/questions/1915632/open-a-file-and-replace-strings-in-c-sharp
    // Nick McDermaid        

    string sInputLine;
    string sOutputLine;
    string sDelimiter = ",";
    String[] sData;
    int iIndex;

    // open the file for read
    using (System.IO.FileStream inputStream = File.OpenRead("C:\\Input.txt"))
    {
        using (StreamReader inputReader = new StreamReader(inputStream))
        {
            // open the output file
            using (StreamWriter outputWriter = File.AppendText("C:\\Output.txt"))
            {
                // Read each line
                while (null != (sInputLine = inputReader.ReadLine()))
                {
                    // Grab each field out
                    sData = sInputLine.Split(sDelimiter[0]);
                    if (sData.Length <= 6)
                    {
                        // 6 or less fields - just echo it out
                        sOutputLine = sInputLine;
                    }
                    else
                    {
                        // line has more than 6 pieces 
                        // We assume all of the extra commas are in the notes field                                

                        // Put the first three fields together
                        sOutputLine =
                            sData[0] + sDelimiter +
                            sData[1] + sDelimiter +
                            sData[2] + sDelimiter;

                        // Put the middle notes fields together, excluding the delimiter
                        for (iIndex=3; iIndex <= sData.Length - 3; iIndex++)
                        {
                            sOutputLine = sOutputLine + sData[iIndex] + " ";
                        }

                        // Tack on the last two fields
                        sOutputLine = sOutputLine +
                            sDelimiter + sData[sData.Length - 2] +
                            sDelimiter + sData[sData.Length - 1];


                    }

                    // We've evaulted the correct line now write it out
                    outputWriter.WriteLine(sOutputLine);
                }
            }
        }
    }


    Dts.TaskResult = (int)Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success;
}


  1. Jak přejít na nižší verzi/mít předchozí verzi Postgres DB v Postgres.app

  2. Detekce po sobě jdoucích položek splňujících určitá kritéria v časové řadě

  3. Po provedení QoQ nedostává požadovaný výstup

  4. Řešení v mysql pro částečný index nebo filtrovaný index?