Forum Replies Created

Viewing 15 posts - 301 through 315 (of 340 total)

  • RE: The FILESTREAM Data Type in SQL Server 2008

    Designers of document storage and mgmt apps (with large document objects) had to decide where to store the objects. These included document management systems like LiveLink, and more recentlySharepointt....

  • RE: Covering Index Vs Composite Index

    A covering index just means that the query does not have to go to the table for any attribute values. The attributes can either be part of the index, or...

  • RE: Question

    yea, the string functions in T-SQL are not vast, but if you work them, they can do the trick.

  • RE: mirror

    Agree with Steve, there is almost no reason not to have a witness. You can use the express version, so cost is not an issue. There should be...

  • RE: What Would You Recommend for Internal Web-App. Reporting?

    It sounds like you have total freedom to explore all roads to meet your needs, but if your company has paid for Crystal, you may want to take some time...

  • RE: How do YOU use VIEWs?

    Like all aspects of a database, or development for that matter, views have +/-'s . learn all aspects of the database so you can use them wisely

  • RE: 3nf, functional dependancy and head exploding

    The amazing thing is that normalization is really simple and straight forward. 4th normal form can get a bit much, but other than that, it all makes sense. ...

  • RE: Restore with no backup

    And don't forget to test the backups

  • RE: automate restore db

    Unfortunately, this is not a topic that can be quickly addressed in a forum. But if you use SSIS (its part of SQL Server) you can automate the process to...

  • RE: automate restore db

    Use SSIS. Then you can automate the process to move a copy of your database backup from prod to where ever. If the backup is zipped, or if you...

  • RE: ForEach File Enumerator:How to trap for a known missing file

    Interesting. So is filepath a declared user variable?

    I'm dynamically building the Filespec via expression, since I already know what the file name should be, if it exists. I...

  • RE: mirroring question

    They Do Not have to be similar.

    Mirroring is totally independent of the physical setup.

    The load on the mirror is only about 20% or less as the load on...

  • RE: 3nf, functional dependancy and head exploding

    A quick way to remember Boyce-Codd normal form, which is the typical end point (its a little past 3nF) is with this saying:

    An attribute should be dependent on the key,...

  • RE: DB Model analysis

    Reveiwing a database schema absent any business requirements is difficult, perhaps impossible. Start with the business requirements.

  • RE: How do YOU use VIEWs?

    With the progression of the database/object abstration tools like MyGeneration/DooDads/EntitySpace/Hibernate, views offer the DBA/SQL developer the ability to pre-design application queries that can then be used easily by the development...

Viewing 15 posts - 301 through 315 (of 340 total)