Forum Replies Created

Viewing 15 posts - 1,546 through 1,560 (of 1,988 total)

  • RE: Multiple instances

    Yes you can install multiple instances of SQL Server on the same machine, those would be named instances. And yes each one will need its own database and log...

  • RE: No Time for Testing

    xsevensinzx (9/28/2015)


    Andrew..Peterson (9/28/2015)


    xsevensinzx (9/28/2015)


    ZZartin (9/28/2015)


    xsevensinzx (9/28/2015)


    What makes it 10x worse is that while you can verify everything is good with your end result, someone can take that end result (i.e.:...

  • RE: Today's Random Word!

    Ed Wagner (9/28/2015)


    anthony.green (9/28/2015)


    eccentricDBA (9/28/2015)


    Ed Wagner (9/28/2015)


    anthony.green (9/28/2015)


    crookj (9/28/2015)


    Ed Wagner (9/28/2015)


    anthony.green (9/28/2015)


    Ed Wagner (9/28/2015)


    anthony.green (9/28/2015)


    Ed Wagner (9/26/2015)


    SQLRNNR (9/26/2015)


    Ed Wagner (9/25/2015)


    Luis Cazares (9/25/2015)


    Ed Wagner (9/25/2015)


    Brothers

    Mario

    Luigi

    Koopa

    Bowser

    Boom Boom

    Shotgun

    Wedding

    Reception

    Function

    RBAR

    Set

    Spike

    Willow

    Tree

    Leaf

  • RE: No Time for Testing

    xsevensinzx (9/28/2015)


    What makes it 10x worse is that while you can verify everything is good with your end result, someone can take that end result (i.e.: data) and use it...

  • RE: Multiple queries in the same stored procedure

    Tavis Reddick (9/28/2015)


    For an in-house system with just over 10,000 records in the main entity table, I created a set of stored procedures of the following pattern:

    For each entity (table,...

  • RE: Generate Invoice Document from SQL

    You might be able to use mail merge in Word to generate the documents, you can merge a csv extract or a table or view for that matter into a...

  • RE: Can a hacker obtain database information from an unencrypted differential backup?

    Steve-3_5_7_9 (9/25/2015)


    Your direct question has already been answered, however the audit will probably turn up a couple of things:

    If they stole the diff backup, why wouldn't the full backup be...

  • RE: DUPLICATE Records

    Maybe something like,

    DELETE FROM [TableName] WHERE id IN(

    SELECT id FROM [TableName] GROUP BY id HAVING COUNT(id) > 1

    UNION

    SELECT id FROM [TableName] WHERE [no] IN (SELECT [no] FROM [TableName] GROUP BY...

  • RE: CTE giving out inaccurate results

    Is there a reason to join to the CTE instead of just putting the rank function in the SQL query?

  • RE: CTE giving out inaccurate results

    Try taking the AND H1.[Dense Rank] = 1 out of the join on the select and see what happens 🙂

    It looks like it might be joining the dense rank 1...

  • RE: Use of SQL database

    That question is horribly vague, SQL server can stores TB's or PB's of information, depending on what format that data is in that could be enough to hold all the...

  • RE: The Counter Offer - Part 2

    Dave62 (9/21/2015)


    Jack Corbett (9/21/2015)


    ... Even though I'm considered a permanent FTE by HR, I consider myself a contractor with benefits. They can get rid of me...

  • RE: Whatever happened to Database Table Refactoring?

    call.copse (9/21/2015)


    re: MySQL I'm going to say the licence cost issue is a big one these days, and seems to be more onerous than it has been. I've not had...

  • RE: Variables that are not null put in TVP

    IF @QuantityID IS NOT NULL

    INSERT INTO @Temp SELECT @QuantityID

    IF @LengthID IS NOT NULL

    ...

  • RE: Today's Random Word!

    Debate

    Trump

    Card

Viewing 15 posts - 1,546 through 1,560 (of 1,988 total)