Forum Replies Created

Viewing 15 posts - 1,006 through 1,020 (of 1,221 total)

  • RE: SQL Server 2000 Standard memory flatline

    Are you running dynamic memory allocation for the database server? If so, perhaps the server just doesn't think that it needs any more. I wonder what you'd get...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Why would you back up the transaction log only once a day?

    Yep. I had to switch to a new program and make sure it ran while I was working on it. I frequently try to remember to do a...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Why would you back up the transaction log only once a day?

    It's only 3.6gig now, we haven't brought our utility billing online yet! Also it's only been in use about 18 months with payroll coming online only three months ago,...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Cannot Backup the Trans Logs

    Andrew:

    Arguments can be made that running a database in Simple Recovery Model is OK, I don't agree with that overall because it limits the recovery techniques that can be applied...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: What can it be?

    Did you thrash them soundly with a Cat6 cable? Be sure to use the ones with metal clips!

    There's a reason why we back...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: The Journey to Katmai

    Same here! We have around 200gig +/- in ArcInfo databases, I think the new spatial support will add some very cool capability but it's going to be a whole...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Friday afternoon hang-outs

    I wish! I live in the desert (Las Cruces, NM). It's usually 100f+ outside in the summer when I get off work, the sand would be at White...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: DBA without system administrator privileges

    I assume that you have a test database that you can run your code against, or is everything desk checked?

    I have no problem with the network admin guys not having...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: to find ORPHAN logins in SQL Server 2000?

    2005 (or is it 2008? I don't recall) has login triggers and DDL auditing, so it would be pretty easy to track "last logged in" info. Have a...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Verifying SQL server backups - how do I tell if they failed

    Since there are so many instances, you don't have a single point that you can query to get that info unless all the servers are linked, and I think that...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Verifying SQL server backups - how do I tell if they failed

    I would create a job that runs a CMD file after your last backup should have completed that would pipe the log through Find looking for errors. Email the...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: to find ORPHAN logins in SQL Server 2000?

    Not readily. You can monitor logins through SQL Profiler, but I think that's about it for 2000. With 2005, there's a lot more that can do this for...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: How to change the SQL server 2000 Product Key without reinstall

    It might depend on the version whether or not you have to plug in a key. I have to on my 2005 Developer Edition.

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Table size in DB

    Browse the scripts section of this site, there's several that might do the trick for you, or at least give you the framework to write something that does exactly what...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

  • RE: Data Verification

    Though you don't like counts, I'm doing something along these lines:

    declare @cmd1 varchar(4000)

    set @cmd1 = 'select ''?'', checksum_agg(binary_checksum(*)), count(*) from ?'

    exec sp_msforeachtable @command1=@cmd1

    By comparing the aggregate checksums, I have much...

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

Viewing 15 posts - 1,006 through 1,020 (of 1,221 total)