Forum Replies Created

Viewing 15 posts - 121 through 135 (of 411 total)

  • RE: need backup strategy

    Chandio, for the way you are describing your set up, you will need to write a script to check the dates and delete them after they expire. You can...

  • RE: SQL Server Database Design Question - Alot of Tables Not Linked

    Dharris, as I understand it links have very little impact (note that I did not say none, especially on the insert and update side, but little) on the speed of...

  • RE: UNION of 2 tables

    Alvin Ramard (3/19/2009)


    timothyawiseman (3/19/2009)


    Alvin, I think it is a case of ensuring the students know the technique for doing it, even if it is one that they may not initially...

  • RE: UNION of 2 tables

    Alvin, I think it is a case of ensuring the students know the technique for doing it, even if it is one that they may not initially use as beginnings.

    Remember...

  • RE: sql code question.

    Bruce W Cassidy (3/17/2009)


    [font="Verdana"]You can generally use object-level security to ensure that the only the stored procedure has rights to write to the table.[/font]

    Technically true, but I have been in...

  • RE: sql code question.

    Bruce W Cassidy (3/17/2009)


    [font="Verdana"]The best way is to use gateway stored procedures to handle your inserts and updates. So they can insert and update into the various tables as...

  • RE: UNION of 2 tables

    munderhill73525 (3/17/2009)


    I thought that too but I am taking a SQL Server class and the assignment specifically says to:

    Write a SQL query that uses UNION of the...

  • RE: On Indexes and Views

    Carla;

    There are definitely numerous design considerations.

    First, the view has to be schema bound. This makes it harder to change any objects the view depends on (you have to remove...

  • RE: Correlated Joins Using "Apply"

    Alex Ionine (6/16/2008)


    it could be a descent article had it been written 2 years ago.

    I have to disagree. Given SQL Server 2005's age now, I would not have emphasized...

  • RE: Monitor Any Linked Server From SQL 2005

    Excellent script. This should prove useful after tweaking for this specific environment.

  • RE: are these fields appropriate for clustered index

    Generally, I would not recommend using a multicolumn primary key/clustered index. You may be best finding a single column for your clustered index and then creating multicolumn indexes for...

  • RE: Organizational tools that can help you be a better DBA

    The article was well done, but it was not really relevant to this site.

    Since we are talking about firefox extensions, I find the del.icio.us extension to be top-notch personally.

  • RE: Quickly Copying Databases from SQL Server 2008 to SQL Server 2005

    john g (2/11/2009)


    If network bandwidth is most critical, you will most likely have to export the data to local disk, then compress, push across, uncompress at the destination, then load.

    Hopefully...

  • RE: Missing indexes and query plan

    I didn't read closely enough the columns listed to see that they could be easily merged. That would definitely be better in this case.

  • RE: Missing indexes and query plan

    They are not redundant since they have different total indexed columns and completely different included columns.

    But, there is a disadvantage to having both. Remember that whenever you do any...

Viewing 15 posts - 121 through 135 (of 411 total)