Pandoraの開発日記

~日々の開発の中で悩んでいる問題や簡単なTips~

目次

Blog 利用状況

書庫

日記カテゴリ

コミュニテイサイト

過去日記

SQL Server Express をコマンドラインからのインストールについて

ご存知の通り Windows Vista では MSDE2000 のサポートがなくなり、Windows Vistaで動作する多くのデータベースアプリケーションでは、SQL Server Express を使用するのではないかと思います。

SQL Server Express GUIインストールもよくできているので、GUIインストールをそのまま使用するかも知れませんが、色々な設定ができるようになっているので、一般ユーザーには少し難しいかもしれません。

そこで、あらかじめ用意しておいた値を使用して SQL Server Express をインストールする方法を書き留めておきます。

1.SQL Server Express SP2 (SQLEXPR_JPN.EXE)を下記のサイトからダウンロードします。

  http://www.microsoft.com/downloads/details.aspx?FamilyId=31711D5D-725C-4AFA-9D65-E4465CDFF1E7&displaylang=ja

2.コマンドラインを指定するために、 SQLEXPR_JPN.EXE を解凍します。

  SQLEXPR_JPN.EXE -x で解凍します。(C:\work\ExpressSP2\に展開したとします。)

3.あらかじめ用意する値を Setup.ini に記述します。

  使用可能なパラメータは、たくさんありますので、詳細は下記のサイトを参照して下さい。

  http://msdn2.microsoft.com/ja-jp/library/ms144259.aspx

  ここでは、パラメータ INSTANCENAME、DISABLENETWORKPROTOCOLS、ADDLOCAL を

  使用しています。(ADDLOCALは省略できません。)

      INSTANCENAME:使用するインスタンス名を指定します。

  DISABLENETWORKPROTOCOLS:ネットワークプロトコルを指定します。
    0 : 共有メモリ=On 名前付きパイプ=On  TCP/IP = On
       1 : 共有メモリ=On 名前付きパイプ=Off  TCP/IP = Off
       2 : 共有メモリ=On 名前付きパイプ=Off  TCP/IP = On

     ADDLOCAL:インストールするコンポーネントを指定します。
        SQL_Engine:SQL Server Database Services
        SQL_Data_Files :SQL Server データ ファイル
        SQL_Replication :レプリケーション

 例)
    [Options]
  INSTANCENAME=使用するインスタンス名
  DISABLENETWORKPROTOCOLS=2
     ADDLOCAL=SQL_Engine,SQL_Data_Files

4.インストールの実行を行います。

  C:\work\ExpressSP2\setup.exe /qb /settings C:\work\ExpressSP2\setup.ini /Lv* C:\work\log.txt

投稿日時 : 2007年4月19日 18:49

コメントを追加

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/19 19:04 とっちゃん

こ、これは...
おいらにネタにしろと?w<ちがうから!

そういえば、中身チェックしたことないなぁ...
なんせ、DBスキル 1くまー未満なんでw<関係ねーよ!

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/20 10:39 Pandora

どうぞどうぞネタにして下さい。

ぜひ、インストーラ作成についての講座をお願いします。

絶対、参加しますので....

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/20 11:03 ちゃっぴ

Hardware が推奨要件に満たない場合、install できない問題は解決したのかな?

Memory 512MB 以下で install できないとか。

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/20 12:27 とっちゃん

>インストーラ作成についての講座
こっちは、11月頃の予定w
どっぷり一日、インストーラデイでは無いはずだけどw
#場所の都合で土曜日とかなら、それもありか?
#ってきっついなぁw<資料作りがw

>Hardware が推奨要件に満たない場合、install できない問題は解決したのかな?

これってば、推奨じゃなくて必要じゃなかった?

ま、ORCA(Orcas ではないw)の使い方講座とかも
やって見たいところなんだよねぇw<さりげに需要がw

作っておぼえる、WindowsInstaller の仕組みとかいって
ORCA モドキのmsiビュワーとかつくると面白いんだけどねww
#原稿起こせませんってww

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/20 13:05 Pandora

>Hardware が推奨要件に満たない場合、install できな
>い問題は解決したのかな?

 RAM容量が最小要件または推奨要件を満たしていない場合
 は、警告になりますが、インストールは中止されません。
 が、/qb の場合は、警告メッセージが表示されないので、
 アプリケーションのインストーラ側でチェックする必要が
 あるかもしれませんね。

 詳細は、下記のサイト参照して下さい。
