AdventureWorks2008 Database Sample
-
30 Januari 2012 3:31
I have the same issue as has been discussed regarding the installation of the AdventureWorks2008 database.I am working through the self-study kit for certification in SQL 2008 BIDS (70-448). My problem is that I can install the AdventureWorksdw2008 database but the only other database that is available is AdventureWorks, not AdventureWorks2008. I presume there is a difference between AdventureWorks and AdventureWorks2008. I tried the exercises in the book with AdventureWorks but it does not work.
I read some of the other comments posted. Since I have already installed the sample SQL 2008 database, I tried to reinstall it to make sure the Full-Text Search is checked. When I get to the page that shows the installation options I can see that Full-Text-Search is already checked. If I try to proceed through the screen I get an error saying that I need to choose the options, but they are grayed out and I can't check any of them. Do I need to uninstall the SQL 2008 database and then re-install from scratch?
I did install a second instance of SQL 2008 and I made sure that Full-Text Search was checked. If I install the sample databases using the second instance, I still see no AdventureWorks2008 on the list of databases.
Thanks,Carlos_En
PS - OK, I got it figured out. There is a bug in Vista that shows the Full-Text-Search checkbox checked even though Full-Text-Search is not enabled. There is a solution found at-
http://msftdbprodsamples.codeplex.com/wikipage?title=Database%20Installer%20Help
Here are the steps.
To confirm that filestream is actually enabled as a running value (instead of a configured value), you can run this query:
SELECT SERVERPROPERTY ('FilestreamConfiguredLevel'),SERVERPROPERTY ('FilestreamEffectiveLevel');
If the values return are 0, filestream is not enabled.
Here's how to fix this.- Log on to the machine with an administrator account.
- Run SQL Server Configuration Manager as administrator. (Right-click Configuration Manager and select Run as administrator).
- From Configuration Manager, right-click the SQLServer(SQLExpress) instance (or the name of your Express instance if you didn't use the default name) and selected Properties.
- Click the Filestream tab and check the box for Enable Filestream For Transact-SQL access. You can check or skip the other check boxes, they're not required.
- Run SQL Server Management Studio as administrator (Right-click SQL Server Management Studio and select Run as administrator).
- Click New Query and in the query editor run the following code:
EXEC sp_configure filestream_access_level, 1
RECONFIGURE
It will prompt you to run RECONFIGURE again. Select the RECONFIGURE statement and click Execute.
Run the SELECT SERVERPROPTY statement again. It should return the value 1 in both columns.I FEEL A LOT BETTER NOW!
- Diedit oleh CARLOS_EN 30 Januari 2012 10:20
Semua Balasan
-
02 Februari 2012 5:32
Hello,
Thanks for the information. It will help a lot of us.
-
20 Februari 2012 2:05ModeratorThis should be made Sticky as it contains some great information.
Jeff Wharton
MSysDev (C.Sturt), MDbDsgnMgt (C.Sturt), MCT, MCPD, MCITP, MCDBA
Blog: Mr. Wharty's Ramblings
MC ID: Microsoft Transcript
Please mark answered if I've answered your question and vote for it as helpful to help other user's find a solution quicker -
14 Juni 2012 22:19Moderator
We also have an AdventureWorks2008 setup script at http://msftdbprodsamples.codeplex.com/releases/view/89502 without FileStream. The link has instructions on how to run the SQL setup script in SQL Management Studio.
- Disarankan sebagai Jawaban oleh Mr. WhartyMicrosoft Community Contributor, Moderator 15 Juni 2012 0:00
- Ditandai sebagai Jawaban oleh Mr. WhartyMicrosoft Community Contributor, Moderator 29 Agustus 2012 1:07
-
29 Agustus 2012 1:04Moderator
I uploaded AdventureWorks databases for 2012, 2008R2 and 2008. Each download zip file contains an mdf database file and ldf log file. This consolidates AdventureWorks databases for several SQL Server versions to one page. Please let me know what you think.
AdventureWorks Databases – 2012, 2008R2 and 2008
http://msftdbprodsamples.codeplex.com/releases/view/93587
- Disarankan sebagai Jawaban oleh Mr. WhartyMicrosoft Community Contributor, Moderator 29 Agustus 2012 1:07
- Ditandai sebagai Jawaban oleh Mr. WhartyMicrosoft Community Contributor, Moderator 29 Agustus 2012 1:07