• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Sqlserver事务备份和还原的实例代码(必看)

    废话不多说,直接上代码

    create database mydb
    use mydb
    go
    create table account(
      id varchar(16),
      name varchar(16),
      balance float
    )
    go
    select * from account
    
    insert into account(id, name, balance) values('620101', 'liyong', 300)
    insert into account(id, name, balance) values('620106', 'mali', 400)
    --insert into account(id, name, balance) values('620009', 'chenying', 800)
    insert into account(id, name, balance) values('646009', 'chenying', 800)
    --delete from account where id = '620009'
    go
    update account set balance = balance - 1000 where id = '620101'
    update account set balance = balance + 1000 where id = '620106'
    --消息 547,级别 16,状态 0,第 1 行
    --UPDATE 语句与 CHECK 约束"CK_Blance"冲突。该冲突发生于数据库"mydb",表"dbo.account", column 'balance'。
    --语句已终止。
    
    go
    --alter table account
    --alter COlumn balance int
    go
    alter table account
    add constraint CK_Blance check(balance >= 0)
    go
    alter table account
    drop constraint CK_Blance
    --定一个事务
    --从liyong扣钱往mali加钱
    begin transaction
    update account set balance = balance - 1000 where id = '620101'
    if((select balance output from account where id = '620101')  0)
    begin
    PRINT('余额不足!');
    ROLLBACK;
    end
    else
    begin
      update account set balance = balance + 1000 where id = '620106'
      commit;
      PRINT('转账成功!');
    end
    go
    sp_help
    --备份设备
    sp_addumpdevice 'disk', 'xk_bak' ,'d:\xk_bak'
    --备份数据库
    backup database mydb
    to xk_bak
    --还原数据库
    restore database mydb from disk = 'd:\xk_bak'
    with replace; --覆盖

    以上这篇Sqlserver事务备份和还原的实例代码(必看)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

    您可能感兴趣的文章:
    • sqlserver数据库高版本备份还原为低版本的方法
    • SqlServer高版本数据备份还原到低版本
    • sqlserver还原数据库的时候出现提示无法打开备份设备的解决方法(设备出现错误或设备脱)
    • 企业管理器备份和还原SQL Server数据库
    • SQL Server 2008 备份数据库、还原数据库的方法
    • sql server 2000数据库备份还原的图文教程
    • sql server 2005数据库备份还原图文教程
    • SQLSERVER数据库备份后无法还原的解决办法
    • SQL Server 数据库备份和还原认识和总结 (一)
    • SQL Server2012数据库备份和还原的教程
    上一篇:SQLServer存储过程创建和修改的实现代码
    下一篇:SQL Server并发处理存在就更新解决方案探讨
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Sqlserver事务备份和还原的实例代码(必看) Sqlserver,事务,备份,和,还原,