Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

SQL Server 2025 データベースの作成手順と設定内容

0
Posted at

はじめに

備忘録です。インストールした SQL Server 2025 にデータベースを作成します。

環境

  • SQL Server 2025 Enterprise Developer
  • SQL Server Management Studio (SSMS) 22

データベースの作成

オブジェクトエクスプローラーのデータベースを右クリックし「新しいデータベース(N)...」を選択します。

データベース名を入力します。今回は testdb にしました。

オプションのページに移動し、以下の内容で設定します。照合順序や復旧モデルは要件次第かと思いますが、自分はこのパターンが多かったです。設定後 OK ボタンをクリックして、データベースを作成します。

設定項目 設定内容
照合順序 Japanese_CS_AS_KS_WS
復旧モデル 完全
Is Read Committed Snapshot On True
スナップショット分離を許可 True

補足
照合順序を <規定> にした場合、インスタンスのインストール時に設定した値で作成されます。設定値はサーバーのプロパティで確認できます。

testdb が作成されました。

おわりに

気付きがあれば、随時追記します。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?