http://msdn2.microsoft.com/ja-jp/library/ms143506.aspx

>Memory 512MB 以下で install できないとか。

 SQL Server Express の最小 Memory は 192MB になります。

>こっちは、11月頃の予定w
>どっぷり一日、インストーラデイでは無いはずだけどw

 もう決定しているのですか?
 楽しみです。(*^_^*)

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/20 16:50 ちゃっぴ

>  RAM容量が最小要件または推奨要件を満たしていない場合
> は、警告になりますが、インストールは中止されません。
>  が、/qb の場合は、警告メッセージが表示されないので、
>  アプリケーションのインストーラ側でチェックする必要が
>  あるかもしれませんね。

/qn の話です。

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/20 17:10 Pandora

そうですね。
/qn も同様にメッセージはでないですね。

# re: SQL Server Express をコマンドラインからのインストールについて 2007/04/20 19:45 とっちゃん

>もう決定しているのですか?
いちおうw

今年の東京は奇数月は平日夜のSpecialDeepNight
偶数月はどっぷり一日いろんな日w
という感じです。

ネタは。。。まだ先なのでなんもきまってませんw
決まってるのは、おいらがやるというだけwww

# love bracciale cartier copia 2017/11/11 6:04 dehrywvyefsfoznzcwsbpl@hotmal.com

I trust the author that we need to share the data we tend to gain!

# What i do not understood is if truth be told how you're now not really a lot more neatly-appreciated than you may be now. You're very intelligent. You recognize therefore significantly with regards to this topic, produced me personally imagine it from a 2019/05/13 1:08 What i do not understood is if truth be told how y

What i do not understood is if truth be told how you're now not really a
lot more neatly-appreciated than you may be now.
You're very intelligent. You recognize therefore significantly with regards to this topic, produced me personally imagine it
from a lot of varied angles. Its like men and women aren't involved unless it's something to do with
Woman gaga! Your personal stuffs great. All the time care for
it up!

# Hello, i believe that i saw you visited my website so i got here to go back the desire?.I am trying to find issues to enhance my web site!I suppose its good enough to use some of your ideas!! 2019/07/23 20:26 Hello, i believe that i saw you visited my website

Hello, i believe that i saw you visited my website so i got here to go back the desire?.I
am trying to find issues to enhance my web site!I suppose its good
enough to use some of your ideas!!

# Hello, i believe that i saw you visited my website so i got here to go back the desire?.I am trying to find issues to enhance my web site!I suppose its good enough to use some of your ideas!! 2019/07/23 20:27 Hello, i believe that i saw you visited my website

Hello, i believe that i saw you visited my website so i got here to go back the desire?.I
am trying to find issues to enhance my web site!I suppose its good
enough to use some of your ideas!!

# Hello, i believe that i saw you visited my website so i got here to go back the desire?.I am trying to find issues to enhance my web site!I suppose its good enough to use some of your ideas!! 2019/07/23 20:28 Hello, i believe that i saw you visited my website

Hello, i believe that i saw you visited my website so i got here to go back the desire?.I
am trying to find issues to enhance my web site!I suppose its good
enough to use some of your ideas!!

# Hello, i believe that i saw you visited my website so i got here to go back the desire?.I am trying to find issues to enhance my web site!I suppose its good enough to use some of your ideas!! 2019/07/23 20:29 Hello, i believe that i saw you visited my website

Hello, i believe that i saw you visited my website so i got here to go back the desire?.I
am trying to find issues to enhance my web site!I suppose its good
enough to use some of your ideas!!

# Hi there! Someone in my Facebook group shared this website with us so I came to give it a look. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers! Superb blog and wonderful style and design. 2019/09/05 4:06 Hi there! Someone in my Facebook group shared this

Hi there! Someone in my Facebook group shared this website with us so I
came to give it a look. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers!
Superb blog and wonderful style and design.

# I am regular visitor, how are you everybody? This paragraph posted at this web page is in fact fastidious. http://www.renpet.net/wiki/index.php/Twosday_2_22_22_Bauhaus_T_Shirts_And_Clothing https://www.vaultofweird.com/index.php?title=Taco_Twosday_Adva 2022/01/16 1:56 I am regular visitor, how are you everybody? This

I am regular visitor, how are you everybody? This
paragraph posted at this web page is in fact fastidious.


http://www.renpet.net/wiki/index.php/Twosday_2_22_22_Bauhaus_T_Shirts_And_Clothing
https://www.vaultofweird.com/index.php?title=Taco_Twosday_Advantages_Of_Having_Full_Sleeve_Girls_s_T-Shirt_-_Trend
https://www.wiki.webjardiner.com/index.php?title=Taco_Twosday_Shirt_Shirts_For_Teen_Girls_For_Business:_The_Foundations_Are_Made_To_Be_Damaged
https://peace.myserenity.net/doku.php?id=twosday_p_ime_10_mate_nity_shi_ts_accounts_to_follow_on_twitte
http://www.kalopedia.online/index.php/Twosday_Shirt_Get_Humorous_T_Shirts_For_Men_Online_-_Clothes
http://sciwiki.io/index.php?title=Twosday_T_Shirt_If_You_Do_Not_Polo_Shirts_For_Men_Now_You_May_Hate_Your_Self_Later

# I don't even know how I ended up right here, however I thought this publish was good. I don't know who you are however certainly you are going to a famous blogger if you happen to are not already. Cheers! http://veffort.us/wiki/index.php/RIP_Queen_Eliz 2022/09/11 15:44 I don't even know how I ended up right here, howev

I don't even know how I ended up right here, however I thought this publish was good.
I don't know who you are however certainly you are going to a famous blogger if you happen to are not already.

Cheers!

http://veffort.us/wiki/index.php/RIP_Queen_Elizabeth
http://www.merkadobee.com/user/profile/450108
https://bmgpro.in/user/profile/12217
https://www.india.mycityads.xyz/diseases-conditions/did-queen-elizabeth-die.html
https://cnvk.in/index.php?page=user&action=pub_profile&id=41234
https://vanburg.com/mw19/index.php/Benutzer:JennieDelFabbro

# Cautions. Get warning information here.
https://edonlinefast.com
Long-Term Effects. Prescription Drug Information, Interactions & Side. 2023/02/17 16:46 EdPills

Cautions. Get warning information here.
https://edonlinefast.com
Long-Term Effects. Prescription Drug Information, Interactions & Side.

# Generic Name. drug information and news for professionals and consumers.
https://edonlinefast.com
Prescription Drug Information, Interactions & Side. Everything what you want to know about pills. 2023/02/18 0:53 EdOnline

Generic Name. drug information and news for professionals and consumers.
https://edonlinefast.com
Prescription Drug Information, Interactions & Side. Everything what you want to know about pills.

# order doxycycline - https://doxycyclinesale.pro/# 2023/04/22 4:13 Doxycycline

order doxycycline - https://doxycyclinesale.pro/#

# 15 mg prednisone daily - https://prednisonesale.pro/# 2023/04/22 15:18 Prednisone

15 mg prednisone daily - https://prednisonesale.pro/#

# allergy medications over-the-counter https://overthecounter.pro/# 2023/05/08 22:53 OtcJikoliuj

allergy medications over-the-counter https://overthecounter.pro/#

# best ed pill: https://edpills.pro/# 2023/05/16 3:28 EdPillsPro

best ed pill: https://edpills.pro/#

# over the counter prednisone cheap https://prednisonepills.pro/# - can you buy prednisone over the counter in canada 2023/06/05 5:25 Prednisone

over the counter prednisone cheap https://prednisonepills.pro/# - can you buy prednisone over the counter in canada

# what is the best ed pill https://edpill.pro/# - online ed pills 2023/06/27 14:43 EdPills

what is the best ed pill https://edpill.pro/# - online ed pills

# paxlovid pill https://paxlovid.pro/# - paxlovid covid 2023/07/03 4:07 Paxlovid

paxlovid pill https://paxlovid.pro/# - paxlovid covid

# Paxlovid buy online https://paxlovid.store/
Paxlovid buy online 2023/07/13 21:48 Paxlovid

Paxlovid buy online https://paxlovid.store/
Paxlovid buy online

# paxlovid pill https://paxlovid.life/# Paxlovid buy online 2023/07/26 6:24 Paxlovid

paxlovid pill https://paxlovid.life/# Paxlovid buy online

