{"id":112,"date":"2018-04-12T18:57:34","date_gmt":"2018-04-12T11:57:34","guid":{"rendered":"http:\/\/www.sqlservertutorial.net\/?page_id=112"},"modified":"2020-04-11T20:13:43","modified_gmt":"2020-04-11T13:13:43","slug":"load-sample-database","status":"publish","type":"page","link":"https:\/\/www.sqlservertutorial.net\/getting-started\/load-sample-database\/","title":{"rendered":"Load Sample Database"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will&nbsp;learn how to create a new database in SQL Server and execute the script to load the sample database.<\/p>\n\n\n\n<p>First, you need to download the following zip file if you have not done so:<\/p>\n\n\n\n<p><a class=\"buttonDownload\" href=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/SQL-Server-Sample-Database.zip\">Download SQL Server Sample Database<\/a><\/p>\n\n\n\n<p>Second, uncompress the zip file, you will see three SQL script files:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>&nbsp;<code>BikeStores Sample Database - create objects.sql<\/code> &#8211; this file is for creating database objects including schemas and tables.<\/li><li>&nbsp;<code>BikeStores Sample Database - load data.sql<\/code> &#8211; this file is for inserting data into the tables<\/li><li>&nbsp;<code>BikeStores Sample Database - drop all objects.sql<\/code> &#8211; this file is for removing the tables and their schemas from the sample database. It is useful when you want to refresh the sample database.<\/li><\/ul>\n\n\n\n<p>Third, let&#8217;s create a database, create the schemas and tables, and load the sample data.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-1'>Step 1 <a href=\"#step-1\" class=\"anchor\" id=\"step-1\" title=\"Anchor for Step 1\">#<\/a><\/h3>\n\n\n\n<p>Connect to the SQL Server by (1) choosing the server name, (2) enter the user and (3) password and (4) click the <strong>Connect<\/strong> button.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"477\" height=\"315\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server.png\" alt=\"\" class=\"wp-image-129\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server.png 477w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server-300x198.png 300w\" sizes=\"auto, (max-width: 477px) 100vw, 477px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-2'>Step 2 <a href=\"#step-2\" class=\"anchor\" id=\"step-2\" title=\"Anchor for Step 2\">#<\/a><\/h3>\n\n\n\n<p>Right-click the <strong>Databases<\/strong> node in the <strong>Object Explorer<\/strong> and select the <strong>New Database&#8230;<\/strong> menu item<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"389\" height=\"347\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-2-create-a-new-database.png\" alt=\"\" class=\"wp-image-130\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-2-create-a-new-database.png 389w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-2-create-a-new-database-300x268.png 300w\" sizes=\"auto, (max-width: 389px) 100vw, 389px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-3'>Step 3 <a href=\"#step-3\" class=\"anchor\" id=\"step-3\" title=\"Anchor for Step 3\">#<\/a><\/h3>\n\n\n\n<p>(1) Enter the&nbsp;<strong>Database name&nbsp;<\/strong>as BikeStores and (2) click the <strong>OK<\/strong> button to create the new database.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"690\" height=\"625\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-3-enter-the-database-information.png\" alt=\"\" class=\"wp-image-118\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-3-enter-the-database-information.png 690w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-3-enter-the-database-information-300x272.png 300w\" sizes=\"auto, (max-width: 690px) 100vw, 690px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-4'>Step 4 <a href=\"#step-4\" class=\"anchor\" id=\"step-4\" title=\"Anchor for Step 4\">#<\/a><\/h3>\n\n\n\n<p>If everything is fine, you will see the database <strong>BikeStores<\/strong> appears under Databases node as shown in the screenshot below:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"269\" height=\"264\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-4-new-database-created.png\" alt=\"\" class=\"wp-image-119\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-5'>Step 5 <a href=\"#step-5\" class=\"anchor\" id=\"step-5\" title=\"Anchor for Step 5\">#<\/a><\/h3>\n\n\n\n<p>From the File menu, choose Open &gt; File&#8230; menu item to open a script file.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"627\" height=\"388\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-5-open-sql-script-file-to-create-objects.png\" alt=\"\" class=\"wp-image-120\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-5-open-sql-script-file-to-create-objects.png 627w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-5-open-sql-script-file-to-create-objects-300x186.png 300w\" sizes=\"auto, (max-width: 627px) 100vw, 627px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-6'>Step 6 <a href=\"#step-6\" class=\"anchor\" id=\"step-6\" title=\"Anchor for Step 6\">#<\/a><\/h3>\n\n\n\n<p>Select the <strong>BikeStores Sample Database &#8211; create <\/strong>objects.sql file and click the <code>Open<\/code> button<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"669\" height=\"473\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-6-open-sql-script-file-to-create-objects.png\" alt=\"\" class=\"wp-image-133\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-6-open-sql-script-file-to-create-objects.png 669w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-6-open-sql-script-file-to-create-objects-300x212.png 300w\" sizes=\"auto, (max-width: 669px) 100vw, 669px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-7'>Step 7 <a href=\"#step-7\" class=\"anchor\" id=\"step-7\" title=\"Anchor for Step 7\">#<\/a><\/h3>\n\n\n\n<p>Click the <strong>Execute<\/strong> button to execute the SQL script.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"701\" height=\"401\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-7-execute-the-creation-objects-script.png\" alt=\"\" class=\"wp-image-122\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-7-execute-the-creation-objects-script.png 701w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-7-execute-the-creation-objects-script-300x172.png 300w\" sizes=\"auto, (max-width: 701px) 100vw, 701px\" \/><\/figure>\n\n\n\n<p>You should see the following result indicated that the query executed successfully.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"275\" height=\"342\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-8-result-of-creation-objects-script.png\" alt=\"\" class=\"wp-image-123\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-8-result-of-creation-objects-script.png 275w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-8-result-of-creation-objects-script-241x300.png 241w\" sizes=\"auto, (max-width: 275px) 100vw, 275px\" \/><\/figure>\n\n\n\n<p>If you expand the <strong>BikeStores &gt; Tables<\/strong>, you will see the schemas and their tables are created as shown below:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"269\" height=\"408\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-9-examine-the-tables.png\" alt=\"\" class=\"wp-image-124\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-9-examine-the-tables.png 269w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-9-examine-the-tables-198x300.png 198w\" sizes=\"auto, (max-width: 269px) 100vw, 269px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-8'>Step 8 <a href=\"#step-8\" class=\"anchor\" id=\"step-8\" title=\"Anchor for Step 8\">#<\/a><\/h3>\n\n\n\n<p>Open the file for loading data into the tables.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"627\" height=\"388\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-10-open-sql-script-file-to-create-objects-Copy.png\" alt=\"\" class=\"wp-image-125\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-10-open-sql-script-file-to-create-objects-Copy.png 627w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-10-open-sql-script-file-to-create-objects-Copy-300x186.png 300w\" sizes=\"auto, (max-width: 627px) 100vw, 627px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-9'>Step 9 <a href=\"#step-9\" class=\"anchor\" id=\"step-9\" title=\"Anchor for Step 9\">#<\/a><\/h3>\n\n\n\n<p>Choose the&nbsp;<strong>BikeStores Sample Database &#8211; load data.sql<\/strong> file and click the&nbsp;Open button.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"669\" height=\"473\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-11-open-sql-script-file-to-load-data.png\" alt=\"\" class=\"wp-image-134\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-11-open-sql-script-file-to-load-data.png 669w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-11-open-sql-script-file-to-load-data-300x212.png 300w\" sizes=\"auto, (max-width: 669px) 100vw, 669px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id='step-10'>Step 10 <a href=\"#step-10\" class=\"anchor\" id=\"step-10\" title=\"Anchor for Step 10\">#<\/a><\/h3>\n\n\n\n<p>Click the <strong>Execute<\/strong> button to load data into the tables.<\/p>\n\n\n\n<p>You should see the following message indicating that all the statements in the script were executed successfully.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"395\" height=\"347\" src=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-13-result-of-the-data-load-script.png\" alt=\"\" class=\"wp-image-128\" srcset=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-13-result-of-the-data-load-script.png 395w, https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-13-result-of-the-data-load-script-300x264.png 300w\" sizes=\"auto, (max-width: 395px) 100vw, 395px\" \/><\/figure>\n\n\n\n<p>In this tutorial, you have learned how to load the BikeStores sample database into the SQL Server.<\/p>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"112\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/getting-started\/load-sample-database\/\"\n\t\t\t\tdata-post-title=\"Load Sample Database\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"112\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/getting-started\/load-sample-database\/\"\n\t\t\t\tdata-post-title=\"Load Sample Database\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial shows you step by step how to load a sample database BikeStores into the SQL Server for practicing.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":394,"menu_order":4,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-112","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Load SQL Server Sample Database<\/title>\n<meta name=\"description\" content=\"This tutorial shows you step by step how to load a sample database BikeStores into the SQL Server for practicing.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqlservertutorial.net\/load-sample-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Load SQL Server Sample Database\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you step by step how to load a sample database BikeStores into the SQL Server for practicing.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlservertutorial.net\/load-sample-database\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Server Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-11T13:13:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/\",\"name\":\"Load SQL Server Sample Database\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/step-1-login-to-the-SQL-Server.png\",\"datePublished\":\"2018-04-12T11:57:34+00:00\",\"dateModified\":\"2020-04-11T13:13:43+00:00\",\"description\":\"This tutorial shows you step by step how to load a sample database BikeStores into the SQL Server for practicing.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/step-1-login-to-the-SQL-Server.png\",\"contentUrl\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/wp-content\\\/uploads\\\/step-1-login-to-the-SQL-Server.png\",\"width\":477,\"height\":315},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/load-sample-database\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started with SQL Server\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/getting-started\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Load Sample Database\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\",\"name\":\"SQL Server Tutorial\",\"description\":\"The Practical SQL Server Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Load SQL Server Sample Database","description":"This tutorial shows you step by step how to load a sample database BikeStores into the SQL Server for practicing.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/","og_locale":"en_US","og_type":"article","og_title":"Load SQL Server Sample Database","og_description":"This tutorial shows you step by step how to load a sample database BikeStores into the SQL Server for practicing.","og_url":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/","og_site_name":"SQL Server Tutorial","article_modified_time":"2020-04-11T13:13:43+00:00","og_image":[{"url":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/","url":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/","name":"Load SQL Server Sample Database","isPartOf":{"@id":"https:\/\/www.sqlservertutorial.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/#primaryimage"},"image":{"@id":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server.png","datePublished":"2018-04-12T11:57:34+00:00","dateModified":"2020-04-11T13:13:43+00:00","description":"This tutorial shows you step by step how to load a sample database BikeStores into the SQL Server for practicing.","breadcrumb":{"@id":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlservertutorial.net\/load-sample-database\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/#primaryimage","url":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server.png","contentUrl":"https:\/\/www.sqlservertutorial.net\/wp-content\/uploads\/step-1-login-to-the-SQL-Server.png","width":477,"height":315},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlservertutorial.net\/load-sample-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlservertutorial.net\/"},{"@type":"ListItem","position":2,"name":"Getting Started with SQL Server","item":"https:\/\/www.sqlservertutorial.net\/getting-started\/"},{"@type":"ListItem","position":3,"name":"Load Sample Database"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlservertutorial.net\/#website","url":"https:\/\/www.sqlservertutorial.net\/","name":"SQL Server Tutorial","description":"The Practical SQL Server Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlservertutorial.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/112","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/comments?post=112"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/112\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/394"}],"wp:attachment":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/media?parent=112"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}