Forum Replies Created

Viewing 15 posts - 19,651 through 19,665 (of 22,213 total)

  • RE: Disply user ID/Name of the one who created tables

    It only goes back as far as the last time the server was restarted, but you can track schema changes through the built in report "Schema Changes History." I ran...

  • RE: Deploying DB changes

    I'll pile on and suggest you have a Staging server that mirrors your Production environment (not necessarily in terms of memory & processing power, but certainly disk space) where you...

  • RE: Database Design Dilemmas

    Holy cow, that's a ton of HUGE questions. Most of them can be answered, it depends.

    To start with, it is possible to have too many relationships, but to determine if...

  • RE: How to copy a database?

    Copy db or a Restore should work. The restore would have to include renaming the physical files. It's easier to use TSQL, but if you want to use the GUI,...

  • RE: Thinking of starting a dating site for DBAs

    I would have hoped for more of merge join than a loop...

  • RE: Should non-clustered indexes be placed on separate physical device than data?

    Disk operations working the way they do, more spindles is better than fewer. That's at least part of why SAN's (properly configured, propertly maintained, etc.) succeed so well. I would...

  • RE: Mystery Row Deletion

    Is it possible that you have cascade delete set up on the table? That might explain rows being deleted seemingly without action.

    If you want to try to catch what's happening,...

  • RE: Subquery returned more than 1 value Error...

    You're trying to select multiple rows into a single variable. That just won't work. What about running that same XML query directly against the data rather than trying to move...

  • RE: Operations Manager Custom Collection

    Now that I've taken the time to actually think about the answer to the question, yes, you'd need to recreate the script inside a monitor. Seems a bit odd to...

  • RE: Operations Manager Custom Collection

    You're right. I don't know where I got that idea. Sorry about the bad information. I hate doing that. I shouldn't post based on vague notions.

  • RE: Source control approaches with db objects

    I should have mentioned, VSDB is EXTREMELY expensive. It's a wonderful solution if you can get it, but most people are going to be happy with Red Gate or DBGhost.

  • RE: Source control approaches with db objects

    I would go for breaking down all the objects into the individual create scripts necessary to maintain them.

    We use Microsofts Visual Studio Team System Database Edition. It can do full...

  • RE: Intellisense in SSMS 2008

    GilaMonster (9/2/2008)


    It only works if you're connected to a SQL 2008 server. If you're connected to any lower version, intellisense is disabled

    Which functions as a very good advertising tool for...

  • RE: How do YOU use VIEWs?

    I agree with using views for security purposes, but, as Jeff noted, you shouldn't ever go more than a layer deep on views because you will run into performance issues....

  • RE: Undelete SPs

    In addition to setting up backups (4 months?), you should put all your data structures and code into source control.

Viewing 15 posts - 19,651 through 19,665 (of 22,213 total)