# Cytotec 200mcg price https://cytotec.ink/# - cytotec pills online 2023/07/27 1:21 PillsFree

Cytotec 200mcg price https://cytotec.ink/# - cytotec pills online

# versandapotheke 2023/09/26 14:41 Williamreomo

http://onlineapotheke.tech/# online apotheke gГ?nstig
online apotheke preisvergleich

# versandapotheke deutschland 2023/09/27 1:57 Williamreomo

https://onlineapotheke.tech/# gГ?nstige online apotheke
online apotheke gГ?nstig

# internet apotheke 2023/09/27 2:29 Williamreomo

http://onlineapotheke.tech/# online apotheke gГ?nstig
online apotheke deutschland

# п»їonline apotheke 2023/09/27 3:20 Williamreomo

https://onlineapotheke.tech/# gГ?nstige online apotheke
versandapotheke deutschland

# online apotheke gГјnstig 2023/09/27 5:06 Williamreomo

http://onlineapotheke.tech/# online apotheke versandkostenfrei
internet apotheke

# gГјnstige online apotheke 2023/09/27 8:05 Williamreomo

https://onlineapotheke.tech/# online apotheke gГ?nstig
online apotheke gГ?nstig

# п»їonline apotheke 2023/09/27 10:54 Williamreomo

http://onlineapotheke.tech/# gГ?nstige online apotheke
internet apotheke

# farmacia online piГ№ conveniente 2023/09/27 17:14 Rickeyrof

acheter sildenafil 100mg sans ordonnance

# canadian rx store 2023/10/16 13:04 Dannyhealm

I appreciate their late hours for those unexpected needs. http://mexicanpharmonline.shop/# mexican pharmaceuticals online

# safe canadian pharmacies online 2023/10/16 17:35 Dannyhealm

Providing international caliber services consistently. https://mexicanpharmonline.shop/# mexican border pharmacies shipping to usa

# canadian pills online 2023/10/16 17:56 Dannyhealm

Their international insights have benefited me greatly. http://mexicanpharmonline.shop/# pharmacies in mexico that ship to usa

# mexico drug store online 2023/10/17 2:37 Dannyhealm

The pharmacists always take the time to answer my questions. https://mexicanpharmonline.com/# reputable mexican pharmacies online

# canada drug center promo code 2023/10/17 8:38 Dannyhealm

Their staff is always eager to help and assist. https://mexicanpharmonline.com/# mexican border pharmacies shipping to usa

# how to buy prescriptions from canada safely 2023/10/17 23:56 Dannyhealm

Their international supply chain ensures no medication shortages. http://mexicanpharmonline.shop/# reputable mexican pharmacies online

# pharm store canada 2023/10/18 1:39 Dannyhealm

Their global presence never compromises on quality. http://mexicanpharmonline.shop/# reputable mexican pharmacies online

# canada pharmcy 2023/10/18 16:07 Dannyhealm

Their international collaborations benefit patients immensely. https://mexicanpharmonline.shop/# mexico drug stores pharmacies

# canadian prescription prices 2023/10/18 16:42 Dannyhealm

A place where customer health is the top priority. https://mexicanpharmonline.com/# mexico drug stores pharmacies

# mexican mail order pharmacies 2023/11/16 1:28 DavidFap

https://mexicopharm.shop/# reputable mexican pharmacies online

# cure ed 2023/11/21 3:21 WilliamApomb

http://sildenafil.win/# sildenafil over the counter usa

# ed medications list 2023/11/22 15:26 WilliamApomb

https://edpills.monster/# ed pills gnc

# buy doxycycline 100mg https://doxycycline.forum/ doxycycline generic 2023/11/25 13:19 Doxycycline

buy doxycycline 100mg https://doxycycline.forum/ doxycycline generic

# sweet bonanza siteleri https://sweetbonanza.bid/ - sweet bonanza slot
2024/03/27 19:36 Bonanzaj

sweet bonanza siteleri https://sweetbonanza.bid/ - sweet bonanza slot

# pin up bet: https://pinupgiris.fun/ aviator pin up
2024/03/28 4:58 GirisUp

pin up bet: https://pinupgiris.fun/ aviator pin up

# cytotec buy online usa https://cytotec.club/ buy cytotec online 2024/04/27 18:57 Cytotec

cytotec buy online usa https://cytotec.club/ buy cytotec online

タイトル
名前
URL
コメント