0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Guardium Data ProtectionでSQLServer 監視

0
Last updated at Posted at 2026-07-01

環境

Windows Server 2022
SQL Server 2022
Guardium 12.2.2

参照URL

評価版のインストール

image.png

image.png

image.png

image.png

image.png

image.png

image.png

GIMのインストール

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

STAPのインストール

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

STAPインストール後の確認

image.png

image.png

打鍵テスト

image.png

image.png

MS SQLにテストデータ投入

データベース名一覧表示

SELECT name
FROM sys.databases;

テストDB作成

CREATE DATABASE TestDB;

テストDB利用

USE TestDB;

テストテーブル作成

CREATE TABLE Employees (
    Id INT IDENTITY(1,1) PRIMARY KEY,
    Name NVARCHAR(50),
    Department NVARCHAR(50),
    Salary INT,
    CreatedAt DATETIME DEFAULT GETDATE()
);

テストテーブルにレコード追加

INSERT INTO Employees (Name, Department, Salary)
VALUES 
('Tanaka', 'Sales', 300000),
('Sato', 'Engineering', 400000),
('Suzuki', 'HR', 350000),
('Kobayashi', 'Sales', 320000);

作成したテーブルから情報を全部取得

SELECT * FROM Employees;

環境

Windows Server 2022
SQL Server 2016
Guardium 12.2.2

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?