Forum Replies Created

Viewing 15 posts - 8,086 through 8,100 (of 9,715 total)

  • RE: Use multiple data files for large content database

    Do not mistake "want" for "need". There is no need. Technically, you could run a 1 TB size database on one file and one filegroup.

    The idea of splitting your database...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Drop all connections

    The one thing to note about killing connections this way is that it does NOT prevent those connections from reconnecting after they've been disconnected. The best way to do that...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Pros & Cons of setting the Initial Size of a Log File to its estimated Max growth

    I agree with Grant. If you can do it, go for it. I don't see any Cons to the situation and only Pros.

    Just don't make the mistake of setting Max...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Rebuild and Reorganize Indexes

    What exactly is your definition of a "Blocked Index"?

    I've never heard that term before and I find myself wondering what it has to do with allow_page_locks being on or...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Use multiple data files for large content database

    Not sure what MOSS is, but here goes.

    gmamata7 (3/29/2010)


    2. What are the exact steps I need to follow to create secondary data file?

    Open up Books Online and lookup ALTER DATABASE...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Drop all connections

    river1 (3/29/2010)


    I'm receiving this error when executed the stored procedure that i posted:

    Msg 217, Level 16, State 1, Procedure RemoveLigacoes, Line 48

    Maximum stored procedure, function, trigger, or view nesting level...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: SQL 2005 - MDF deleted LOG file available

    Full backup is not the same thing as Full Recovery Mode.

    Right click the database, go to Properties. Check the Options page in the popup window. Does the second line (Recovery...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: SQL Server is taking over 90% of RAM of the server

    Satish-219904 (3/29/2010)


    How can i assign the 'lock pages in memory' right to the service account running SQL?

    You have to assign that right through the Active Directory GPO. If the the...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Drop all connections

    And apparently we never caught the "all connections on the server" part of the OP.

    DOH!

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: dropping multiple jobs

    shanila_minnu (3/29/2010)


    wat is the difference between date_modified and run_time.when i executed like below

    SELECTb.run_time,b.run_date,a.date_modified,*

    FROM

    MSDB.dbo.sysjobs a inner join MSDB.dbo.sysjobhistory b

    on a.job_id=b.job_id

    where a.date_modified > '2006-08-17 12:22:14.440'

    it is showing both run_date,date_modified almost simillar

    The date_modified...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: dropping multiple jobs

    One potential problem I see right off the bat. You're dropping the job off it's modified date instead of it's last run date, which is what you originally wanted. If...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Need freq. updated, writeable copy of OLTP db for reporting

    Why not just do a restore-from-backup to the reporting instance and create the indexed views as part of the job that auto-restores for you?

    EDIT: Then add specific perms for the...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: Drop all connections

    Oh, well, I suppose *that* works too.

    @=)

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: dropping multiple jobs

    No, I don't have a query. I've never needed to write one.

    It's not that hard, though. Look up the code in Books Online. It's the best way for you to...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • RE: SQL Server is terminating in response to a 'stop' request from Service Control Manager

    If this has happened to you recently and you're running Windows 2003 SP 2, you need to check out the following links:

    Microsoft Support about SP2 and TCP Chimney

    KB Alertz about...

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

Viewing 15 posts - 8,086 through 8,100 (of 9,715 total)