Forum Replies Created

Viewing 15 posts - 661 through 675 (of 966 total)

  • RE: DBCC FREESYSTEMCACHE equivalent?

    What about using DBCC FREEPROCCACHE and DBCC DROPCLEANBUFFERS?

    Joie Andrew
    "Since 1982"

  • RE: MSSQL services do not show up under services

    What shows up when you open up SQL Server Configuration Manager and check the services section?

    Joie Andrew
    "Since 1982"

  • RE: Need management tips

    This sounds similar to what MS wants to do with data-tier applications in SQL 2008 R2.

    Understanding Data-tier Applications

    Joie Andrew
    "Since 1982"

  • RE: Checking owner of SQL files

    dir $path -Recurse | ft FullName | ForEach-Object {(Get-Acl $_).Owner}

    I think this may not be working because foreach-object needs to reference an array object to work like foreach-object {<$object> in...

    Joie Andrew
    "Since 1982"

  • RE: SQL server 2000 RAM limitations.?

    With Windows Server 2003 using /PAE and AWE you can address up to 64GB of RAM. I would say at least 2-3GB would be needed for the OS leaving whatever...

    Joie Andrew
    "Since 1982"

  • RE: performance issue

    We cannot change any settings on prod without an rfc even if it doesnt need a downtime

    If this is the case then you should stress to your management that the...

    Joie Andrew
    "Since 1982"

  • RE: Dynamic disk expansion

    I agree with Dan. We still have some operational 2000 instances that we have not been able to migrate to 2008 yet, and with our SAN vendor we can increase...

    Joie Andrew
    "Since 1982"

  • RE: Running Enterprise Manager on an XP workstation

    Have you applied SQL 2000 SP4 on your workstation? If not I would try that and then try connecting again.

    Alternatively, since you have a SQL 2005 instance also deployed, why...

    Joie Andrew
    "Since 1982"

  • RE: Rebuilding index failed

    Run dbcc (<db name>) updateusage to update the page count and then rerun dbcc checkdb (<db name>) with no_infomsgs, all_errormsgs to ensure that there are no more errors in the...

    Joie Andrew
    "Since 1982"

  • RE: 2005 agent job - powershell job step

    Something I just forgot. Make sure that the powershell environment is setup to run scripts. By default scripts are disabled in powershell. You need to make sure that the execution...

    Joie Andrew
    "Since 1982"

  • RE: Rebuilding index failed

    What do you get when you run the following:

    dbcc checkdb (dbname) with no_infomsgs, all_errormsgs

    Joie Andrew
    "Since 1982"

  • RE: 2005 agent job - powershell job step

    If powershell is installed on the server, just create a cmdexec step and in the command box just type the following:

    "c:\windows\system32\windows powershell\v1.0\powershell.exe" -file <file>

    Where <file> is the location/name of your...

    Joie Andrew
    "Since 1982"

  • RE: Email Notification job step failed

    Just for clarification, are the e-mails actually getting sent out to the intended recipients? It almost sounds like the SMTP server the job is using is rejecting to send the...

    Joie Andrew
    "Since 1982"

  • RE: Compare 2 fields in the same table Using LIKE '%[fieldname]%'

    I do not think comparing fullname to surname like that would be wise, because even if the data was correct it would come up as true. For example 'John Smith'...

    Joie Andrew
    "Since 1982"

  • RE: Tablediff utility in SQL 2005

    Well, since you are loading your dev environment with your production environment if replication breaks down and you cannot get it back up you can reinitialize replication.

    You could do...

    Joie Andrew
    "Since 1982"

Viewing 15 posts - 661 through 675 (of 966 total)