Forum Replies Created

Viewing 15 posts - 901 through 915 (of 5,685 total)

  • RE: Record locking

    john 60195 (1/3/2013)


    After some more read maybe this would lock a record (and only one record) until all work is done,

    I just want to second what Gail said above. ...

  • RE: A SSIS Question

    kamal_ece (1/2/2013)


    Hi Andrew,

    This link probably answer your query "http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/91665/"

    Hope this helps.

    Regards,

    Kamal

    that's... wow. Intricate and overkill.

    In VB:

    Imports System

    Imports System.Data

    Imports System.Math

    Imports Microsoft.SqlServer.Dts.Runtime

    Public Class ScriptMain

    Public Sub Main()

    ...

  • RE: A SSIS Question

    I personally use a filewatching script task as step one of the job, and then the main 'package' in step 2. A few reasons. First, not all 'missing'...

  • RE: Storage Subsystems and RAMDisks

    kevin.kembel (1/2/2013)


    Or maybe someone in SSC can turn it into an article, showing specific examples and proof of temp tables/variables that exist only in RAM and are never written to...

  • RE: CTE with multiple tables

    Bron Tamulis (12/31/2012)


    Craig - I tested your solution for a multi-level BOM and it worked great.

    Thanks for your assistance..........

    Glad to hear and my pleasure. I just don't always trust...

  • RE: Are the posted questions getting worse?

    Merry Christmas and Happy New Year to all! Warm wishes for 2013.

    Oh, yeah, and Happy Birthday to me. :hehe:

  • RE: CTE with multiple tables

    @CELKO:

    *facepalm* Seriously?

    CELKO (12/30/2012)


    How can a quantity be NUMERIC(19, 5) and not an INTEGER?

    Water: 1.5 gallons

    Flour: .75 cups

    It's a Bill of Materials table. Decimals are definately part of...

  • RE: Query Execution Plan

    Hm, there's a few nasty pieces to this but the biggest problem is the fctTxPayPlan table.

    Estimate: 39,000 rows. Actual: 23 billion.

    Might problem there. The table's a heap, get...

  • RE: SSIS Transfer data ON INSERT

    I have to agree with Koen here. The correct answer here is not SSIS, it's replication, log shipping, or mirroring. SSIS is point in time upkeep on large...

  • RE: Getting last ID in inserted trigger, howto ?

    aykut canturk (12/31/2012)


    the trigger is very simple and only makes some calculations. what I need is get the ID number of this record and write it to another field.

    For the...

  • RE: how to fetch records from multiple tables

    A few words regarding SSNs:

    1) It's identifying information. Damn near illegal to physcially store next to medical data on a client. You will fail audits if your encryption...

  • RE: Record locking

    Scott, the trouble with sp_applock is that it's designed around single user - single process aspects. My understanding of the OP's question revolves around multiple dentists accessing multiple clients...

  • RE: Ignore/Skip data coming from falt file and loading into SQL table

    Grass (12/18/2012)


    the second value is not supposed to be coming in and should be ignore/skip from the source file. So the statement u mentioned is right? and if it is...

  • RE: COUNT and compare

    Use the code="sql" IfCode on the left, like so. Dwain's right, I flipped the order for having/group by, need to put it after.

    SELECT

    O.OrderID,

    ...

  • RE: COUNT and compare

    support 86837 (12/18/2012)


    Your query works only if I omit the HAVING clause.

    What error are you getting? You're getting untested code as I don't have a sample set to work...

Viewing 15 posts - 901 through 915 (of 5,685 total)