{"id":414,"date":"2020-02-04T12:33:14","date_gmt":"2020-02-04T12:33:14","guid":{"rendered":"https:\/\/www.filefix.org\/tips\/?p=414"},"modified":"2020-11-20T07:09:37","modified_gmt":"2020-11-20T07:09:37","slug":"view-table-in-sql-server-database","status":"publish","type":"post","link":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/","title":{"rendered":"How Do I View Tables in SQL Server Management Studio?"},"content":{"rendered":"<p>Well, the day we also learn about how to view tables in SQL Server Management Studio. And it is super easy to open a table structure, relationships, definition using the SQL Server Management Studio. But, there are times when the user want to view table without MS SQL Server. If you are one of those user who want to view table data without\u00a0 SQL Server environment. Then, in this article, we are going to discuss all the possible approaches that let you know how to view tables in SQL Server with or without MS SQL Server installation.<\/p>\n<h2>Wait! A Twist Is Waiting For You<\/h2>\n<p>A few days back, I faced a query from a teacher that her colleague created a database in Microsoft SQL Server. Now, her colleague is on vacation and she needs to view the details of a student table. But, she does not have any knowledge about the database and unable to open table in MS SQL Server. Fortunately, there are many ways to open a SQL tables with or without SQL Server Management Studio.<\/p>\n<blockquote><p><strong>Also Read<\/strong>: <a href=\"https:\/\/www.filefix.org\/tips\/view-mdf-file-without-sql-server\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>View MDF File Without SQL Server Environment<\/strong><\/a><\/p><\/blockquote>\n<p>So, without wasting any more time let\u2019s get started!<\/p>\n<h2>Well Rounded Approach to View Tables in SQL Server Management Studio<\/h2>\n<p>In the subsequent section, you will get all the different techniques to access the objects of the database with and without its associated application.<\/p>\n<ol>\n<li>Use SQL Query to View MDF Table<\/li>\n<li>Use Default System Views<\/li>\n<li>Use MDF Viewer Software Solution<\/li>\n<\/ol>\n<h3>Let\u2019s understand each workaround in a detail manner.<\/h3>\n<h3>Method #1: View Tables in SQL Server using Object Explorer<\/h3>\n<p>Here, you need to open the SSMS and connect with it. Afterward, go through the below instructions to open and view tables in SQL Server Management Studio.<\/p>\n<p><strong>Step 1.<\/strong> Expand Database section to get the list of all tables created in it.<\/p>\n<p><strong>Step 2.<\/strong> Afterward, select the desired database whose table you want to open &amp; view.<\/p>\n<p><strong>Step 3:<\/strong> Get the table name and execute the following command on the pane, to view tables in SQL Server Management Studio.<\/p>\n<p><em><strong>Select * from table_name<\/strong><\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-415\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/select.png\" alt=\"view tables in SQL Server by query\" width=\"1366\" height=\"736\" srcset=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/select.png 1366w, https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/select-768x414.png 768w\" sizes=\"auto, (max-width: 1366px) 100vw, 1366px\" \/><\/p>\n<p><strong>Step 4:<\/strong> You can also drag or write the table name on the console and press Ctrl along with F1, to view table data in SQL server Management Studio.<\/p>\n<h3>Method #2: Try System Views to Open Table in MS SQL Server<\/h3>\n<p>To open table in SQL Server Management Studio, there are following three system views that describe how to open table in MS SQL Server. All of them are illustrated below.<\/p>\n<p><strong>1. SYSBOJECTS &#8211;<\/strong> It supports older versions of MS SQL Server Management Studio for backward compatibility. SYSOBJECTS contains all objects of the database such as Tables, Triggers, Views, Stored procedures, Functions. If a user required the table only from the database, then they have to filter <strong>\u2018xtype\u2019<\/strong> column.<\/p>\n<p>For example, to view table in SQL Server Management Studio, run the following query in SSMS.<\/p>\n<p><em><strong> select * from SYSOBJECTS where xtype=\u2019U\u2019;<\/strong><\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-416\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/SYSOBJECTS.png\" alt=\"view tablesin SQL Server by system views- SYSOBJECTS\" width=\"1366\" height=\"736\" srcset=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/SYSOBJECTS.png 1366w, https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/SYSOBJECTS-768x414.png 768w\" sizes=\"auto, (max-width: 1366px) 100vw, 1366px\" \/><\/p>\n<p><strong>\u2018xtype\u2019<\/strong> values are predefined for all the database objects like-<\/p>\n<ul>\n<li>U stands for User table<\/li>\n<li>PK stands for Primary key<\/li>\n<li>N stands for Function<\/li>\n<li>P stands for Stored Procedure<\/li>\n<\/ul>\n<p><strong>2. SYS.TABLES &#8211;<\/strong> It supports MS SQL Server version 2005, 2008. SYS.TABLES which contain only tables of the database. To view table data in SQL Server, execute the following query.<\/p>\n<p><em><strong>select * from SYS.TABLES;<\/strong><\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-417\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/SYSTABLES.png\" alt=\"view tables in SQL Server by system views-SYSTABLES\" width=\"1366\" height=\"736\" srcset=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/SYSTABLES.png 1366w, https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/SYSTABLES-768x414.png 768w\" sizes=\"auto, (max-width: 1366px) 100vw, 1366px\" \/><\/p>\n<p><strong>3. INFORMATION_SCHEMA.TABLE \u2013<\/strong> It supports MS SQL Server version 2005 or greater. It allows users to view tables and views of the database. Execute the following command to open table in MS SQL Server.<\/p>\n<p><em><strong>select * from INFORMATION_SCHEMA.TABLE;<\/strong><\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-418\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/INFORMATION.png\" alt=\"view tables in SQL Server by system views-INFORMATION_SCHEMA\" width=\"1366\" height=\"736\" srcset=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/INFORMATION.png 1366w, https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/INFORMATION-768x414.png 768w\" sizes=\"auto, (max-width: 1366px) 100vw, 1366px\" \/><\/p>\n<h3>Method #3. View Table without MS SQL Server<\/h3>\n<p>If a user does not have SQL Server installation in their system, then the above method gets failed. In such a situation, take the help of <strong>SysTools <a href=\"https:\/\/www.systoolsgroup.com\/mdf-viewer.html\" target=\"_blank\" rel=\"noopener noreferrer\">MDF Viewer<\/a> Software Solution,<\/strong> it will help you to view table without SQL Server installation. It is an adept software to analyze the objects of an MDF file. It can effortlessly upload the Primary database file or MDF and preview the following database objects.<\/p>\n<ul>\n<li>Tables<\/li>\n<li>Views<\/li>\n<li>Stored Procedures<\/li>\n<li>Rules<\/li>\n<li>Triggers<\/li>\n<li>Functions<\/li>\n<\/ul>\n<p class=\"text-center mr-2\"><a class=\"btn btn-success btn-lg btn-md-block p-3 text-white\" href=\"https:\/\/systoolskart.com\/download\/SYS1M9V6T\/512\">Download Now<\/a>\u00a0 \u00a0<a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #ff6800; color: #fff !important;\" href=\"https:\/\/systoolskart.com\/buy\/SYS1M9V8P\/512&amp;utm_source=TechnewsKB&amp;utm_medium=buy-button&amp;utm_campaign=Buybutton\" target=\"_blank\" rel=\"noopener noreferrer\"> Purchase Now<\/a><\/p>\n<p>It does not require the installation of SQL Server Management Studio. Adding to it, the utility is enough capable to scrutiny the orphaned as well as corrupted MDF file and shows all the table object on the dashboard. Besides this, below we have mentioned all salient features of the software.<\/p>\n<ul>\n<li>Scan and browse data from corrupt or inaccessible MDF database<\/li>\n<li>Allows to preview MDF Files of SQL Server 2019 and below versions<\/li>\n<li>Preview Unicode Stored procedure, Triggers, Views, Function, Tables<\/li>\n<li>Able to show deleted SQL Database records in Red color on a pane<\/li>\n<li>Option to view &amp; save scanned MDF File data in .str file for future use<\/li>\n<\/ul>\n<h3>Let\u2019s see how to View Tables in SQL Server Without MS SQL Server Installation &#8211;<\/h3>\n<p><strong>Step 1.<\/strong> Download and install the MDF Viewer Tool on your Windows machine<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-400\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/installed.png\" alt=\"install mdf viewer\" width=\"1022\" height=\"400\" \/><\/p>\n<p><strong>Step 2.<\/strong> Afterward, click on <strong>Open <\/strong>button to add database file whose table you want to view<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-404\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/1-2.png\" alt=\"add mdf file\" width=\"1022\" height=\"400\" \/><\/p>\n<p><strong>Step 3.<\/strong> Select a scanning mode to scan the file<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-405\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/3.png\" alt=\"scan mdf file\" width=\"1022\" height=\"300\" \/><\/p>\n<p><strong>Step 4.<\/strong> Once the file scanned successfully, click on Table section from the left side pane to get the overview of Table on the detailed pane. In the same way, you can also view the other database objects.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-420\" src=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/Untitled11-1.png\" alt=\"preview database objects\" width=\"1022\" height=\"400\" \/><\/p>\n<h3>Wrapping Up<\/h3>\n<p>If you do not know the right procedure, then a simple task can also become the tedious one. In the same way, people who do not have proper knowledge about MS SQL Server may face problem to open or view the SQL Server Tables. Therefore, in the above section, we have discussed all the simple methods to view database table(s) with or without MS SQL Server environment. Try any of the solutions as they certainly help you to view tables in SQL Server Management Studio.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Well, the day we also learn about how to view tables in SQL Server Management Studio. And it is super easy to open a table structure, relationships, definition using the <\/p>\n","protected":false},"author":1,"featured_media":422,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[68,81],"class_list":["post-414","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sql","category-tables"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>View Tables in SQL Server Management Studio - Multiple Approaches<\/title>\n<meta name=\"description\" content=\"In this article we have discussed how to view tables in SQL Server. we have mentioned the best ways to view tables with\/without SQL Server installation.\" \/>\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.filefix.org\/tips\/view-table-in-sql-server-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"View Tables in SQL Server Management Studio - Multiple Approaches\" \/>\n<meta property=\"og:description\" content=\"In this article we have discussed how to view tables in SQL Server. we have mentioned the best ways to view tables with\/without SQL Server installation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/\" \/>\n<meta property=\"og:site_name\" content=\"FileFix Tips - Resolve All File Type Issues\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-04T12:33:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-20T07:09:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/sql-table.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"253\" \/>\n\t<meta property=\"og:image:height\" content=\"199\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/#\\\/schema\\\/person\\\/98bc1d4701a9f414172d7c702f70adef\"},\"headline\":\"How Do I View Tables in SQL Server Management Studio?\",\"datePublished\":\"2020-02-04T12:33:14+00:00\",\"dateModified\":\"2020-11-20T07:09:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/\"},\"wordCount\":968,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/sql-table.jpg\",\"keywords\":[\"Open tables in MS SQL Server\",\"View table data in SQL Server Management Studio\",\"View table in MS SQL Server\"],\"articleSection\":[\"SQL\",\"tables\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/\",\"url\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/\",\"name\":\"View Tables in SQL Server Management Studio - Multiple Approaches\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/sql-table.jpg\",\"datePublished\":\"2020-02-04T12:33:14+00:00\",\"dateModified\":\"2020-11-20T07:09:37+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/#\\\/schema\\\/person\\\/98bc1d4701a9f414172d7c702f70adef\"},\"description\":\"In this article we have discussed how to view tables in SQL Server. we have mentioned the best ways to view tables with\\\/without SQL Server installation.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/sql-table.jpg\",\"contentUrl\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/sql-table.jpg\",\"width\":253,\"height\":199},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/view-table-in-sql-server-database\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I View Tables in SQL Server Management Studio?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/#website\",\"url\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/\",\"name\":\"FileFix Tips - Resolve All File Type Issues\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/#\\\/schema\\\/person\\\/98bc1d4701a9f414172d7c702f70adef\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0a061725a6089aefb9427116283fd9ad67bffe571c088eb108b551c915c3c3c3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0a061725a6089aefb9427116283fd9ad67bffe571c088eb108b551c915c3c3c3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0a061725a6089aefb9427116283fd9ad67bffe571c088eb108b551c915c3c3c3?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.filefix.org\\\/tips\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"View Tables in SQL Server Management Studio - Multiple Approaches","description":"In this article we have discussed how to view tables in SQL Server. we have mentioned the best ways to view tables with\/without SQL Server installation.","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.filefix.org\/tips\/view-table-in-sql-server-database\/","og_locale":"en_US","og_type":"article","og_title":"View Tables in SQL Server Management Studio - Multiple Approaches","og_description":"In this article we have discussed how to view tables in SQL Server. we have mentioned the best ways to view tables with\/without SQL Server installation.","og_url":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/","og_site_name":"FileFix Tips - Resolve All File Type Issues","article_published_time":"2020-02-04T12:33:14+00:00","article_modified_time":"2020-11-20T07:09:37+00:00","og_image":[{"width":253,"height":199,"url":"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/sql-table.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#article","isPartOf":{"@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/"},"author":{"name":"admin","@id":"https:\/\/www.filefix.org\/tips\/#\/schema\/person\/98bc1d4701a9f414172d7c702f70adef"},"headline":"How Do I View Tables in SQL Server Management Studio?","datePublished":"2020-02-04T12:33:14+00:00","dateModified":"2020-11-20T07:09:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/"},"wordCount":968,"commentCount":0,"image":{"@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#primaryimage"},"thumbnailUrl":"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/sql-table.jpg","keywords":["Open tables in MS SQL Server","View table data in SQL Server Management Studio","View table in MS SQL Server"],"articleSection":["SQL","tables"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/","url":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/","name":"View Tables in SQL Server Management Studio - Multiple Approaches","isPartOf":{"@id":"https:\/\/www.filefix.org\/tips\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#primaryimage"},"image":{"@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#primaryimage"},"thumbnailUrl":"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/sql-table.jpg","datePublished":"2020-02-04T12:33:14+00:00","dateModified":"2020-11-20T07:09:37+00:00","author":{"@id":"https:\/\/www.filefix.org\/tips\/#\/schema\/person\/98bc1d4701a9f414172d7c702f70adef"},"description":"In this article we have discussed how to view tables in SQL Server. we have mentioned the best ways to view tables with\/without SQL Server installation.","breadcrumb":{"@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#primaryimage","url":"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/sql-table.jpg","contentUrl":"https:\/\/www.filefix.org\/tips\/wp-content\/uploads\/2020\/02\/sql-table.jpg","width":253,"height":199},{"@type":"BreadcrumbList","@id":"https:\/\/www.filefix.org\/tips\/view-table-in-sql-server-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.filefix.org\/tips\/"},{"@type":"ListItem","position":2,"name":"How Do I View Tables in SQL Server Management Studio?"}]},{"@type":"WebSite","@id":"https:\/\/www.filefix.org\/tips\/#website","url":"https:\/\/www.filefix.org\/tips\/","name":"FileFix Tips - Resolve All File Type Issues","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.filefix.org\/tips\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.filefix.org\/tips\/#\/schema\/person\/98bc1d4701a9f414172d7c702f70adef","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0a061725a6089aefb9427116283fd9ad67bffe571c088eb108b551c915c3c3c3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0a061725a6089aefb9427116283fd9ad67bffe571c088eb108b551c915c3c3c3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0a061725a6089aefb9427116283fd9ad67bffe571c088eb108b551c915c3c3c3?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.filefix.org\/tips\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/posts\/414","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/comments?post=414"}],"version-history":[{"count":0,"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/posts\/414\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/media\/422"}],"wp:attachment":[{"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/media?parent=414"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.filefix.org\/tips\/wp-json\/wp\/v2\/categories?post=414"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}