<small id='PRIWm'></small><noframes id='PRIWm'>

      <bdo id='PRIWm'></bdo><ul id='PRIWm'></ul>

      <legend id='PRIWm'><style id='PRIWm'><dir id='PRIWm'><q id='PRIWm'></q></dir></style></legend>
        <tfoot id='PRIWm'></tfoot>
      1. <i id='PRIWm'><tr id='PRIWm'><dt id='PRIWm'><q id='PRIWm'><span id='PRIWm'><b id='PRIWm'><form id='PRIWm'><ins id='PRIWm'></ins><ul id='PRIWm'></ul><sub id='PRIWm'></sub></form><legend id='PRIWm'></legend><bdo id='PRIWm'><pre id='PRIWm'><center id='PRIWm'></center></pre></bdo></b><th id='PRIWm'></th></span></q></dt></tr></i><div id='PRIWm'><tfoot id='PRIWm'></tfoot><dl id='PRIWm'><fieldset id='PRIWm'></fieldset></dl></div>

      2. 如何检查数据库是否存在于 SQL Server 中?

        How to check if a database exists in SQL Server?(如何检查数据库是否存在于 SQL Server 中?)
            <tbody id='r43B9'></tbody>
            <bdo id='r43B9'></bdo><ul id='r43B9'></ul>

            <legend id='r43B9'><style id='r43B9'><dir id='r43B9'><q id='r43B9'></q></dir></style></legend>
          • <tfoot id='r43B9'></tfoot>
          • <i id='r43B9'><tr id='r43B9'><dt id='r43B9'><q id='r43B9'><span id='r43B9'><b id='r43B9'><form id='r43B9'><ins id='r43B9'></ins><ul id='r43B9'></ul><sub id='r43B9'></sub></form><legend id='r43B9'></legend><bdo id='r43B9'><pre id='r43B9'><center id='r43B9'></center></pre></bdo></b><th id='r43B9'></th></span></q></dt></tr></i><div id='r43B9'><tfoot id='r43B9'></tfoot><dl id='r43B9'><fieldset id='r43B9'></fieldset></dl></div>

              • <small id='r43B9'></small><noframes id='r43B9'>

                  本文介绍了如何检查数据库是否存在于 SQL Server 中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  使用 TSQL 检查 SQL Server 上是否存在数据库的理想方法是什么?似乎有多种方法可以实现这一点.

                  What is the ideal way to check if a database exists on a SQL Server using TSQL? It seems multiple approaches to implement this.

                  推荐答案

                  来自微软的脚本:

                  DECLARE @dbname nvarchar(128)
                  SET @dbname = N'Senna'
                  
                  IF (EXISTS (SELECT name 
                  FROM master.dbo.databases 
                  WHERE ('[' + name + ']' = @dbname 
                  OR name = @dbname)))
                  

                  这篇关于如何检查数据库是否存在于 SQL Server 中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Oracle: is there a tool to trace queries, like Profiler for sql server?(Oracle:是否有跟踪查询的工具,例如用于 sql server 的 Profiler?)
                  Splitting the string in sql server(在 sql server 中拆分字符串)
                  create table with sequence.nextval in oracle(在oracle中用sequence.nextval创建表)
                  SQL recursive query on self referencing table (Oracle)(自引用表 (Oracle) 上的 SQL 递归查询)
                  Composite Primary key vs additional quot;IDquot; column?(复合主键与附加“ID柱子?)
                  SQLite UPSERT / UPDATE OR INSERT(SQLite UPSERT/更新或插入)
                  <i id='9BPxN'><tr id='9BPxN'><dt id='9BPxN'><q id='9BPxN'><span id='9BPxN'><b id='9BPxN'><form id='9BPxN'><ins id='9BPxN'></ins><ul id='9BPxN'></ul><sub id='9BPxN'></sub></form><legend id='9BPxN'></legend><bdo id='9BPxN'><pre id='9BPxN'><center id='9BPxN'></center></pre></bdo></b><th id='9BPxN'></th></span></q></dt></tr></i><div id='9BPxN'><tfoot id='9BPxN'></tfoot><dl id='9BPxN'><fieldset id='9BPxN'></fieldset></dl></div>
                    <bdo id='9BPxN'></bdo><ul id='9BPxN'></ul>

                    <tfoot id='9BPxN'></tfoot>

                      <legend id='9BPxN'><style id='9BPxN'><dir id='9BPxN'><q id='9BPxN'></q></dir></style></legend>
                        <tbody id='9BPxN'></tbody>

                        • <small id='9BPxN'></small><noframes id='9BPxN'>