Forum Replies Created

Viewing 15 posts - 4,111 through 4,125 (of 7,164 total)

  • RE: How to insert/update/delete into destination table

    How many rows in the source table?

    Since you need to track deletes you may need to copy all contents of the table from the source into a staging table in...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Detach database, copy to new location, attach database

    Well, I will say it is not as obvious as Database.LogFiles hanging off the database object straight-away but when you think about it in terms of how SQL Server organizes...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Detach database, copy to new location, attach database

    You're welcome 🙂 Post back if you get stuck going beyond what I gave you.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Detach database, copy to new location, attach database

    Relevant?

    http://social.msdn.microsoft.com/Forums/en-US/sqlsmoanddmo/thread/861b57bc-aa21-4b03-bd01-5c164e2bac4e

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: improve performance of sp

    Lynn Pettis (5/10/2012)


    Jeff Moden (5/10/2012)


    So much time wasted.

    Maybe, but it is my time to waste. I'm not going to apologize for hoping against hope for the best. I...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Query XML

    OPENROWSET does not have HTTP resolution capabilities. OPENROWSET requires the file be available at some disk location, either local drive or UNC path, so you'll need to download the XML...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: triggers? oh no..

    Accounting software with that many triggers I would guess many of them are for generating a trail in audit and history tables.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to script out in a single .sql file stored procedures containing specific reference on their code

    PowerShell is an option, and one I would go for if this will be a recurring need.

    Here is an option using some T-SQL and the SSMS GUI scripting features...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to delete temp log information

    sudha.kotapati (5/8/2012)


    Hi,

    I have 200 millions of records in one table .I want to load it into set of tables based on the year.

    So while loading the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: XP_Cmdshell 'Access is denied'

    Please do not cross-post.

    Direct all replies here:

    http://www.sqlservercentral.com/Forums/Topic1296885-1549-1.aspx

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: BCP exported image is not valid

    This sample (adapted from here)worked for me:

    USE tempdb

    GO

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    IF EXISTS ( SELECT *

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Database mail

    There is no need to turn on Advanced options:

    SELECT *

    FROM sys.configurations

    WHERE name = 'Database Mail XPs';

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: mapping 2000 send mail parameters to 2008

    manny_emm (5/10/2012)


    This is a stored proc that is mapped to xp_smtp_sendmail(sql2000) on another server.

    ALTER PROCEDURE [dbo].[uspSendMail]

    @FROM VARCHAR(256) = NULL,

    @FROM_NAME VARCHAR(256) =...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Question about Row Compression and BIT Data

    Lynn Pettis (5/10/2012)


    I'd say that you could still store 8 bits in a byte.

    Surly Yoda today 😛

    @peter-2

    It is unclear to me from BOL but I found this link:

    Lesson 2: Internal...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Problem Preculiar with setting up DB Mirroring

    That's a good paper. All the reading I have done and my experience with mirroring tells me it is not very good at scaling up to those levels. It is...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 4,111 through 4,125 (of 7,164 total)