Forum Replies Created

Viewing 15 posts - 2,311 through 2,325 (of 5,393 total)

  • RE: How will DBA utilize other 8 ndf tempdb files for low memory utilization.

    I don't understand what multiple tempdb data files have to with memory usage.

    Can you explain in more detail what's your issue exactly?

    -- Gianluca Sartori

  • RE: Create a new column that concatenates a phrase with an integer

    CREATE TABLE #TestTable (

    Debt money

    )

    INSERT INTO #TestTable (Debt) VALUES (1)

    INSERT INTO #TestTable (Debt) VALUES (2)

    INSERT INTO #TestTable (Debt) VALUES (3)

    ALTER TABLE #TestTable ADD TestColumn AS 'You owe $ ' +...

    -- Gianluca Sartori

  • RE: DB Comparison and Synching

    SQLCompare will do the trick.

    It's a great product.

    -- Gianluca Sartori

  • RE: placing groups horizontally

    Columns to rows looks like a good fit for UNPIVOT.

    However, I don't understand the expected output.

    Can you please post your question according to the specs in this article[/url]?

    -- Gianluca Sartori

  • RE: How to change distributor

    Sorry, I'm a bit confused.

    If I understand correctly, the new publisher displays a wrong distributor, right?

    Change the distributor using sp_adddistributor. See here for more detail.

    Hope this helps

    Gianluca

    -- Gianluca Sartori

  • RE: moving database files to another disk

    If you can afford some downtime, the simplest way to do this would be a backup/restore with move to the new storage. Detach/attach would do the trick as well.

    Another option...

    -- Gianluca Sartori

  • RE: Procedure Performance Tuning

    If the code was not changed, you should check if the physical structures changed. I mean you should look at the indexes and stats on the table(s).

    Also, make sure you're...

    -- Gianluca Sartori

  • RE: Automatic Emails from a query -Unique records only

    Send the e-mail from within a trigger.

    Use the INSERTED logical table to capture the new records only.

    Hope this helps

    Gianluca

    -- Gianluca Sartori

  • RE: [Just For Laugh] Why only 2 Cents?

    OH! I think I'm the main culprit for this thread. πŸ™‚

    I say 2c because it's both my opinion and what it's worth. During the last few years it has become...

    -- Gianluca Sartori

  • RE: Update Statistics and Backup

    PaulB-TheOneAndOnly (11/23/2011)


    Dev (11/23/2011)


    Oracle gives control to copy / not copy statistics in backup / restore.

    Not true.

    You mean "logical" backups (imp/exp), I suppose.

    -- Gianluca Sartori

  • RE: Update Statistics and Backup

    Dev (11/23/2011)


    Roy Ernest (11/23/2011)


    As far as I know when a Back up is done, it preserves the Stats as well.

    Can you please lead me to some evidence?...

    -- Gianluca Sartori

  • RE: Update Statistics and Backup

    Roy Ernest (11/23/2011)


    As far as I know when a Back up is done, it preserves the Stats as well.

    I would be very surprised of the contrary.

    @dev: try it...

    -- Gianluca Sartori

  • RE: Multiple Databases or Multiple Schemas?

    Good points, but you can achieve the same with schemas as well.

    Dev (11/22/2011)


    β€’It would be a Big Database so Big backup / restore files & requires more time.

    You...

    -- Gianluca Sartori

  • RE: DBCC SHrinkfile

    It's an I/O intensive operation, so I guess it will affect the whole server.

    -- Gianluca Sartori

  • RE: update stats failing on SQL 2005

    Can you post the command you tried?

    -- Gianluca Sartori

Viewing 15 posts - 2,311 through 2,325 (of 5,393 total)