zoukankan      html  css  js  c++  java
  • Sybase tempdb

    Tempdb的作用
    sybase server端内部使用
    排序
    创建worktables
    reformatting
    存储临时表和index

    Tempdb用途分类
    Turely temp tables
    Regular user tables
    worktables

    (1)Truly temporary tables
    这种表是正在的临时表, 通过create table #tablename或select into #tablename创建,只在当前session中有效,session结束时,这些表或index自动被drop

    create table #temptable (...)
    or:
    select select_list
        into #temptable ...

    (2)Regular user tables
    通过tempdb..tablename 可以创建RUT,
    create table tempdb..temptable
    or:
    select select_list
        into tempdb..temptable
    在什么情况下使用RUT表呢?
    要在不同session间共享数据,通过grant permission共享
    用于bulk copy
    用完以后用户必须显示的drop掉,否则会一直存在,知道sybase server重启

    (3)Worktables
    在sybase处理join, sort或其他内部操作是创建,这种表不能共享,命令处理完后马上自动被drop


    tempdb的大小
    默认2MB,存储在master device上。
    我们可以用sp_helpdb系统存储过程查看tempdb的大小
    isql>sp_helpdb tempdb
    name      db_size  owner  dbid   created     status
    --------- -------- ------ ------ ----------- --------------------
    tempdb    2.0 MB   sa     2     May 22, 1999 select into/bulkcopy


    device_frag  size    usage        free kbytes
    ------------ -------- ------------ ---------
    master       2.0 MB  data and log 1248

    用户量越大,并发越多,将tempdb大小设置越大越好。通常情况下,设置tempdb的大小为你的数据库大小的20%~25%


    tempdb和lock
    在tempdb中create或drop表,索引会引起system table上锁争用,这些system table包括sysobjects, syscolumns和sysindexes。
    如果在tempdb重复create或drop表和索引,那么最好的办法是在程序启动时将临时表建好,结束时truncate table来删除数据以减少system table上锁的争用。

    tempdb性能优化
    (1) 减少log,多用select into,少用create table #xxx and insert,select into产生最少的log

      (2) 避免在tempdb中创建大的表,如果创建了大的表,记得建index

    (3) 用嵌套SQL,嵌套调用Stored proc 代替大的表

  • 相关阅读:
    JVM中java类的加载时机(转载:http://blog.csdn.net/chenleixing/article/details/47099725)
    自定义filter包
    Tomcat中Listener的使用范例(转载http://cywhoyi.iteye.com/blog/2075848)
    Quartz简单使用
    PAT A1119 Pre- and Post-order Traversals [前序后序求中序]
    PAT A1115 Counting Nodes in a BST [二叉搜索树]
    PAT A1110 Complete Binary Tree [完全二叉树]
    PAT A1102 Invert a Binary Tree [反转二叉树]
    PAT A1099 Build A Binary Search Tree [二叉搜索树]
    PAT A1094 The Largest Generation [树的遍历]
  • 原文地址:https://www.cnblogs.com/xzpp/p/2599962.html
Copyright © 2011-2022 走看看