Forum Replies Created

Viewing 15 posts - 61 through 75 (of 126 total)

  • RE: Find Currently Running Scheduled Job

    Hi,

    You could also use the sp_helpjobactivity for a start_execution_date and no stop_execution_date for that info perhaps?

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Upgrading to 2012

    We are mainly running 2008 in differing flavours. I have not seen any business reasons that have made me consider the additional cost of the new licensing model for the...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Backup failure History....

    logicinside22 (12/30/2011)


    You can check out from here also

    « SQL SERVER – Recycle Error Log – Create New Log file without Server RestartSQLAuthority News – SQL Server Denali CTP1 –...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Deadlock info without using Profiler?

    Gabriel P (3/28/2013)


    I was asked on an interview how to find deadlock information without using SQL Profiler or running a trace. They didn't give me an answer, but it sounded...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Monitoring Tools

    JeepHound (3/28/2013)


    What are the best tools available for monitoring MSSQL and Oracle databases. Our end goal is to have something usable for DBA's to quickly troubleshoot problems with both...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: foreign key against multiple primary key constraint

    You would need to question why you would be doing this. Unless there is a reason for the data to be phsically ordered and to be unique by those two...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Settings for All sprocs

    Manual is safer but.. I have used this in the past for setting an isolation level. You could adapt this

    --SET ALL SP's to BE READ COMMITTED

    SELECT

    o.OBJECT_ID

    , name

    ,REPLACE(REPLACE(REPLACE(s.definition, 'CREATE PROCEDURE',...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: How to find SSIS Version

    Connect to the SSIS instance via SSMS and then look at the build number in the brackets or right click and goto reports > standard reports > general and look...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: how i can save image in sql server 2008

    Perhaps look along the filestream options in SQL server or varbinary datatypes

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: how to group using cases

    I may have mis-understood what you are after and this is by no means the most efficient but I think this may be what you are after

    DECLARE @WeightValue SMALLINT =...

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Space between parameters in reporting services

    Amend your dataset so that it returns the data without the spaces like ..

    SELECT REPLACE('test space', ' ', '')

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: Execute SQL in all database

    perhaps use EXEC sp_MSforeachdb @command1='use ?; SELECT * FROM mytable' ?

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: LiteSpeed impact on msdb database?

    From what I remember, Litespeed does not create any extra, above what a normal backup strategy would i.e. backup history, etc. That would be outside of your sizing requirement

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: What is the purpose of "Register as Data-tier Application" ?

    An oldie, but I thought I would reply - Once a database is registered as a data tier you can update that database with an existing dacpack

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

  • RE: My SQL Server Database is Corrupt - Now What?!

    Try recovering from a backup first and then if that does not work try the following : http://www.sqlskills.com/blogs/paul/creating-detaching-re-attaching-and-fixing-a-suspect-database/

    SQL DBA
    Every day is a school day, and don't trust anyone who tells you any different.
    http://sqlblogness.blogspot.co.uk

Viewing 15 posts - 61 through 75 (of 126 total)