Forum Replies Created

Viewing 15 posts - 316 through 330 (of 447 total)

  • RE: Identity Columns

    Good one. Always thought insert with insert into..but never thought default values could be used to insert identity value for an identity column.

    SQL DBA.

  • RE: Transactional replication

    My job also runs every 10 minutes and never had issues. It generally takes less than a second to complete. Command in job is -

    EXEC dbo.sp_MSdistribution_cleanup @min_distretention...

    SQL DBA.

  • RE: Transactional replication

    Check for Distribution clean up: distribution job in scheduled jobs and run it.

    SQL DBA.

  • RE: How can I schdule a job to run yearly?

    Buxton69 (7/1/2008)


    In the schedule tab choose to run monthly and then select for example 'on the 1st day of every 12 months'

    You can then set it to run from which...

    SQL DBA.

  • RE: running stored procedures

    armando.horcajo (7/1/2008)


    How can I know if a certain stored procedure is being running at present time?

    You can run SQL profiler for detailed report or run sp_who2 or dbcc inputbuffer(spid) for...

    SQL DBA.

  • RE: TABLESAMPLE

    Steve Jones - Editor (7/1/2008)


    It's likely you would get 10% back, but there's no guarantee.

    I tested it more than 10 times and it never returned 10% back approx. It...

    SQL DBA.

  • RE: Return Query Text Along With sp_who2 Using Dynamic Management Views

    Thanks John and Ken for these scripts. Both are good and are worth keeping it handy.

    SQL DBA.

  • RE: Resource Governer

    WOW.......Jul 21, 2008 question on June 18,2008.

    SQL DBA.

  • RE: scheduling a DTS package from 2005 server.

    Thanks.

    SQL DBA.

  • RE: BETWEEN

    Good question but bad wording. I said yes and lost a point. After insert no matter how many times you execute these select statements you get same result.

    --select...

    SQL DBA.

  • RE: Database Background

    I wondered who could have replied MySQL.

    SQL DBA.

  • RE: SQL Server 2005

    Prasad Bhogadi (5/8/2008)


    I am not sure if resource is a system database. From the article in the question it does not cement the answer that resource is a system database.

    Resource...

    SQL DBA.

  • RE: Object Explorer "CREATE DATE" display for objects

    Adam Heard (5/7/2008)


    The "Created" column does not show the time. Is there a way to display this?

    Not possible.

    SQL DBA.

  • RE: How to disable COLLATE in a table?

    Try this.

    ALTER TABLE tablename

    ALTER COLUMN columnname COLLATE default

    SQL DBA.

  • RE: Bit data

    WHERE SalariedFlag = 'true' for bit would not work in 2000 but since it says use Adventureworks, it clear that the question is for SQL 2005.

    SQL DBA.

Viewing 15 posts - 316 through 330 (of 447 total)