Forum Replies Created

Viewing 15 posts - 796 through 810 (of 831 total)

  • RE: Database dropped but Maintenance plan still tries to back it up

    Last time this happened to me I just changed the existing plan to "All Databases" and then changed it back to selected databases with the appropriate ones ticked--fixed the issue...

  • RE: Preventing usage of "SELECT *..."

    I believe I made that comment, and it was not ever intended to say that SELECT * should be removed--as you rightly say, it is a useful development tool. I...

  • RE: Intel or AMD CPU for SQL Server 2005 (Local Development)

    I'm really not sure it makes such a difference. Presumably you're just using this data set on a local machine for development work, after all. It's also an impossible question...

  • RE: Closing out 2009 early?

    The only holidays I'm getting this year are Christmas Day and Monday 28th December, and I'm only getting those because they're bank holidays in the UK! My colleague doesn't even...

  • RE: SQL server 2005 Express Backup

    If the MDF isn't attached as a database you could back it up by just copying the file somewhere else--it won't be locked if SQL server isn't using it.

  • RE: dbcc shrinkfile and size of data

    Disk space cost isn't really relevant because of the simple reason that if the database was once 45Gb (or whatever) then it'll probably need to be that size again at...

  • RE: Limit SQL to use only 1 cpu

    I'd agree with Express Edition as well. The main limitations on 2008 Express are that it can't use more than 1Gb of RAM, only uses 1 CPU, and your databases...

  • RE: SQL server 2005 Express Backup

    You could do this with a single SQL statement, rather than having to add a dump device:

    BACKUP DATABASE AdventureWorks TO DISK='Z:\SQLServerBackups\AdvWorksData.bak'

    Does that work?

  • RE: How long is a NULL?

    Just tested it with a database in SQL 2000 compatibility mode (80) and it still returned 12345, at least on my system. Could it have changed in a SQL service...

  • RE: How long is a NULL?

    Are you still running SQL 2000? The question specified SQL 2005.

  • RE: How long is a NULL?

    Yes, I found this bizarre behaviour the first time I encountered it. Just did a quick experiment on a SQL 2008 installation and I see it still does the same...

  • RE: calculate Avg.Disk Queue length

    I'm unclear on what you're asking. The output from Perfmon already IS the Average Disk Queue Length, there's no calculation involved...and the values you've got there look absolutely fine.

  • RE: The DBA Boat

    I usually end up calling myself "factotum" on Internet fora and the like...seems appropriate to name myself as a jack of all trades, given that's what I usually end up...

  • RE: Identify database from .mdf file name

    Or else the account that the SQL Server service is running under doesn't have permissions to access that folder--quite possible if this is a really old database and the account...

  • RE: ^ : T-SQL

    ronmoses (11/20/2009)


    I got tripped up on the fact that the string didn't end with %. So I answered the question for 'Jo[^n]%' instead of 'Jo[^n]'. Oops.

    Same mistake here...

Viewing 15 posts - 796 through 810 (of 831 total)