sql server 2017数据库Debug

ERROR1:
通过端口 1433 连接到主机 localhost 的 TCP/IP 连接失败。错误:“Connection refused: connect。请验证连接属性,并检查 SQL Server 的实例正在主机上运行,且在此端口接受 TCP/IP 连接,还要确保防火墙没有阻止到此端口的 TCP 连接。”。
从零开始的java连接sqlserver数据库教程:
https://blog.csdn.net/u012393192/article/details/76152458
因为我之前安装的数据库引擎EXPRESS是Windows验证登录,要改为SQL server与Windows验证登录模式,参见网址:
https://jingyan.baidu.com/article/380abd0aa8f2311d90192cd0.html


ERROR2:
telnet 127.0.0.1:1433
'telnet' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
改为(注意冒号不要丢)
:telnet 127.0.0.1:1433

ERROR3:拒绝了对对象 所有者 'dbo')的 UPDATE、Insert、delete 、select权限

https://zhidao.baidu.com/question/241841644.html

 

数据库设计的六个阶段详解

https://blog.csdn.net/caoxiaohong1005/article/details/78133912
建立数据库登录账户,这个语法对吗? create login 登录账户 with passwor

https://zhidao.baidu.com/question/920149722847140379.html

SQL-使用视图

https://blog.csdn.net/l___ping/article/details/79478779

MySQL——约束(constraint)详解

https://blog.csdn.net/w_linux/article/details/79655073

SQL中字符串拼接

https://www.cnblogs.com/rainman/p/6203065.html

SQL 通配符

https://www.cnblogs.com/cisum/p/8065705.html

SQL嵌套SELECT

https://www.cnblogs.com/hushzhang/p/5286038.html

SQL 模糊查询

https://www.cnblogs.com/peteremperor/p/6963285.html

SQL SERVER中强制类型转换cast和convert的区别

https://www.cnblogs.com/davidgu/archive/2011/02/15/1955335.html

SqlServer修改数据库文件及日志文件存放位置

https://blog.csdn.net/saga_gallon/article/details/53151229

命令:

-查看当前的存放位置  
select database_id,name,physical_name AS CurrentLocation,state_desc,size from sys.master_files    
where database_id=db_id(N'数据库名');  
 

你可能感兴趣的:(sql)