Results 1 to 9 of 9

Thread: what is "DEPENDENCIES" folder in sqlserver table mean please.

  1. #1
    Join Date
    Feb 2007
    Posts
    3

    what is "DEPENDENCIES" folder in sqlserver table mean please.

    Hi Foilks , I know it s easy question. I know databases but not SQL dbase. Please explain if you can.
    what is "DEPENDENCIES" folder in sqlserver table mean please?

    Dosston

  2. #2
    Join Date
    Sep 2002
    Posts
    5,938
    Which tool do you use? In enterprise manager?

  3. #3
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    Most probably it means all other database objects that reference this table.

  4. #4
    Join Date
    Sep 2002
    Posts
    5,938
    Yes in query analyzer's object browser.

  5. #5
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    I would not trust sql server's dependency information. It queries sysdepends table and since SQL server allows you to create stored procedure referencing non existent table the information in not always correct.

    Also if one stored procedure references another procedure then sysdepends is not good at tracking when one procedure is dropped and recreated

  6. #6
    Join Date
    Feb 2007
    Posts
    3
    Thanks guys I know now what the dependencies is in the query analyzer. 2 more questions:

    1- what does the prefix "sp_pop" and "sp_sel" mean in a
    dbo.sp_pop_NAME1 & dbo.sp_sel_NAME2
    2- I need to learn sql server asap. Is there any site or
    reference that you can recommend (free/not free) that can
    expedite my learing process with SQl Server (only as a
    user/developer, not a DBA)

    Thanks

  7. #7
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    Where do you see these procedures?. Are they in system databases or user databases?

    Databasejournal has a SQL tutorial forum.

    http://forums.databasejournal.com/forumdisplay.php?f=15

  8. #8
    Join Date
    Sep 2002
    Posts
    5,938
    No specific meaning, your developers just name stored procedure that way. By the way, sql books online has lot of good stuffs.

  9. #9
    Join Date
    Feb 2007
    Posts
    3
    Thanks guys.
    By the way they are in user databases.

    Dooston

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •