Forum Replies Created

Viewing 15 posts - 571 through 585 (of 2,436 total)

  • RE: What''s an Outage?

    Lots of good information so far. Although there seems to me to be two different categories of businesses that categorize 'outages' - NON-MS companies have standards for doing this most...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Can''''t expand Databases node

    I would connect to the server using QA and then execute a few things:

    • sp_helpdb
    • dbcc checkdb(master)
    • dbcc checkdb(user_database)

     

    If these tings function correctly I would probably reinstall EM on the client machine.

    However of...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Recruiters

    Finding a good recruiter is very much like finding a new job. You should be interviewing them just as much as they you, if not more. I say this because...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: SP to get Server Users

    It is not theft

    more like 'object reuse'

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: SQL Server Agent service security context

    Let me see if I am on the same page ... You have written a service application that duplicates, for all intents and purposes, the SQL Agent. If I am...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Large file LOCKINFO

    There is no file created by SQL Server that I am aware of. I would say just delete it. My guess as to the files origin is one of two...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: How do I copy the contents of a TABLE and dump it to a csv or txt file ?

    Please do not double post:

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=324&messageid=397907

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: The Cloud

    The 'Cloud' ???

    No Way Jose !!!

    MS already has their fingers into too much already, including our collective wallets. Do you want them to pilfer a...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Third Party encryption and tempdb

    You could just delete the tempdb mdf and ldf files ... but that opens up another can of worms ... you have to clean out the deleted files folder too...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Intermittent Login Timeout

    noeld what were the 'other' conditions that you allude to. I ask because the shop I just came from experienceds a mass logon ever M-F of roughly 500-700users between 7:30...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: How to run a script against all user databases

    Slightly incorrect ... if the stored procedure is created in the master database and prefixed sp_ you can execute it in any database ... the databasename sets the execution context (use...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: How to run a script against all user databases

    In most instances:

    USE databasename

    go

    exec sp_reindexing_procedure

    is equivalent to:

    USE master

    go

    exec databasename..sp_reindexing_procedure

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: How to run a script against all user databases

    Out of curiosity why do you need to create the same SP in all user databases ? When  a stored procedure prefixed with sp_ in the master database accomplishes the...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: How to run a script against all user databases

    Try this abbreviated version Ryan:

     

    SET NOCOUNT ON

    USE master

    --create "array" of db names

    DECLARE for_each_loop CURSOR

    FOR SELECT name FROM sysdatabases WHERE name NOT IN ('master', 'model', 'msdb', 'tempdb', 'Northwind', 'AdventureWorks')

    OPEN for_each_loop

    DECLARE @name...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Third Party encryption and tempdb

    I believe that anything in tempdb will be on the disk only when SQL Server experiences a dirty shutdown (beter know as crash). If you look at the C: drive...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

Viewing 15 posts - 571 through 585 (of 2,436 total)