Forum Replies Created

Viewing 15 posts - 1,546 through 1,560 (of 2,387 total)

  • RE: Why would SA not have all Rights?

    What service account do you use to start SQL Server and Agent services? Is it in local administrator group?

  • RE: Memory Problems

    Do not set set working set size if you are allowing SQL Server to use memory dynamically. Before setting set working set size to 1, set both min server memory...

  • RE: Space Available 0.0

    Do you mean database available space is 0.00MB? Try to run sp_spaceused @updateusage = true to the database and go back to check it.

  • RE: Why would SA not have all Rights?

    Does the login you used have permission to run this command? Can you post exact error message from QA?

  • RE: marked SUSPECT by recovery

    What version of SQL Server and service pack are you running?

  • RE: Allowed Connections

    Try to start SQL Server with minimal configuration from DOS with 'sqlservr -c -f' and run sp_configure to change it back.

  • RE: Which databases does the service pack change?

    I think service pack touchs only system databases. You need to watch the performance after the movement and maybe have to update database statistics and perform optimization to your database.

    ...

  • RE: marked SUSPECT by recovery

    What error messages show in SQL Server errorlog?

  • RE: Error logs and Event viewer

    Each time server is rebooted, A new SQL Server errorlog will be created with startup informations that indicate SQL Server is restarted. In privious errorlog, A message 'SQL Server is...

  • RE: Executing stored procedure from MS Access

    1. Pass-through query

    2. Programming Modules in Access using VB.

  • RE: SQL Agent Auto-restart in a cluster

    SQL Server Agent maybe fail to start after fail-over. Check SQL Server Agent log (Display error log) from EM and review machine application/system logs too.

  • RE: Database alter

    Use pubs as example. I have added second filegroup (secondgroup) and senond file (pubs2) to the secondgroup. Now, run following commands to remove the second filegroup.

    dbcc shrinkfile(pubs2, emptyfile)

    alter database pubs...

  • RE: Database alter

    Before removing a filegroup, you need to know which files are in this filegroup and empty these files and then remove them.

  • RE: Already sorted?

    Create clustered index to the table.

  • RE: Old and Unwanted Logins

    No ideas how they produce the report. They might trace the logins by examining transaction log or using Profiler to trace who are accessing SQL Server and create histroy logs...

Viewing 15 posts - 1,546 through 1,560 (of 2,387 total)