Useful system stored procedures in SQL Server

后端 未结 12 840
醉话见心
醉话见心 2021-01-30 03:17

I recently discovered that I could use the sp_help to get a table definition and have been hooked onto it since then. Before my discovery, I had to open up the Obje

12条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-30 04:06

    sp_catalogs 
    sp_column_privileges
    sp_column_privileges_ex
    sp_columns
    sp_columns_ex
    sp_databases
    sp_cursor
    sp_cursorclose
    sp_cursorexecute
    sp_cursorfetch
    sp_cursoroption
    sp_cursoropen
    sp_cursorprepare
    sp_cursorprepexec
    sp_cursorunprepare
    sp_execute
    sp_datatype_info
    sp_fkeys
    sp_foreignkeys
    sp_indexes
    sp_pkeys
    sp_primarykeys
    sp_prepare
    sp_prepexec
    sp_prepexecrpc
    sp_unprepare
    sp_server_info
    sp_special_columns
    sp_sproc_columns
    sp_statistics
    sp_table_privileges
    sp_table_privileges_ex
    sp_tables
    sp_tables_ex 
    

    Check This link also

    http://msdn.microsoft.com/en-us/library/ms176007.aspx

提交回复
热议问题