Forum Replies Created

Viewing 15 posts - 13,756 through 13,770 (of 22,213 total)

  • RE: What is my server doing now?

    It's running then. No other way to be sure what it's doing. You can use the offset to understand which statement is currently being run, assuming that's useful. Otherwise, all...

  • RE: What is my server doing now?

    I'd take a look at sys.dm_exec_requests and see what that process is doing. What's it waiting on? Is it blocked? All that stuff.

    In general, yes, I'd break this down into...

  • RE: t-sql

    You can use the Dynamic Management Object sys.dm_sql_referenced_entities to gather the tables & views referenced by a procedure. That assumes that the procedure is not dynamic SQL though.

  • RE: Does database desingning means normalization? How much weightage goes for it in DB Design?

    sawantpl@gmail.com (12/28/2010)


    Thanks Grant Fritchey.

    Can you please complete my example & give solution for 3NF.

    Honestly? I don't think so. I don't have enough understanding what that data represents to give you...

  • RE: Where does the Schema Design Fit in?

    Short answer, right at the beginning.

    Just be careful with the nomenclature. Schema can mean the database design and it can mean the owners of the objects within the database....

  • RE: Data Center Move

    We did this 18 months ago. We were able to schedule downtime, so we went with the simple process of a backup, copy & restore to move the databases to...

  • RE: SQL Server on development Workstation

    Only as you implement more and more functionality, Reporting Services, Analysis Services, otherwise, by and large, running the SQL Server service is about the same. However, we have hundreds of...

  • RE: Scheduled PowerShell job failing

    I've seen errors like this and they've always been a security issue. I'd double check that the job is running under the account you think it is and that that...

  • RE: Change schema in stored procedure

    Export the stored procedures out to a script or set of alter scripts. Make the changes in the scripts. Run the scripts against the server.

    For a mechanism to automate...

  • RE: Does database desingning means normalization? How much weightage goes for it in DB Design?

    1. Normalization is a part of design, as Paul says. The amount of weight that goes behind it? A lot. You really should normalize the database design properly or you...

  • RE: Strike Force

    I've been working for a large company and I set up, what we used to call in the Navy, a "Tiger Team." It was meant not as a leadership team...

  • RE: Database corrupted

    homebrew01 (12/23/2010)


    Would the default trace files be of use to at least get some information about what heppened between 12:00 and 4:00 ?

    Nope. The default trace does not capture DML...

  • RE: Database corrupted

    You've got a "very important" production database and no log backups and an untested recovery process? It's either not actually "very important" or you guys have a long and painful...

  • RE: Can I speed this TSQL up?

    I might be missing something, but couldn't you just do a GROUP BY on the date with a count? Seems like that would be a lot easier than loading temporary...

  • RE: Restore Database Bogs Down Server

    dajonx (12/22/2010)


    Oh wow, that DBA bunch price is very good compared to just LiteSpeed's license. I'm completely drooling over the virtual restore (since I'm wishing that I have that...

Viewing 15 posts - 13,756 through 13,770 (of 22,213 total)