web-dev-qa-db-ja.com

SQLクエリデータをExcelにエクスポートする

非常に大きなデータセットを返すクエリがあります。コピーして、通常Excelに貼り付けることはできません。 Excelシートに直接エクスポートする方法について、いくつかの研究を行ってきました。 Microsoft Server 2003を実行しているサーバーでSQL SERVER 2008を実行しています。Microsoft.Jet.OLEDB.4.0のデータプロバイダーとExcel 2007を使用しようとしています。例で見た。

INSERT INTO OPENDATASOURCE('Microsoft.Jet.OLEDB.4.0',
'Data Source=C:\Working\Book1.xlsx;Extended Properties=Excel 12.0;HDR=YES')
SELECT productid, price FROM dbo.product

しかし、これは機能していません、エラーメッセージが表示されています

「キーワード「SELECT」の近くの構文が正しくありません」。

誰がこれを行う方法についてのアイデアを持っていますか、おそらくより良いアプローチを持っていますか?

24
JBone

これがあなたが探しているものかどうかはわかりませんが、次のように結果をExcelにエクスポートできます:

結果ウィンドウで、左上のセルをクリックしてすべてのレコードを強調表示し、左上のセルを右クリックして[結果に名前を付けて保存]をクリックします。エクスポートオプションの1つはCSVです。

これも試してみてください:

INSERT INTO OPENROWSET 
   ('Microsoft.Jet.OLEDB.4.0', 
   'Excel 8.0;Database=c:\Test.xls;','SELECT productid, price FROM dbo.product')

最後に、データのエクスポートにSSIS(置換DTS)を使用する方法を検討できます。チュートリアルへのリンクは次のとおりです。

http://www.accelebrate.com/sql_training/ssis_2008_tutorial.htm

46
James Johnson

Excelにエクスポートするだけの場合は、データエクスポートウィザードを使用できます。データベースを右クリックして、「タスク」->「データのエクスポート」を選択します。

15
brian

私は同様の問題を抱えていましたが、ひねりを加えました-結果セットが1つのクエリからのものである場合、上記のソリューションは機能しましたが、私の状況では、結果をExcelにエクスポートする必要がある複数の個別の選択クエリがありました。以下は、name in句を実行できますが、説明するための単なる例です...

select a,b from Table_A where name = 'x'
select a,b from Table_A where name = 'y'
select a,b from Table_A where name = 'z'

ウィザードでは、1つのクエリからの結果をExcelにエクスポートできましたが、この場合、異なるクエリからのすべての結果はエクスポートできませんでした。

調査した結果、グリッドへの結果を無効にし、テキストへの結果を有効にできることがわかりました。そのため、Ctrl + Tを押してから、すべてのステートメントを実行します。これにより、結果がテキストファイルとして出力ウィンドウに表示されます。 Excelにインポートするために、テキストをタブ区切り形式に操作できます。

Ctrl + Shift + Fキーを押して、結果をファイルにエクスポートすることもできます。テキストエディターを使用して開き、Excelインポート用に操作できる.rptファイルとしてエクスポートします。

これが同様の問題を抱えている他の人に役立つことを願っています。

1
Prashanth

C =でこれを行う方法を探している人のために、私は次の方法を試し、dotnet core 2.0.3entity framework core 2.0.3で成功しました

最初にモデルクラスを作成します。

public class User
{  
    public string Name { get; set; }  
    public int Address { get; set; }  
    public int Zip { get; set; }  
    public string Gender { get; set; }  
} 

次に、 EPPlus Nugetパッケージ をインストールします。 (バージョン4.0.5を使用しましたが、おそらく他のバージョンでも動作します。)

Install-Package EPPlus -Version 4.0.5

Create ExcelExportHelperクラス。データセットをExcel行に変換するロジックが含まれます。このクラスには、モデルクラスまたはデータセットとの依存関係はありません

