0

最新の日付を保持しながら、最も適切な日付よりも古いテーブル内のすべての行を削除できる SQL ステートメントを作成しようとしています。これは、私が取り組んでいるプロジェクトに使用されています。MS Access データベースからデータを取得し、そのデータを Oracle テーブルにドラッグしています。このプログラムは、Visual Studio 2008 C# で作成している Windows サービス アプリケーションに組み込まれているため、定期的に実行して最新の情報を取得できます。

コードに追加するものをさらにいくつか把握する必要があります。

  1. 私のOracleテーブルからそれらの古い行を削除する方法を見つけてください

  2. サービスを 1 時間または 2 時間ごとに頻繁に実行するように指示する

  3. 接続のエラー、ファイルの欠落などを確認します。

私の主な質問とその他の手順についての助けをいただければ幸いです。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Data.OracleClient;
using System.Data.SqlClient;
using System.IO;
using System.Data.Odbc;

namespace GasReportservice
{
  public partial class GasReportService : ServiceBase
  {
    public GasReportService()
    {
        InitializeComponent();
        if (!System.Diagnostics.EventLog.SourceExists("MySource"))
        {
            System.Diagnostics.EventLog.CreateEventSource("MySource", "MyNewLog");
        }
        eventLog1.Source = "MySource";
        eventLog1.Log = "MyNewLog";
    }
    protected override void OnStart(string[] args)
    {
        eventLog1.WriteEntry("In OnStart");
        string connectionString = "Dsn=Gas_meter";
        string col0 = "";
        string col1 = "";
        string col2 = "";
        string col3 = "";
        string col4 = "";
        string col5 = "";
        string col6 = "";
        string col7 = "";
        string col8 = "";
        OdbcConnection DbConnection = new OdbcConnection(connectionString);
        OdbcCommand DbCommand = DbConnection.CreateCommand();
        DbConnection.Open();
        DbCommand.CommandText = "SELECT DateTime, S1Flow, S2Flow, S3Flow, S4Flow, S1FlowTotal, S2FlowTotal, S3FlowTotal, S4FlowTotal FROM CommonStation WHERE Format(DateTime, 'mm/dd/yyyy') >=(select Format(max(DateTime),'mm/dd/yyyy') from CommonStation)";
        OdbcDataReader DbReader = DbCommand.ExecuteReader();
        int fCount = DbReader.FieldCount;


        /*
        for (int i = 0; i < fCount; i++)
        {
                String fName = DbReader.GetName(i);
                Console.Write(fName + "\t");
        }
        */

        try
        {
            while (DbReader.Read())
            {
                string connString = "DSN=Gas_meter_proj;Uid=cm;Pwd=cmdev123";
                OdbcConnection conn = new OdbcConnection(connString);
                string sqlins = @"insert into Commonstation(CommStatDate_Time, S1_Flow, S2_Flow, S3_Flow, S4_Flow, S1_Flow_Total, S2_Flow_Total, S3_Flow_Total, S4_Flow_Total ) values (to_date('" + col0 + "', 'MM/DD/YYYY HH:MI:SS AM' ),to_number('" + col1 + "'), to_number('" + col2 + "'), to_number('" + col3 + "'), to_number('" + col4 + "'),to_number('" + col5 + "'),to_number('" + col6 + "'),to_number('" + col7 + "'),to_number('" + col8 + "'))";
                OdbcCommand cmdnon = new OdbcCommand(sqlins, conn);
                cmdnon.Parameters.Add(col0, OdbcType.DateTime);
                cmdnon.Parameters.Add(col1, OdbcType.Numeric);
                cmdnon.Parameters.Add(col2, OdbcType.Numeric);
                cmdnon.Parameters.Add(col3, OdbcType.Numeric);
                cmdnon.Parameters.Add(col4, OdbcType.Numeric);
                cmdnon.Parameters.Add(col5, OdbcType.Numeric);
                cmdnon.Parameters.Add(col6, OdbcType.Numeric);
                cmdnon.Parameters.Add(col7, OdbcType.Numeric);
                cmdnon.Parameters.Add(col8, OdbcType.Numeric);
                conn.Open();
                col0 = DbReader["DateTime"].ToString();
                col1 = DbReader["S1Flow"].ToString();
                col2 = DbReader["S2Flow"].ToString();
                col3 = DbReader["S3Flow"].ToString();
                col4 = DbReader["S4Flow"].ToString();
                col5 = DbReader["S1FlowTotal"].ToString();
                col6 = DbReader["S2FlowTotal"].ToString();
                col7 = DbReader["S3FlowTotal"].ToString();
                col8 = DbReader["S4FlowTotal"].ToString();

                int rowsAffected = cmdnon.ExecuteNonQuery();

                conn.Close();
                Console.WriteLine(rowsAffected);                                   
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.ToString());
        }
        finally
        {
            DbReader.Close();
            DbCommand.Dispose();
            DbConnection.Close();
        }

    }

    protected override void OnContinue()
    {
        eventLog1.WriteEntry("My service has resumed action.");
    }

    protected override void OnPause()
    {
        eventLog1.WriteEntry("My service has been paused.");
    } 

    protected override void OnStop()
    {
        eventLog1.WriteEntry("My service has been stopped.");
    }
  }
}
4

1 に答える 1

0

これは基本的な SQL です。

DELETE FROM <yourtable> 
  WHERE <yourdatefield> < (SELECT Max(<yourdatefield>) FROM <yourtable>)

他の点については、別の質問にする必要があります。それらは完全に別のトピックであり、このトピックとは別に回答 (および検索可能) する必要があります。

于 2011-05-05T17:48:29.620 に答える