named instance - no SP''s!

  • hey all,

    Today I installed a named instance on my enterprise db server. Idid this cause an application needed me to have case-sensitive SQL server. anyway, installed it and it looks good, db was insalled ok..but I have no stored procedures.....how do I get them back???

    Also, I kinda wanna change the name of my named instance, can I do that? Thanks!!!

  • Was the problem in a newly restored database?

    In a newly installed database?

    Found any errors in the scripts that were ran?

     

    Or maybe some scripts that were not run?

  • only one database was installed and I don't even have the normal SP's ....like for sp_detachdb ....

  • If those are not around, then how come the server be up and running??  Are you sure that the server is running?  Are you sure you checked in the Master database for those procs?

  • It's possible your login cannot see them. I'm not sure which sql version you're running; for 2005 try this

    use master

    go

    GRANT VIEW ANY DEFINITION TO login_name;

    go

    The system procs are under the sys schema;

  • i'm logging in as SA, so that wouldn't make sense...

  • OK, it appears that the stored procedures are included when looking at entprise manager, but when i'm logged into query analyzer, I don't have them...

Viewing 7 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply