Forum Replies Created

Viewing 15 posts - 286 through 300 (of 366 total)

  • RE: Microsoft Certified Master

    Good luck! and don't forget to share the experience 🙂

    Iulian

  • RE: T SQL Problem

    Hi Ashok,

    What I would do from here is:

    1. add an identity_column to the initial table, so that we know what consecutive means.

    2. create a...

  • RE: T SQL Problem

    I think I have got it,

    so if they are consecutive records with the same attrib it should combine them and result one single record with begda the begining of...

  • RE: T SQL Problem

    Here is the full script:

    CREATE TABLE #X( id INT, attrib INT ,begda DATETIME ,endda DATETIME)

    INSERT INTO #X ( id,attrib,begda,endda )

    SELECT 1, 100, '3/10/2010', '3/31/2010'

    UNION ALL SELECT 1, 100,...

  • RE: T SQL Problem

    It looks very much like this:

    SELECT * FROM X

    ORDER BY

    LEN(attrib) ASC ,

    begda,

    DATEDIFF(DAY, begda, endda) desc

    but why are 3 rows left outside from the result set

    (

    ...

  • RE: T SQL Problem

    First I would create the initial table with the following script:

    CREATE TABLE X( id INT, attrib INT ,begda DATETIME ,endda DATETIME)

    INSERT INTO X ( id,attrib,begda,endda )

    SELECT 1, 100,...

  • RE: Heaps

    Thanks for the question,

    Does the correct answer change if we replace UPDATE with INSERT in the question?

    Regards,

    Iulian

  • RE: Keywords

    Nice question.

    Thanks,

    Iulian

  • RE: The Percent Sign in T-SQL

    easy one, thanks

    Iulian

  • RE: Preventing usage of "SELECT *..."

    Nice article, thanks

    Iulian

  • RE: Performance Issues when upgrading from SQL 2000

    Thanks Craig,

    and also shrink it with DBCC SHRINKFILE.

    Um, why would you do that?

    REINDEX, sure. Shrinkfile? That's not going to help here.

    Shrinkfile, if anything, will make it...

  • RE: SSIS Properties

    Thanks a lot,

    Now I understand, though the documentation is confusing.

    Does anyone has at hand a small sample in order to try it. Even if it sounds well documented I...

  • RE: SSIS Properties

    Not sure about this. Please explain.

    The /Conf[igFile] parameter of dtexec

    Specifies a configuration file to extract values from. Using this option, you can set a run-time configuration that differs from...

  • RE: Performance Issues when upgrading from SQL 2000

    I would evaluate the database with DBCC CHECKDB and also shrink it with DBCC SHRINKFILE.

    Regards,

    Iulian

  • RE: DBCC REINDEX for each table

    Try to look at sys.DM_DB_INDEX_PHISICAL_STATS

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

    you can find also an example "Using sys.dm_db_index_physical_stats in a script to rebuild or reorganize indexes".

    Regards,

    Iulian

Viewing 15 posts - 286 through 300 (of 366 total)