Forum Replies Created

Viewing 15 posts - 45,811 through 45,825 (of 49,571 total)

  • RE: DBCC commands

    They are extremely resource intensive. You should not run them when you have users accessin the DB. If you have downtime over a weekend, run the checkdb then

    You should (imho)...

  • RE: Coming In August

    cmille19 (7/10/2008)


    One other feature with SQL 2008, which is seldom mentioned is the new multi-server query in SSMS 2008.

    Works against 2000, 2005, and 2008 servers.

    It works to SQL...

  • RE: Indexes & FillFactor

    PeterG (7/10/2008)


    The database grows every week so it sounds like i don't have to worry about shrinking. Auto shrink is on. Turn it off??

    Yes. That's the reason your indexes...

  • RE: failed login attemps as sa from multiple ips

    ltoso (7/10/2008)


    Hi,

    another question poped into my mind, if we rename the sa account will the sa account privileges be transfered for all databases to the new account the we have...

  • RE: Indexes & FillFactor

    Perry Whittle (7/10/2008)


    if you are going to shrink, at least do it after the index rebuild as pages will be moved around. If you specified a fill factor of 50...

  • RE: Date Function

    Jeff Moden (7/9/2008)


    Nicely done, Gail... It shows that the Convert method takes about 4 times longer than the DateAdd/DateDiff method...

    If I hadn't done a test, you probably would...

  • RE: Database Stack dump problem any ideas ??

    You may be able to get some info from the text file that accompanied the dmp. There's usually a section which contained the input buffer, but there are many cases...

  • RE: Database Stack dump problem any ideas ??

    I suggest you contact Microsoft's customer support services. They can help you with stack dumps.

    The mdmp is a mini memory dump. If you have the windows debugger, you can open...

  • RE: Invalid Class String Error

    Please don't cross post. It just wastes people's time and fragments replies. Many of us read all the forums.

    No replies to this thread please. direct replies to:

    http://www.sqlservercentral.com/Forums/Topic531646-19-1.aspx

  • RE: what is effect of Go in stored procedure

    GO is not a T-SQL command. It's understood by client tools only, and signals the end of a batch.

    You can't put a GO into a stored procedure, because as soon...

  • RE: moving database to another machine

    BAD-DBA-DAB (7/10/2008)


    Hi,

    Copying mdf & ldf is a bad practice.

    Why?

  • RE: failed login attemps as sa from multiple ips

    BAD-DBA-DAB (7/10/2008)


    Reference:

    http://support.microsoft.com/kb/319930

    That's for MSDE (SQL 2000). The Original Poster is using SQL Express (SQL 2005)

    ltoso: You can rename the sa account the same way you rename any other account....

  • RE: moving database to another machine

    JeeKay (7/10/2008)


    When you attach the .MDF file back at the destination, you can manually remove the log file from the list and after attaching put the DB in FUll Mode...

  • RE: failed login attemps as sa from multiple ips

    Not from within SQL.

    Are you running with mixed authentication mode?

    If you are, you can in SQL 2005 disable or rename the sa account. That gives you a little...

  • RE: is startup time held in any view?

    It's not stored anywhere alone that I know of.

    I usually query sys.dm_exec_sessions and get the login time of session_id 1. It's the Resource Monitor and it starts when SQL starts...

Viewing 15 posts - 45,811 through 45,825 (of 49,571 total)