Forum Replies Created

Viewing 15 posts - 8,131 through 8,145 (of 9,244 total)

  • RE: Installing SQL 2008 on SQL 2005 box

    Hi

    only if you install SQL Server 2000 does it have to be a default instance and must be installed first before SQL Server 2008. Otherwise it doesnt matter. As Paul...

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

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

  • RE: 2008 Report Server - where are my files ?

    Hi

    the following is a great little utility I use for managing and extracting reports, etc from SSRS

    http://www.sqldbatips.com/showarticle.asp?ID=62

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

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

  • RE: List of remote desktop connections

    Hi

    you may also want to post this in the appropriate forum in future

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

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

  • RE: to find count of rows

    Naresh

    you could try

    declare @rows int

    select * into dbo.users_new from dbo.users

    select @rows = @@rowcount

    Print 'Rows copied = ' + cast(@rows as varchar(10))

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

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

  • RE: Cluster rebuild

    Casper101 (3/29/2010)


    Hi,

    We are in the process of rebuilding a cluster with new hardware. The current 2-node cluster is running SQL Server 2005 (Server A) and the new cluster has SQL...

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

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

  • RE: Resize Transaction Log Default Size to Less Than It's Current Size

    as Jeffrey said DBCC LOGINFO and check for anything with a status of 2 near the bottom of the output. SQL server will not truncate or shrink (they are both...

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

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

  • RE: Login failed for user - Microsoft SQL Server, Error: 4064

    ourehman (3/30/2010)


    Can you login with some other admin account.

    see my post immediately above, he needs to confirm he is logging into the correct instance first!

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

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

  • RE: Login failed for user - Microsoft SQL Server, Error: 4064

    paulc.byrum (3/29/2010)


    The description for Event ID ( 18456 ) in Source ( MSSQL$MICROSOFT##SSEE ) cannot be found. The local computer may not have the necessary registry information or message DLL...

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

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

  • RE: SQL 2005 REINDEX VLDB

    Hi Paul

    got that

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

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

  • RE: SQL Upgrade 2000 to 2008

    Youngoz

    upgrade straight to 2008, just bear in mind what i previously pointed out and as Jeffrey said update your stats too. The full rebuild should catch most of those anyway,...

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

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

  • RE: SQL Upgrade 2000 to 2008

    whether upgrading to SQL server 2005 or 2008, immediately after run DBCC UPDATEUSAGE and rebuild all indexes. Also run DBCC CHECKDB with DATA_PURITY to ensure your database(s) have no metadata...

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

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

  • RE: SQL 2005 REINDEX VLDB

    pandrikopoulos (3/28/2010)


    Perry,

    I agree in general with your suggestions but you should take into account that the database hosts a SAP application. SAP has some restrictions in the way a database...

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

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

  • RE: Login failed for user - Microsoft SQL Server, Error: 4064

    what info does the event log show?

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

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

  • RE: SQL 2005 REINDEX VLDB

    when upgrading from SQL Server 2000 to 2005 you are well advised to run DBCC UPDATEUSAGE and rebuild all indexes.

    Having said that when carrying out normal maintenance on a SQL...

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

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

  • RE: Log shipping

    scripting the login accounts from the primary to the secondary should take care of any SID mismatches. Or just use the SP_Change_Users_Login stored procedure

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

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

Viewing 15 posts - 8,131 through 8,145 (of 9,244 total)