Forum Replies Created

Viewing 15 posts - 91 through 105 (of 113 total)

  • RE: how to all table which indexes are useing in database

    For each table you can run the below.

    EXEC sp_helpindex N'schema.table';

    GO

    Thanks

    Chris

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: How can my job run successfully

    You should always backup to the local server in the first instance. Once the backup is succesfull this should be copied to another network location where in an ideal...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Basic mirroring query please help?

    What operating mode are you running?

    If you are running synchronous with manual failover (like i am currently) and mirroring stopped eg the quorum between the principal and the mirror was...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Two text files from one OleDB Source

    You could use a TSQL task to execute the procedure and return the output parameter into a table. Then have a seperate data flow which copies the data from...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: I need help to planning for create best database architecture in sql 2008

    I agree with Gail.

    If you don't know what your requirements are or if you have requirements and don't know what to impliment then you need to get someone...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: SQL 2005 and SQL 2008 installing on same machine

    Yes, as long as;

    The SQl Server 2005 instance is installed first.

    The SQL Server 2005 instance is not SQL Server Express.

    Thanks

    Chris

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Database Mirroring History

    I would be interested in the same sort of information for SQL Server 2008 R1.

    Thanks

    Chris

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: SQL Server Stack Dump

    Thanks GilaMonster, I'm on the case I will post any updates.

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Issue in connecting to the server

    Sounds like a memory pressure issue to me.

    Have a look at the amount of free VAS (Virtual Address Space).

    http://www.eraofdata.com/blog/tag/vas/

    Also look at dbcc memorystatus complicated you will need the...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Moving the server to New Domain

    Make sure that the SPN is registered once the server hs been added to the new domain. Often an oversight that I have seen many times.

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

    Is the SQL server...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Transaction Log full for production database

    To resolve orphaned users search for sp_change_users_login in BOL.

    Thanks

    Chris

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Restore a db using command-line?

    Rather than using Enterprise Manager / Management Studio to script backups / restores i would get used to writing TSQL to do the job not only is it faster but...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Log backup stopped working!!

    I had a similar problem, there is a bug in SQL 2005 whereby if you specify databases to backup and then click on the backup type the selected databases to...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: restore query

    I assume you have connected to the secondary server and are restoring using a UNC path like below?

    restore database test from disk = '\\primary server\backups\test.bak'

    If you are doing the above...

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------
  • RE: Restore a db using command-line?

    Can you explain what you mean by command line would TSQL or OSQL be ok?

    ------------------------
    I am the master of my fate:
    I am the captain of my soul.
    ------------------------
    Blog: http://sqlserver365.blogspot.co.uk/
    Twitter: @ckwmcgowan
    ------------------------

Viewing 15 posts - 91 through 105 (of 113 total)