Forum Replies Created

Viewing 15 posts - 3,016 through 3,030 (of 7,164 total)

  • RE: SQL Server 2008 Express and support for DTS Packages

    Patti Johnson (9/27/2012)


    I cannot find exactly what I am looking to know regarding SQL Server 2008 Express R2 and support for DTS Packages. Can I install SQL Server 2008...

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

  • RE: Sending list(of more than 50000 records) to the stored procedure as a parameter

    Sure, in the spirit of objectivity XML might help you in some specific cases. If you're in need of every ms of performance test XML. You could also reasonably include...

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

  • RE: Partitioned view not accepting valid value

    Thanks for posting the code.

    I have no problem with this:

    ALTER TABLE Invoicing_2005..T2 ADD CONSTRAINT CK_T2 CHECK (Val BETWEEN 10 AND 10)

    BETWEEN is inclusive so it's the same as saying this:

    ALTER...

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

  • RE: Sending list(of more than 50000 records) to the stored procedure as a parameter

    laurie-789651 (9/27/2012)


    You could use a table-valued parameter perhaps?

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

    +1

    This is where I would start as well.

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

  • RE: Partitioned view not accepting valid value

    Can you please post the view code? The DDL for the 2013 table maybe useful as well, but I'd really like to see how the view is defined.

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

  • RE: Script to Backup SQL Server Log Files

    Have a look at Ola Hallengren's Database Backup script. It does what you're wanting and if setup in a SQL Agent job you can send an email if the job...

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

  • RE: SQL 2012 Evaluation - upgrade to Developer Edition

    http://www.sqlservercentral.com/Forums/Topic1364971-391-1.aspx#bm1365006

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

  • RE: Today's Random Word!

    JAZZ Master (9/27/2012)


    Ray K (9/27/2012)


    Cliff Jones (9/26/2012)


    crookj (9/26/2012)


    Daniel Bowlin (9/26/2012)


    Back to reality (from a short vacation )

    Back to the Future...

    Marty McFly

    Dr. Emmitt Brown

    Flux Capacitor

    Cuisinart

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

  • RE: TSQL Suggestion: Support GROUP_CONCAT

    Shameless self-promotion:

    http://groupconcat.codeplex.com/%5B/url%5D

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

  • RE: How to upgrade 2012 Evaluation edition to Developer edition

    I just did this last week but do not remember if it was Eval to Enterprise or Eval to Dev Edition. I do remember I used the Edition Upgrade feature...

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

  • RE: Serializing an asymmetric key

    An EKM system would solve this problem for you I think. If it supported Windows Auth all the better. You could secure the key so only your devs and relevant...

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

  • RE: Want to find transaction log size before taking backup

    Perry Whittle (9/25/2012)


    opc.three (9/25/2012)


    CREATE TABLE #LOGSPACE

    (

    DB SYSNAME,

    LogSize FLOAT,

    SpaceUsed FLOAT,

    Stat BIT

    );

    INSERT INTO #LOGSPACE

    (

    ...

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

  • RE: bcp a pipe delimited file

    Jeff Moden (9/26/2012)


    opc.three (9/25/2012)


    sanjuv999 (9/25/2012)


    please guide me

    Do not enable xp_cmdshell! You do not need it for this scenario and it introduces risk in your environment.

    If you want to do everyting...

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

  • RE: check constraint opinion?

    An alternative to CHECK constraints are Foreign Keys referencing lookup tables. These are useful when you need to validate that a value in a column is within a set and...

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

  • RE: Assigning sql to use specific ethernet port

    You can have SQL server listen on a specific IP, one that is bound to the NIC card you want to accept the traffic. You set the IP and Port...

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

Viewing 15 posts - 3,016 through 3,030 (of 7,164 total)