Forum Replies Created

Viewing 15 posts - 5,356 through 5,370 (of 8,761 total)

  • RE: getting string out of data from a column

    Quick suggestion

    😎

    DECLARE @SAMPLE_XML XML = N'<obj xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:vim25" versionId="5.5" xsi:type="ArrayOfHostSystemIdentificationInfo">

    <HostSystemIdentificationInfo xsi:type="HostSystemIdentificationInfo">

    <identifierValue> unknown</identifierValue>

    <identifierType>

    <label>Asset Tag</label>

    <summary>Asset tag of the system</summary>

    <key>AssetTag</key>

    </identifierType>

    </HostSystemIdentificationInfo>

    <HostSystemIdentificationInfo xsi:type="HostSystemIdentificationInfo">

    <identifierValue>PSF:</identifierValue>

    <identifierType>

    <label>OEM specific string</label>

    <summary>OEM specific string</summary>

    <key>OemSpecificString</key>

    </identifierType>

    </HostSystemIdentificationInfo>

    <HostSystemIdentificationInfo xsi:type="HostSystemIdentificationInfo">

    <identifierValue>Product ID: 654081-B21</identifierValue>

    <identifierType>

    <label>OEM specific string</label>

    <summary>OEM specific string</summary>

    <key>OemSpecificString</key>

    </identifierType>

    </HostSystemIdentificationInfo>

    <HostSystemIdentificationInfo...

  • RE: Today's Random Word!

    Ed Wagner (5/7/2015)


    djj (5/7/2015)


    Revenant (5/7/2015)


    whereisSQL? (5/7/2015)


    DonlSimpson (5/7/2015)


    Ed Wagner (5/7/2015)


    crookj (5/7/2015)


    Slate

    Stone

    Cold

    Beer

    Need

    Want

    More

    Merrier

  • RE: Authentication with two (or more) databases on the same instance

    caddywonkus (5/7/2015)


    Scenario: a stored procedure is executed in database ABC. The procedure includes a MERGE statement with objects in the ABC and DEF databases. A Windows login is executing the...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/7/2015)


    That's not an article, that's a small book.

    With your short and concise style, it could fit into an article:-D

    😎

  • RE: Are the posted questions getting worse?

    GilaMonster (5/7/2015)


    Eirikur Eiriksson (5/7/2015)


    GilaMonster (5/7/2015)


    Ok, I need to write something.

    Article requests?

    How about different types of db recovery?

    😎

    If you mean recovery models, I've done those before. If now, please clarify?

    No,...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/7/2015)


    Ok, I need to write something.

    Article requests?

    How about different types of db recovery?

    😎

  • RE: SSIS doesn't drop table

    ____ KD (5/7/2015)


    Thank you for all the replies.

    The code was working in SQL query.

    I wanted to drop the table because the table schema may change so I only...

  • RE: Storage question

    mxy (5/7/2015)


    I have SSD storage of size 1TB, if I partition into multiple disks for tempdb, data, logs does it improve performance or not. I mean keeping in single...

  • RE: NEED IMMEDIATE HELP with Scripting

    Quick thought, open all scripts in SSMS and do Find and Replace in All open documents

    😎

  • RE: Today's Random Word!

    Ed Wagner (5/7/2015)


    Revenant (5/6/2015)


    whereisSQL? (5/6/2015)


    DonlSimpson (5/6/2015)


    Ed Wagner (5/6/2015)


    Eirikur Eiriksson (5/5/2015)


    Ed Wagner (5/5/2015)


    DonlSimpson (5/5/2015)


    SQLRNNR (5/5/2015)


    Revenant (5/5/2015)


    Ed Wagner (5/5/2015)


    TomThomson (5/5/2015)


    SQLRNNR (5/5/2015)


    skaar

    hulk

    Hogan

    Champ

    CHUMP

    Chimp

    Zoo

    Smell

    Code

    Bug

    Fix

    Coordinates

    Schedules

    Overruns

  • RE: script help

    No worries, enjoy!

    😎

  • RE: script help

    charipg (5/6/2015)


    it returns 21 rows.

    Try copy the single row from the second query and paste it to a text editor, the full statement should be there.

    😎

  • RE: Determine manufactoring date

    Since you don't need historical quantities, you can just summarize the current status

    😎

    SELECT

    WM.ItemID

    ,SUM(WM.Quantity) AS CURRENT_QTY

    FROM @WhareHouseMovement WM

    GROUP BY WM.ItemID;

  • RE: script help

    charipg (5/5/2015)


    i tried with both scripts, both scripts returns only one grant statement, but it should return more grant statements.

    What does this query return?

    😎

    SELECT 'grant execute on ' +

    ...

  • RE: Master/Driver Package and Expression to Set Variable - Be Careful

    Came across this few years back, caused some strange behaviour and took some effort to find the cause. Workaround was to call T-SQL GETDATE() once at the start of the...

Viewing 15 posts - 5,356 through 5,370 (of 8,761 total)