Forum Replies Created

Viewing 15 posts - 1,426 through 1,440 (of 5,393 total)

  • RE: Partitioning large tables ONLINE

    Any reasons why you shouldn't let SQL Server do that for you?

    If you have Enterprise Edition, you can rebuild the clustered index ONLINE on the partition scheme.

    Watch your tempdb/user db...

    -- Gianluca Sartori

  • RE: How to check column comments in sql server

    You can also query that data from the "ms_description" extended property.

    See fn_listextendedproperty

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    SQL Kiwi (9/14/2012)


    Gianluca Sartori (9/14/2012)


    On a totally unrelated note, I'm preparing my slide deck for my first session as a speaker.

    I never thought it could be that hard!

    I know exactly...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    On a totally unrelated note, I'm preparing my slide deck for my first session as a speaker.

    I never thought it could be that hard!

    I know exactly what I want to...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    SQL Kiwi (9/14/2012)


    Good grief, we have all been wrong about things from time to time.

    Speak for yourself! 😛

    -- Gianluca Sartori

  • RE: What would the SQL2008 equivilent be to outer union corr?

    HAve you tried printing the @sql variable before executing?

    That would give a hint. Maybe the @sql variable holds NULL or something similar happened.

    -- Gianluca Sartori

  • RE: Unable to access the Linked Server

    Some things to check:

    1) Remote connections enabled and service restarted on the Express instance (according to your reply, this should be ok)

    2) TCP/IP enabled with a static port on the...

    -- Gianluca Sartori

  • RE: Unable to access the Linked Server

    MuraliKrishnan1980 (9/5/2012)


    SQL Surfer '66 (9/5/2012)


    Is the linked server using the default port 1433? Otherwise you need to specify the port: @server = N'PC068751\SQLEXPRESS,<port>'

    Do i need to specify the port number...

    -- Gianluca Sartori

  • RE: Unable to access the Linked Server

    SQL Surfer '66 (9/5/2012)


    Is the linked server using the default port 1433? Otherwise you need to specify the port: @server = N'PC068751\SQLEXPRESS,<port>'

    True only if the port is static, which is...

    -- Gianluca Sartori

  • RE: Unable to access the Linked Server

    First thing to check: from the SQL Server, can you connect to the SQLExpress instance (with SSMS or SQLCMD)?

    If not, there's no need to involve the linked server in your...

    -- Gianluca Sartori

  • RE: Issue shredding Deadlock Graph XML

    WayneS (9/4/2012)


    I didn't catch that - neat idea. I don't think I want to include it in my script though, since I use this when I don't have access to...

    -- Gianluca Sartori

  • RE: Issue shredding Deadlock Graph XML

    WayneS (9/4/2012)


    Gianluca,

    I think I've run across the same limitation, and I've been revamping this script from being process-based to being lock-based. I wanted to add the intra-query parallel processing items,...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    David Burrows (9/4/2012)


    Fal (9/3/2012)


    Quick poll: how would you pronounce the word "Route"?

    I'll explain why later, if I'm not too embarrassed. :blink:

    Steve.

    I am English so naturally /ru?t/

    I'm Italian, so naturally...

    -- Gianluca Sartori

  • RE: Issue shredding Deadlock Graph XML

    Wayne, believe it or not, I've been playing with the script in your blog in the last few days and I have noticed that in some cases the deadlock XML...

    -- Gianluca Sartori

  • RE: install sql server 2008 r2 standard

    Well, if the system partition is part of a bigger disk shared with the data partition, gparted could be an option.

    Take into account that if you enlarge a partition taking...

    -- Gianluca Sartori

Viewing 15 posts - 1,426 through 1,440 (of 5,393 total)