我安得是SQL SERVER 2005
然后安了示例数据库northwind,
现在想在SQL2005中删除这个示例数据库,请问怎么删啊
(本人是菜鸟,知道开始程序菜单里SQL Server Configuration Manager工具,别的工具都不会用,请详细说明)

解决方案 »

  1.   

    use master
    godrop database northwind
      

  2.   

     drop database 数据库名称
      

  3.   

    在SQL Server Management Studio里面点中数据库,然后右键,删除.
      

  4.   

    打开SSMS后展开所在的服务器,展开数据库节点,再右键单击所选数据库,单击删除即可。
      

  5.   

    Hi,1)Microsoft SQL Server 2005
    → SQL Server Management Studio(Express)
    2)WINDOWS或则MS SQL方式验证连接MS SQL后
    3)删除之方法
    3.1)可以在对象资源管理器中→ 选择数据库 → 点开+ → 右击northwind 选择删除 
    3.2)点击 新建查询项(MS SQL管理器的左上角)(默认打开后当前数据库为MASTER)→输入如下命令
    DROP DATABASE northwind
    GO 
    3.3)对象资源管理器中→ 选择数据库 → 点开+ →查看northwind是否被删除 
      

  6.   

    SQL Server Management Studio
    这个东西到底在哪里点出来。开始程序->SQL SERVER里配置工具压根就没
      

  7.   

    if exists(select * from sysdatabases where name='northwind')is not null
    drop database northwind或者if exists ('northwind')is not null
    drop database northwind
      

  8.   

    Hi,http://topic.csdn.net/u/20100225/20/2c801c0b-eba4-4cf2-8eeb-730c82fb94d5.html装个Express版的图形管理工具即可....
      

  9.   

    估计你是装了sql server2005 express
    到ms下载Microsoft SQL Server Management Studio Express
    链接:http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=c243a5ae-4bd1-4e3d-94b8-5a0f62bf7796
      

  10.   

    http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=c243a5ae-4bd1-4e3d-94b8-5a0f62bf7796
      

  11.   


    drop database northwind
      

  12.   

    dbcc traceon(3604)
    go
    dbcc dbrepair(yourdbname,dropdb)
      

  13.   

    use master
    drop database northwind