Author: theerayuth.p

  • Stored Procedure sp_MSForEachTable จัดการได้ทุก Table ใน Database

    ใน MS SQL Server มี Stored Procedure ตัวหนึ่งที่มีประโยชย์ในการจะทำอะไรกับ Table ทุก Table ใน Database
    ตัวอย่างการใช้ Stored Procedure sp_MSForEachTable

    • นับจำนวน record ทั้งหมดของทุก Table ใน Database

    EXEC sp_MSForEachTable ‘SELECT ”?”, COUNT(*) FROM ?’
    หรือ
    sp_MSforeachtable @command1=” declare @tmp int select @tmp=count(*) from ? Print ‘Table Name 😕 |’ + convert(nvarchar, @tmp) ”

    • Rebuilding indexes on every table in the database.

    EXEC sp_MSforeachtable @command1=”print ‘Rebuilding indexes for ?’ ALTER INDEX ALL ON ? REBUILD WITH (FILLFACTOR = 90)”
    GO

    • Reorganizing indexes on every table in the database

    EXEC sp_MSforeachtable @command1=”print ‘Reorganizing indexes for ?’ ALTER INDEX ALL ON ? REORGANIZE”
    GO

  • c# string concatenations

    การต่อ String ใน C# ทำได้  4 แบบดังนี้

    1. ใช้เครื่องหมาย plus (+) แบบยอดนิยมใช้งานกันบ่อยๆ.
      string txt = “aaa”+”bbb”+”ccc”;
    2. ใช้ string.Concat() สะดวกับการต่อ list หรือ array มาก.
      string [] s = { “ManU”, “Liverpool”, “Asenal” };
      Console.WriteLine(string.Concat(s));
    3. ใช้ string.Format() เหมาะสำหรับต่อ string และจัดการรูปแบบการแสดงผลด้วยไปในคราวเดียวกันเลย.
      string value1 = “Hello World!”;
      int value2 = 2557;
      DateTime value3 = DateTime.Now();
      string result = string.Format(“{0}: {1:0.0} – {2:dd-mm-yyyy}”, value1, value2, value3);
    4. ใช้ stringBuilder เหมาะสำหรับการต่อ sting ที่มีปริมาณมากๆจะทำงานได้เร็วประมาณ 1000 ขึ้นไป.
      StringBuilder returnNumber = new StringBuilder(1500);
      for(int i = 0; i<1500; i++)
      {
      returnNumber.Append(i.ToString());
      }

    ถ้ามีเวลาจะมาขยายเรื่องนี้ในหัวข้อการทดสอบ Performance จะมาลองดูว่าแบบไหนเร็วกว่ากันไปซักเท่าไร ตอนนี้เอาเท่านี้ไปก่อนแล้วกันครับ

  • SQL Server All about DataTime data type

    Function GETDATE() AND SYSTEMDATETIME()

    • GETDATE แสดงข้อมูลระดับ miliseconds
    • SYSDATETIME แสดงข้อมูลระดับ nanoseconds.

    ::select GETDATE() >> “2013-11-14 10:25:24.337”
    ::select SYSDATETIME() >> “2013-11-14 10:26:14.4002569”

    การเปรียบเทียบ DataTime data column จะมีปัญหาให้ปวดหัวทุกที่จะทำอย่างไร ถึงจะสะดวกและ Performance ดีที่สุด ตัวอย่างทางเลือกที่ผมใช้งานครับ Convert ให้เป็น INT ไปเลยครับ ดังตัวอย่างนี้ครับ

    cast(convert(char(8), d.DocCreateDate, 112) as int) between 20130601 and 20131031

    GETDATE สามารบวก ลบ วันได้
    ::select GETDATE() + 10 >> เป็นการดึงวันที่ปัจจุบันแล้วบวกไปอีก 10 วัน
    การประยุกษ์ เช่นต้องการหาข้อมูลที่วันเวลาปัจจุบันเป็นฐานการดึงข้อมูล เป็นการ Filter แบบ Dynamic Filter เช่น select Column between getdate() – 100 and getdate + 100

  • Magic table for trigger in SQL Server

    ใน SQL Server ในการ insert ,Update and delete ข้อมูลต่างๆที่เกิดขึ้นจะถูกเก็บไว้ใน magic table อยู่ 2 table

    คือ inserted,deleted tables

    inserted table จะเก็บข้อมูล recordที่ถูกดำเนินการ และจะเก็บข้อมุลหลังจากการ Update เสร็จสิ้น

    Deleted table จะเก็บข้อมูล record ที่มีการลบไปล่าสุดและเก็บข้อมุลเก่าก่อนการ Update Record ไว้

    ในการเขียน Trigger สำหรับ table ใน SQL Server สำหรับการ Insert,delete จะไม่มีปัญหาอะไรดึงข้อมูล

    มาตรวจสอบจาก 2 table นั้นโดยตรง แต่ถ้าเป็นการ Update ก็จะต้องเลือกให้ดีว่าจะเอาข้อมูลอะไร ก่อนหรือหลังการ

    Update มาเก็บเป็น log นะครับ

    ตัวอย่างครับ

     

    CREATE TRIGGER [dbo].[LogTrigger]
    ON [dbo].[zzz]
    AFTER DELETE,UPDATE
    AS
    BEGIN
    SET NOCOUNT ON;

    if exists(select * from inserted)
        begin
                  insert into log_OptFac
                  select *,GETDATE(),’U’ from deleted
         end
    else
         begin
                   insert into log_OptFac
                   select *,GETDATE(),’D’ from deleted
         end
    END