Forum Replies Created

Viewing 15 posts - 8,341 through 8,355 (of 9,244 total)

  • RE: logins - sql users after a restore

    if the server login exists and the database user exists in the database you only need to use

    exec sp_change_users_login 'Update_One', 'Current user in DB', 'SQL login to link to'

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: sqlserver.exe and memory usage

    xgcmcbain (3/11/2009)


    2) by limiting my ram, am i hurting my server in anyway? Now remember, in my environment none of my select statments are redundant so cachine a queiry...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: sqlserver.exe and memory usage

    queries are only a small part of what sits in RAM, you have the buffer pool too which comprises all the database pages read from disk to memory for modifying....

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Profiler

    hey, your welcome buddy 😉

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Getting a list of SQL Server Versions, Editions and users

    i think the windows registry would be the best place to look

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Delete historical data little by little and often, or a huge bulk more seldom?

    try running it once a week during a known period of low or no activity!!

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Does simple recovery model affect query running time?

    GSquared (3/10/2009)


    stuck with going back to your last full backup,

    or differential if you have them.

    Simple recovery logs just about the same as Full recovery although some transactions are minimally...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving SQL Server 2005 server from one domain to another

    what is the error you are seeing?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Profiler

    in Profiler select the "Audit Shema Object Access Event" and filter it to look for your database name and object name (this should match the name of the table)

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: How to change object owner......

    the following should generate the alter schema commands to change schema for any Stored Proc not owned by dbo

    select 'alter schema dbo transfer ' + sch.name + '.' + tab.name

    from...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Which exeutable file running behind the database?

    if a manager asks you to setup Perfmon to monitor sql server processes and uses (especially on a multi instance box) he wouldnt expect you to say " yeah i'll...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Which exeutable file running behind the database?

    i had a telephone interview last week for a job and the interviewer asked me to provide port numbers for some commonly used TCP ports (e.g. DNS, SQL, POP3,etc). If...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Which exeutable file running behind the database?

    GilaMonster (3/8/2009)


    Perry Whittle (3/8/2009)


    also depends on if they mean client or server side. Server process is sqlservr.exe

    Server or client, how important is it really for a candidate to know that?...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Which exeutable file running behind the database?

    also depends on if they mean client or server side. Server process is sqlservr.exe

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Urgent : Sql server db tuning

    Jeff Moden (3/8/2009)


    And there is no "run SQL Server faster" button

    aww shuks, i been lookin for that one LOL

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 8,341 through 8,355 (of 9,244 total)