public class ExcelExportHelper
    {
        public static string ExcelContentType
        {
            get
            { return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; }
        }

        public static DataTable ListToDataTable<T>(List<T> data)
        {
            PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(T));
            DataTable dataTable = new DataTable();

            for (int i = 0; i < properties.Count; i++)
            {
                PropertyDescriptor property = properties[i];
                dataTable.Columns.Add(property.Name, Nullable.GetUnderlyingType(property.PropertyType) ?? property.PropertyType);
            }

            object[] values = new object[properties.Count];
            foreach (T item in data)
            {
                for (int i = 0; i < values.Length; i++)
                {
                    values[i] = properties[i].GetValue(item);
                }

                dataTable.Rows.Add(values);
            }
            return dataTable;
        }

        public static byte[] ExportExcel(DataTable dataTable, string heading = "", bool showSrNo = false, params string[] columnsToTake)
        {

            byte[] result = null;
            using (ExcelPackage package = new ExcelPackage())
            {
                ExcelWorksheet workSheet = package.Workbook.Worksheets.Add(String.Format("{0} Data", heading));
                int startRowFrom = String.IsNullOrEmpty(heading) ? 1 : 3;

                if (showSrNo)
                {
                    DataColumn dataColumn = dataTable.Columns.Add("#", typeof(int));
                    dataColumn.SetOrdinal(0);
                    int index = 1;
                    foreach (DataRow item in dataTable.Rows)
                    {
                        item[0] = index;
                        index++;
                    }
                }


                // add the content into the Excel file  
                workSheet.Cells["A" + startRowFrom].LoadFromDataTable(dataTable, true);

                // autofit width of cells with small content  
                int columnIndex = 1;
                foreach (DataColumn column in dataTable.Columns)
                {
                    int maxLength;
                    ExcelRange columnCells = workSheet.Cells[workSheet.Dimension.Start.Row, columnIndex, workSheet.Dimension.End.Row, columnIndex];
                    try
                    {
                        maxLength = columnCells.Max(cell => cell.Value.ToString().Count());
                    }
                    catch (Exception) //nishanc
                    {
                        maxLength = columnCells.Max(cell => (cell.Value +"").ToString().Length);
                    }

                    //workSheet.Column(columnIndex).AutoFit();
                    if (maxLength < 150)
                    {
                        //workSheet.Column(columnIndex).AutoFit();
                    }


                    columnIndex++;
                }

                // format header - bold, yellow on black  
                using (ExcelRange r = workSheet.Cells[startRowFrom, 1, startRowFrom, dataTable.Columns.Count])
                {
                    r.Style.Font.Color.SetColor(System.Drawing.Color.White);
                    r.Style.Font.Bold = true;
                    r.Style.Fill.PatternType = OfficeOpenXml.Style.ExcelFillStyle.Solid;
                    r.Style.Fill.BackgroundColor.SetColor(Color.Brown);
                }

                // format cells - add borders  
                using (ExcelRange r = workSheet.Cells[startRowFrom + 1, 1, startRowFrom + dataTable.Rows.Count, dataTable.Columns.Count])
                {
                    r.Style.Border.Top.Style = ExcelBorderStyle.Thin;
                    r.Style.Border.Bottom.Style = ExcelBorderStyle.Thin;
                    r.Style.Border.Left.Style = ExcelBorderStyle.Thin;
                    r.Style.Border.Right.Style = ExcelBorderStyle.Thin;

                    r.Style.Border.Top.Color.SetColor(System.Drawing.Color.Black);
                    r.Style.Border.Bottom.Color.SetColor(System.Drawing.Color.Black);
                    r.Style.Border.Left.Color.SetColor(System.Drawing.Color.Black);
                    r.Style.Border.Right.Color.SetColor(System.Drawing.Color.Black);
                }

                // removed ignored columns  
                for (int i = dataTable.Columns.Count - 1; i >= 0; i--)
                {
                    if (i == 0 && showSrNo)
                    {
                        continue;
                    }
                    if (!columnsToTake.Contains(dataTable.Columns[i].ColumnName))
                    {
                        workSheet.DeleteColumn(i + 1);
                    }
                }

                if (!String.IsNullOrEmpty(heading))
                {
                    workSheet.Cells["A1"].Value = heading;
                   // workSheet.Cells["A1"].Style.Font.Size = 20;

                    workSheet.InsertColumn(1, 1);
                    workSheet.InsertRow(1, 1);
                    workSheet.Column(1).Width = 10;
                }

                result = package.GetAsByteArray();
            }

            return result;
        }

        public static byte[] ExportExcel<T>(List<T> data, string Heading = "", bool showSlno = false, params string[] ColumnsToTake)
        {
            return ExportExcel(ListToDataTable<T>(data), Heading, showSlno, ColumnsToTake);
        }
    }

次に、おそらくコントローラーのメソッド用に、Excelファイルを生成する場所にこのメソッドを追加します。ストアドプロシージャのパラメーターも渡すことができます。 メソッドの戻り値の型はFileContentResultであることに注意してください。実行するクエリが何であれ、重要なのはListに結果が必要です

[HttpPost]
public async Task<FileContentResult> Create([Bind("Id,StartDate,EndDate")] GetReport getReport)
{
    DateTime startDate = getReport.StartDate;
    DateTime endDate = getReport.EndDate;

    // call the stored procedure and store dataset in a List.
    List<User> users = _context.Reports.FromSql("exec dbo.SP_GetEmpReport @start={0}, @end={1}", startDate, endDate).ToList();
    //set custome column names
    string[] columns = { "Name", "Address", "Zip", "Gender"};
    byte[] filecontent = ExcelExportHelper.ExportExcel(users, "Users", true, columns);
    // set file name.
    return File(filecontent, ExcelExportHelper.ExcelContentType, "Report.xlsx"); 
}

詳細はこちらをご覧ください こちら

0