Forum Replies Created

Viewing 15 posts - 6,946 through 6,960 (of 13,469 total)

  • RE: sys.dm_db_index_physical_stats DMV

    Vicki I'm pretty sure the issue is that the same object_id exists in multiple databases....

    that view returns multiple database results, not just results from a single database.

    change that query to...

  • RE: Auto-update Record Based on Today's Date and Future Date?

    i think what you want is a schedule job that runs every day.

    that job updates rows meeting your criteria for being delinquent.

  • RE: Check Constraint and Case Statement

    when i read this requirement:

    If InformationRestricted is True,

    InformationNotRestricted cannot be true

    and InformationRestrictedFromLevel1,

    InformationRestrictedFromLevel2,

    InformationRestrictedFromLevel3,

    InformationRestrictedFromLevel4,

    InformationRestrictedFromLevel5 cannot be true

    i see that as saying a suite of constraints like...

  • RE: Returning row count as output in CTE

    ChrisM@Work (8/16/2011)


    Was it the key seek method, explained elegantly by Paul White here[/url]?

    that post from Paul exactly encapsulates that portion of his presentation Chris, yes.

    » Dmitri Korotkevitch's web site, now...

  • RE: how to add not null column in sql server 2005

    Danzz (8/16/2011)


    I am trying to add NOT NULL column to existing table.

    when I try to add it throws an error.

    Msg 4901, Level 16, State 1, Line 1

    ALTER TABLE only...

  • RE: SQL Server 2000 SP4

    I googled and didn't find anything definitive that said you had to upgrade to SP4 prior to upgrading to 2008...where did you see that?

    my recommendation would be only if it...

  • RE: Alternative for KILL

    Gail, would disconnecting every connection, as an attempt to clear whatever is blocking that rollback, be helpful at all?

  • RE: sql smtp

    you'd need to call a either a third party dll like we used to have to in SQL2000 (via cmdshell and sp_oaCreate)

    I used to use a dll from AspEmail a...

  • RE: Returning row count as output in CTE

    i just sat in on a SQLSaturday #79 in Davie(Fort Lauderdale) presentation on how to improve performance in exactly this situation;

    the Presenter was Dimitri, and he had a great example...

  • RE: Check Constraint and Case Statement

    much easier to comprehend...that whole pseudo code to abstract the logic actually made it harder to understand.

    the rules you pasted are actually multiple separate and distinct check constraints....all of...

  • RE: What is light speed bkup

    http://www.quest.com/litespeed-for-sql-server/

    SQL LightSpeed is a third party applicaiton that creates backups for SQL server; it's faster than native backups and also compresses the backups to a smaller size.

    you'd have to have...

  • RE: Create a linked server into MS Access which reside in the remote Server.

    zozilany (8/15/2011)


    I am trying to create a Linked Server to an MS Access database on a computer other than where SQL Server resides. I can create the linked server if...

  • RE: Granting rights

    Sachin Nandanwar (8/14/2011)


    Just because you define it as a "Best Practice" and it gives me an overhead in maintenance then surely I am better off in not using those "Best...

  • RE: Non-Latin characters showing up as ????? in nvarchar column

    don't you have to explicitly state you are inserting nvarchar? otherwise there is an implicit conversion wich is incserting the question marks

    INSERT INTO tblDSV_AttributeChangeDetectionData VALUES (100700,'914225891','JOR','Historical Monument',1,34,N'??????');

  • RE: Importing Data into Database

    this may help a little;

    this gets all the directories in a given directory.

    from there, you can cursor thru to build what i had hard coded to 4 specific directories:

    --some variables

    declare...

Viewing 15 posts - 6,946 through 6,960 (of 13,469 total)