Forum Replies Created

Viewing 15 posts - 7,066 through 7,080 (of 9,244 total)

  • RE: Data file has been dropped but sql server wont let go

    GilaMonster (6/8/2011)


    it's 0 times in 6 years.

    wow, as often as that Gail 🙂

    bopeavy (6/8/2011)


    And this Kind of thing is a pain when I have to get a time slot...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Data file has been dropped but sql server wont let go

    Perry Whittle (6/8/2011)


    Although you have removed the file it cannot be truly dropped until you restart the database, as this is tempdb you must restart the SQL server services (no...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Data file has been dropped but sql server wont let go

    Although you have removed the file it cannot be truly dropped until you restart the database, as this is tempdb you must restart the SQL server services (no reboot required)

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Data file has been dropped but sql server wont let go

    Perry Whittle (6/8/2011)


    what command did you use to drop the files?

    :Whistling:

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Data file has been dropped but sql server wont let go

    what command did you use to drop the files?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: How to change the Domain Groups in Cluster Security Policy after installation

    rahulr.sharma (6/2/2011)


    Hello All,

    My motive here is to look for a means to change the Security domain groups that are used for the Clustering services, after the installation is performed.

    These...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving Instance from Drive to Drive on same server

    When moving user databases you dont need to detach them at all.

    Issue the alter database modify file statements which will set the new paths. Take each database offline in...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Can I upload the profiler trace file into reporting services to get a report...

    Typically you dump the trace file output into a SQL server table and then query against that

    USE Mydb

    GO

    SELECT * INTO mytracetable

    FROM fn_trace_gettable('c:\temp\mytrace.trc', default);

    GO

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Data and Log files, where to keep them using industry best practices.

    alan.fisher (5/31/2011)


    Hi I have one SQL Server with about a dozen relatively small databases. I had the data and backup folders all on the same drive (C:\MSSQL10.MSSQLSERVER\MSSQL\Data &...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server stripe and allocation size

    Hi

    both 64k and 256k are optimal stripe sizes for SQL Server. The theory behind the 256K stripe size is that a larger stripe size generally incurs less I\O with 64k...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL 2005 server unexpectedly shuts down

    have you run DBCC checkdb against your system databases

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Restore database error.

    at a wild guess i would say the original disk locations do not exist on the new server.

    Does the new server have the same drive letters and paths?

    If not you...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: tempDB quiz- how to manage 2-nd file

    again, I'll reiterate, as long as the model database is available

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Orphan DB

    do you mean orphaned database user?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: tempDB quiz- how to manage 2-nd file

    for Tempdb you don't need to do anything. Tempdb is recreated each time SQL Server starts. It does however rely on the model database being available.

    If you remove the...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 7,066 through 7,080 (of 9,244 total)