Forum Replies Created

Viewing 15 posts - 46 through 60 (of 92 total)

  • RE: MSDE what does Database Size of 2GB mean?

    As far as I am aware no but they both have have a concurrent workload governor that limits the performance of the database engine kind of like those governors in...

  • RE: MSDE what does Database Size of 2GB mean?

    You are limited to 2GB total.

  • RE: Calculate and Carry-over Balance

    This is purely off the top of my head but wihtout using temp tables or cursors the way I would do it is to add another column, an identity column...

  • RE: RAID configuration

    Ideally the log should be on a mirrored drive as you cannot afford to lose it and the activity on it will be mostly writes. The data files may have...

  • RE: DBA Cert advice needed.

    For the guy doing the VB exams. They ask you a lot of stuff you may only ever need to know except for the exams (VB 6) so don't rely...

  • RE: Union 2 tables

    aggrevating aggregation

  • RE: Updating Select columns in a View

    Use getdate() function on an update trigger for the table to populate your lastupdated field and don't make the 2 columns visible in your view.

  • RE: Union 2 tables

    SELECT * FROM

    (select Siteid as Vessel,callid,sum(airtime) as total_minutes into tempweek from oldbill02 with(index(siteid)) where callwhen >='12/31/2002' and substring(callnbr,5,3)<>'976' and siteid<>' ' ) as A

    UNION

    SELECT * FROM

    (select Siteid as...

  • RE: Union 2 tables

    quote:


    select Siteid as Vessel,callid,sum(airtime) as total_minutes into tempweek from oldbill02 with(index(siteid)) where callwhen >='12/31/2002' and substring(callnbr,5,3)<>'976' and siteid<>' ' group by siteid,callid

    ...

  • RE: Table Locking

    Not quite the intent shared prevents updates or deletes by another transaction but you can still read the rows.

  • RE: Table Locking

    If you select is for a report or something else that just needs to unrepeatable reas at thae point in time then use a NOLOCK hint in the select statment...

  • RE: Table Locking

    quote:


    An intent lock indicates that SQL Server wants to acquire a shared or exclusive lock on some of the resources lower down...

  • RE: Worst Practice - Bad Comments

    Any suggestions on the best approach to tackle such a situation if you inherit it?

  • RE: Worst Practice - Bad Comments

    Is there anyone out there at the other end of the scale. With a live constantly evolving production system with next to no comments and no documentation? Yes I know...

  • RE: Delete statement taking a LONG TIME

    Another good reason for braking the task into chunks is in case of rollbacks. If you perform the delete in one big chunk and are unlucky enoough to have to...

Viewing 15 posts - 46 through 60 (of 92 total)