Forum Replies Created

Viewing 15 posts - 601 through 615 (of 626 total)

  • RE: Transactional Replication using T-SQL (custom SPs)

    Rather than use a trigger I would have simply done:

    ALTER TABLE dbo.myTable ADD ShortSSN AS RIGHT(SSN,4);

    Cheers,


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Transactional Replication using T-SQL (custom SPs)

    I'm a little confused by your question.

    Do you have any suggestion on when and where to call this new SP? Because when I reinitialize the snapshot it fetches data and...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Transactional Replication using T-SQL (custom SPs)

    So what does your modified SP's look like?

    I'm still not sure if that is the best method since I'm pretty sure those SP's will get over written if you ever...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Transactional Replication using T-SQL (custom SPs)

    Why is it a requirement to only replicate part of the SSN column? If you are already replicating to the subscriber it can easily be extracted out in a...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: DB mail issue

    This will help you with what you are looking for.

    http://www.mssqltips.com/sqlservertip/1394/how-to-store-longer-sql-agent-job-step-output-messages/


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Always On with Cluster + Standalone Question/Discussion

    Awesome, thank you sir!


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Always On with Cluster + Standalone Question/Discussion

    JoshDBGuy (4/6/2015)


    Is DTC a requirement?

    Off the top of my head I'd say no...long answer is I'm not 100% sure. I'm still discovering many 'interesting' things left/done/created by my predecessors.


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Always On with Cluster + Standalone Question/Discussion

    Perry Whittle (4/3/2015)


    yb751 (4/2/2015)


    I would assume that in a failover the new active node would become the new host of the replica and not break the Availability Group.

    Correct. There would...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Always On with Cluster + Standalone Question/Discussion

    That's a real good article. It does seem like I'm on the right track but sometimes it's the little caveats in the wording of some MSDN that get me.

    e.g....


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Redesign help

    opc.three (10/23/2012)


    Eric M Russell (10/23/2012)


    What's described above would be one form of a "property bag" technique. I have been tasked with building data extract and reporting from a large ISV...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Redesign help

    matak (10/21/2012)


    I have considered a consultant yes and will talk to the appropriate people about getting one in.

    I thought id give the forums a go just in case it was...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Redesign help

    IF OBJECT_ID('TempDB..#Field','U') IS NOT NULL

    DROP TABLE #Field

    CREATE TABLE #Field

    (

    fieldID int NOT NULL,

    pkFromOrigTable int NOT NULL,

    fieldName varchar(200) not null,

    fieldValue decimal(30,20)

    )

    Any advice,...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Redesign help

    Ok, couple more questions then.

    You have a field called Year but are using a float datatype. I would suggest you use DATETIME types for any fields relating to well...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Redesign help

    Out of curiosity is this database for an application that allows users to create/define custom fields or even data types? The only reason I'm asking is because I've had...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

  • RE: Wrong Index Used

    First of all you only posted 1 table (Content). What about ContentVersion, ContentFormat, License, Website?

    Because that is the only table that was causing performance issues when I broke down...


    SELECT quote FROM brain WHERE original = 1
    0 rows returned

Viewing 15 posts - 601 through 615 (of 626 total)