Forum Replies Created

Viewing 15 posts - 16 through 30 (of 64 total)

  • RE: uninstall SQL 2005 from cluster

    Go to each node type Start --> Run --> services.msc

    Check if SQL Server 2005 is installed and running.

    Verify the service path and compare to what you find in the cluster...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: sp_executesql issue

    You were missing a comma to separate the sorted columns ORDER BY @SFIELD, @SFIELD_TYPE

    DECLARE @NEW_SEARCH_STRING VARCHAR(250)

    DECLARE @SORTFIELD VARCHAR(50)

    DECLARE @SORTFIELD_TYPE VARCHAR(5)

    SET @SORTFIELD = 'PRODUCT_NAME'

    SET @SORTFIELD_TYPE = 'ASC'

    SET @NEW_SEARCH_STRING = 'nfl football'

    DECLARE...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: BAckup and restoration

    Yes you can, but you have to give a different name to your restored DB.

    RESTORE DATABASE [TEST_restored] FROM DISK = N'K:\TEST.bak' WITH FILE = 1,

    MOVE N'modeldev'...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Job failure - detailed description in email notification

    I had the same problem, so I just added a step to be executed on after any step failure.

    This is a TSQL Job step that catches the last job history...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: transfer users

    How did you transfer the DB?

    Did you detached and attached or did you restored?

    If you used any of those ways to move your DB to another server, then you ...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: USers and DML statement count

    Your best way is yo use Database Specification Audits to track your NO DML statements.

    You can enable it at a certain time and disable with the job at specified time.

    This...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Linked Server SQL 2008 64 bit Oracle

    Make sure that you have the right Oracle Client installed.

    I know we had problems because the ORA client was a 32 bit version and the Oracle Instance was an x64.

    try...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Replication problem

    Delete the replication jobs if any and run the sp_subscription_cleanup procedure

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Issue with changing column datatype

    No sir,

    you are pretty much stuck with that solution, unless you want to create another table with the new structure and then do an insert into, but that will take...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Relation between sysusers and syslogins

    sysusers Contains one row for each Microsoft Windows user, Windows group, Microsoft SQL Server user, or SQL Server role in the database.

    http://msdn.microsoft.com/en-us/library/ms179871.aspx

    while syslogins contains the login account.

    Having a login does...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Reseed Identitity column

    If you do not want to allow gaps and you know what the gaps are, you can use the "SET IDENTITY_INSERT" statement to insert data into the identity column manually.

    Here...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: How Do I Tell Which Line Contains the Error?

    The Best way is for you to add a Try Catch statement.

    Look at the image below, there is a code intended to fail and show you the line number on...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Steps to be done for CDC enabled tables for DDL changes

    You have to use a trigger to monitor DDL changes on any table.

    I used the below trigger to monitor any changes to any tables, including the user who made the...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: where is sql server management studio

    Click on Start --> Run: Type SSMS

    if you did install it will open up, or you can get a free version from Microsoft website:

    http://www.microsoft.com/downloads/en/details.aspx?FamilyID=c243a5ae-4bd1-4e3d-94b8-5a0f62bf7796%5D

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

  • RE: Change Password SQL SERVER 2008 sp1 failover cluster

    If you are using a Domain account to run your services,

    Follow these steps:

    1) Change the password in AD

    2) Change the Password on the Node2 Services

    3) Force a Failover from Node1...

    Ysaias Portes | Forward Thinkers Consulting
    sp_SQLFlightRecorder — open-source SQL Server diagnostic recorder | forwardthinkersconsulting.com

Viewing 15 posts - 16 through 30 (of 64 total)