Forum Replies Created

Viewing 15 posts - 376 through 390 (of 619 total)

  • RE: Installing my first multi-instance x64 2005 on Windows 2003 virtual cluster

    How are you connecting?

    Shouldnt be an issue with clients. I use 32 and 64-bit client and 2008 32-bit without issue. Also check the browser service is running (it isnt clustered).

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: Mirroring Advanced Settings - 2005

    Hey there,

    We run the same setup as you. We mirror 8 databases (MS suggested is upto 10 but not sure what stats thats based on). Our main database is bursty...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: Autogrowth

    I think the reason people tend to prefer MB over % is as you said due to percentage sizes.

    For example 10% of 1GB is 100MB (no problem); however 10% of...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: SQL Memory Issues

    Does sound like a buffer issue. I'm not sure if failing a mirror over, truncates the caches and query plans but if it did that would be why you...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: how to disable windows authentication in sql server 2005 Active active cluster

    Eduard (11/25/2009)


    Schadenfreude-Mei (11/25/2009)


    Why exactly are you trying to do this? It is a bit concerning that you dont have access to delete users but are talking about disabling them.

    You...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: SQL Memory Issues

    If you want to clear down the CLR and QUery plan caches you can use:

    dbcc freeproccache

    DBCC FREESYSTEMCACHE ('ALL')

    DBCC DROPCLEANBUFFERS

    But you really need to find out whats using your memory. Have...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: how to disable windows authentication in sql server 2005 Active active cluster

    Why exactly are you trying to do this? It is a bit concerning that you dont have access to delete users but are talking about disabling them.

    You also ask...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: Rebuild index

    Have you done any research into this? A quick google search generally reveals all..

    Some reading:

    http://www.sql-server-performance.com/tips/rebuilding_indexes_p1.aspx

    http://www.mssqltips.com/tip.asp?tip=1367

    http://msdn.microsoft.com/en-us/library/aa258828(SQL.80).aspx

    Have fun 🙂

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: Create SQL job in SQL SERVER 2005

    Henrico Bekker (11/20/2009)


    one .exe file? are you calling an application? not sure what you are up to...

    but....

    In BI, add a process task, and point it to your .exe

    save package into...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: Not able to print the message in the T-sql code

    luckysql.kinda (11/19/2009)


    This doesn't work eventhough the sqlos reads this line... I verified from the debug as well. Is there any setting that could have made this off?

    What is the output...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: SSIS package to be run by using a JOB in SQL server 2008

    USE [msdb]

    GO

    DECLARE @jobId BINARY(16)

    EXEC msdb.dbo.sp_add_job @job_name=N'{TEST JOB}',

    @enabled=1,

    @notify_level_eventlog=0,

    @notify_level_email=2,

    @notify_level_netsend=2,

    @notify_level_page=2,

    @delete_level=0,

    @category_name=N'[Uncategorized (Local)]',

    @owner_login_name=N'DOMAIN\USER', @job_id = @jobId OUTPUT

    select @jobId

    GO

    EXEC msdb.dbo.sp_add_jobserver @job_name=N'{TEST JOB}', @server_name = N'SQLSERVER'

    GO

    USE [msdb]

    GO

    EXEC msdb.dbo.sp_add_jobstep...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: running database clusters

    CirquedeSQLeil (11/16/2009)


    GSquared (11/16/2009)


    Jeffrey Williams-493691 (11/16/2009)


    GSquared (11/16/2009)


    If it has multiple peanuts, it's clustered. If it's just one peanut per database, then it's not. Seems simple to me.

    What if you...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: Database Mail (Configuration)

    You most likely need to 'relay' through your mail server. By default exchange does not allow this. Speak to your mail administrator.

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: How to identify the sql 2000/2005/2008 service

    If you right click on the service and select properties, you'll see the path to the actual .exe and based on thaat you should be able to work out (ie...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

  • RE: How can we?

    Just attach the mdf you have and then in the bottom box (that displays the two files), highlight the log and click remove.

    When you click OK, the mdf/database will be...

    Adam Zacks-------------------------------------------Be Nice, Or Leave

Viewing 15 posts - 376 through 390 (of 619 total)