Forum Replies Created

Viewing 15 posts - 3,106 through 3,120 (of 5,393 total)

  • RE: Partial export

    Hehe. Try Lowell's suggestion, then.

    Good luck!

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    jcrawf02 (6/9/2011)


    Kiara (6/9/2011)


    Grant Fritchey (6/9/2011)


    Kiara (6/9/2011)


    Tom.Thomson (6/9/2011)


    Kit G (6/8/2011)


    Wearing boots with a kilt isn't a problem (as long as we have socks). But sandals and a kilt? Perhaps......

    -- Gianluca Sartori

  • RE: Partial export

    Lowell (6/9/2011)


    I'd always tackled this the other way...backup and restore to the dev database, then DELETE any data that doesn't match the saving criteria...works great if your FK's have the...

    -- Gianluca Sartori

  • RE: Setting up linked servers with an out-of-process OLEDB provider

    richardd (6/9/2011)


    Nice article.

    It makes me wonder why 64-bit SQL can't use 32-bit providers (eg Jet), since the bit-ness of out-of-process COM components doesn't matter. They'd only need a 32-bit...

    -- Gianluca Sartori

  • RE: Partial export

    If you just want them smaller, you can use this script.

    Just make sure that foreign keys are resolved.

    DECLARE @tableName sysname

    DECLARE @schemaName sysname

    DECLARE @sql nvarchar(max)

    DECLARE tabs CURSOR STATIC LOCAL FORWARD_ONLY

    FOR

    SELECT name,...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    ALZDBA (6/9/2011)


    GilaMonster (6/9/2011)


    Is this person irritating anyone else, or am I just in low-tolerance mode at the moment?

    http://www.sqlservercentral.com/Forums/UserInfo635080.aspx

    Are you in desperate need for coffee 😉

    You provided the perfect answer for...

    -- Gianluca Sartori

  • RE: Partial export

    zaleeu (6/9/2011)


    Okay , lets use this as an example.

    MS SQL R2 Express 2008

    Big live database has 10000 records. I want to use only a small portion of that for testing...

    -- Gianluca Sartori

  • RE: Partial export

    This should be enough:

    INSERT INTO DatabaseB..DestinationTable

    SELECT *

    FROM DatabaseA..SourceTable

    WHERE LastName = 'Smith'

    -- Gianluca Sartori

  • RE: Partial export

    You have many options.

    Is it a one-shot export or you have to it regularly?

    Both databases on the same instance or different instances?

    Are the tables identical or you...

    -- Gianluca Sartori

  • RE: SQL Instances and Databases

    Rhox (6/9/2011)


    Isn't it possible with the registered servers window?

    - Create group and place all connections (per instances) in it

    - Right click on the group and select 'New query'

    - Execute your...

    -- Gianluca Sartori

  • RE: SQL Instances and Databases

    You can't do it with a SQL query, because each instance lives on its own and is not aware of othere instances on the same machine.

    You could query the registry...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    GilaMonster (6/9/2011)


    Is this person irritating anyone else, or am I just in low-tolerance mode at the moment?

    http://www.sqlservercentral.com/Forums/UserInfo635080.aspx

    Not yet, really.

    Is there a particular thread where he crossed the line or...

    -- Gianluca Sartori

  • RE: Setting up linked servers with an out-of-process OLEDB provider

    ALZDBA (6/9/2011)


    It was my pleasure to get a first glimps of your article.

    This is a lesser known topic, but definately has its place in SQL instance management topics.

    Great job !

    Johan,...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Our alphabet soup friend gives weird recommendations on LinkedIN

    I'm starting to think he downloaded his certs from the pirate bay. 😀

    -- Gianluca Sartori

  • RE: Is this true?

    rfr.ferrari (6/8/2011)


    Sachin Nandanwar (6/6/2011)


    Hi,

    I am reading one book on SQL Server internals.When explaining the checkpoint process it states that

    "....If the LSN of the dirty page is greater than the...

    -- Gianluca Sartori

Viewing 15 posts - 3,106 through 3,120 (of 5,393 total)