Viewing 15 posts - 5,356 through 5,370 (of 8,761 total)
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...
May 7, 2015 at 2:40 pm
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)
SlateStone
Cold
Beer
Need
Want
More
Merrier
May 7, 2015 at 2:18 pm
caddywonkus (5/7/2015)
May 7, 2015 at 2:16 pm
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
😎
May 7, 2015 at 2:08 pm
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,...
May 7, 2015 at 1:59 pm
GilaMonster (5/7/2015)
Ok, I need to write something.Article requests?
How about different types of db recovery?
😎
May 7, 2015 at 1:48 pm
____ KD (5/7/2015)
The code was working in SQL query.
I wanted to drop the table because the table schema may change so I only...
May 7, 2015 at 1:19 pm
mxy (5/7/2015)
May 7, 2015 at 1:17 pm
Quick thought, open all scripts in SSMS and do Find and Replace in All open documents
😎
May 7, 2015 at 1:00 pm
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)
skaarhulk
Hogan
Champ
CHUMP
Chimp
Zoo
Smell
Code
Bug
Fix
Coordinates
Schedules
Overruns
May 7, 2015 at 5:57 am
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.
😎
May 6, 2015 at 10:05 am
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;
May 6, 2015 at 1:19 am
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 ' +
...
May 5, 2015 at 10:42 pm
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...
May 5, 2015 at 10:19 pm
Viewing 15 posts - 5,356 through 5,370 (of 8,761 total)