Forum Replies Created

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

  • RE: TEMPDB Administration

    A little more information if you please:

    Are the O/S and program files located on any of these drives?

    Does this instance host more than 1 database (other than the system databases)?

    Speaking...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Why my tempDB log bloted?

    In theory, if the SQL service is never restarted, and the server never gets rebooted, then tempdb is never recreated.

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: SQL login security

    May I suggest: DENY VIEW ANY DATABASE TO [login]. When VIEW ANY DATABASE is revoked, the user can only see master, tempdb, any database he owns, and the...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Installing SQL Server on a remote server?

    The other option is to copy the media to a UNC that is accessible to both your local PC and any servers you wish to install SQL Server on. ...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: DB Restore

    No, for a few reasons.

    1. You've already restored the data file and did not leave the database in a state to restore additional log files (so I assume).

    2. ...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: upgrading sql server 2000 to sql server 2005.

    Also, afterwards you can script out the tables you've added to your SQL 2000 system databases and recreate them in a new user database on SQL 2005. You can...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Is there a reason why i get an error on line 4 next '=' ? Are variables not aloud in subqueries???

    Good Point GSquared. Thanks for the clarification. The syntax for this query is fairly wonky and I'm not used to coding in this manner on a regular basis.

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Is there a reason why i get an error on line 4 next '=' ? Are variables not aloud in subqueries???

    I would focus on the derived table:

    (SELECT @list_id = COALESCE(@list_id + ', ', '') + ' ' + LTRIM(RTRIM(pit1.secondary_id))

    FROM partyInfoTable pit1

    WHERE pit1.primary_id = pidt.primary_id) as list_id

    Pay close attention...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Is there a reason why i get an error on line 4 next '=' ? Are variables not aloud in subqueries???

    Did you declare the variable first?

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Selecting the oracle provider causes linked server creation to freeze up

    1. Install the 64bit Oracle 10g Release 2 client on both nodes (default location for Oracle Home)

    2. Install the 64bit Oracle ODAC 10g Release 2 drivers on both nodes to...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Sql Server 2005 sp2 cumulative update 4

    You asked whether you needed to apply the patch to both nodes. What you did not tell us though was how many SQL instances are on this cluster. ...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Maintenance Plan setup questions

    I would also add that when it comes to re-indexing it is best to test the level of fragmentation in the individual indexes and perform index defrags or index rebuilds...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Steps for installing a SQL Server 2005 Cluster

    The forum is not really a good place to deliver this information. Books are written on the topic you're concerned about. I suggest you look through the Microsoft...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: A Failed Jobs Monitoring System

    Scott, do you really want an email every time a job fails on every SQL instance? Must have a lot of free time on your hands and space in...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: A Failed Jobs Monitoring System

    First of All: Nice Job TJay.

    I too built a similar system using linked servers in order to monitor failed jobs, backup history/backups out of date tollerance, databases::applications::servers, space issues...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

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