Viewing 15 posts - 7,006 through 7,020 (of 8,753 total)
CptCrusty1 (9/20/2014)
If this works I am going to name my kids after you
Good stuff, make certain you get the spelling right:-D
😎
September 20, 2014 at 7:34 am
klgould1 (9/17/2014)
I am trying to increase the price of an product by a user entered % for items with Dishwasher in the...
September 20, 2014 at 6:21 am
Maybe this article Migrating a Database to SQL Azure using SSDT will help
😎
September 20, 2014 at 6:15 am
nikhil.desai1 (9/19/2014)
I our SQL server project we are using xp_cmdshell to generate .txt or .csv file. As per SQL sever hardening xp_cmdshell is a security risk. Is there any alternative...
September 20, 2014 at 6:08 am
jacksonandrew321 (9/20/2014)
HI Experts,I needs to run business-critical data management applications with enterprise-class sociability, high availability, and security. Which minimum SQL Server 2008 R2 edition will support my usage scenario?
Thanks
Guess...
September 20, 2014 at 5:57 am
okbangas (9/20/2014)
September 20, 2014 at 5:41 am
enriquemallon (9/20/2014)
September 20, 2014 at 4:06 am
I thought that might be the case;-)
Here is an adjustment to the code, picks the two last entries for each subject
😎
create table #temp(candId int identity(1,1),CanNum int,name varchar(50),Attempt1 int,Attempt2 int,attempt3...
September 20, 2014 at 12:30 am
Quick suggestion, use the nodes method, check out this example
😎
DECLARE @TXML XML = '<?xml version="1.0"?>
<SEARCHREQUESTRESULT>
<DOCUMENTS>
<DOCUMENTDETAIL>
<DOCUMENTDATE />
<CONSIDERATIONAMOUNT>0</CONSIDERATIONAMOUNT>
<BOOK><![CDATA[]]></BOOK>
<PAGE><![CDATA[]]></PAGE>
<REFERENCENUMBER><![CDATA[]]></REFERENCENUMBER>
<NOTES><![CDATA[]]></NOTES>
<RETURNEDTO/>
<PARTIES>
<PARTY>
<ID>1090</ID>
...
September 19, 2014 at 10:17 pm
Andrew Kernodle (9/19/2014)
September 19, 2014 at 1:35 pm
Quick thought and as g.britton pointed out, the reference has to be exact, try this out for a size
😎
DECLARE @testXml XML;
select @testXml='<invoices>
<InvoiceNo>13537010*1</InvoiceNo>
<psship>value_psship1</psship>
<InvoiceNo>13537010*3</InvoiceNo>
<psship>value_psship2</psship>
<InvoiceNo>13537010*4</InvoiceNo>
<psship>value_psship3</psship>
<InvoiceNo>13537010*5</InvoiceNo>
<psship>value_psship4</psship>
<InvoiceNo>13537010*7</InvoiceNo>
<psship>value_psship5</psship>
</invoices>';
SELECT
INVOICE.DATA.value('.[1]','VARCHAR(50)')
FROM @testXml.nodes('/invoices')...
September 19, 2014 at 10:37 am
Quick first questions, what are the server specs, has the behaviour been trending, what is the maxdop, the threshold for parallelism, server version/edition?
😎
September 19, 2014 at 10:14 am
wolfkillj (9/19/2014)
okbangas (9/19/2014)
September 19, 2014 at 10:01 am
TomThomson (9/19/2014)
Good question.I was feeling too depressed by my nation's decision to stay under England's domination :crying:
Breaks my heart seeing such an opportunity waisted!
😎
September 19, 2014 at 4:14 am
Stewart "Arturius" Campbell (9/19/2014)
TomThomson (9/19/2014)
I was feeling too depressed by my nation's decision to stay under England's domination :crying: to do any research this morning, so I took a...
September 19, 2014 at 4:10 am
Viewing 15 posts - 7,006 through 7,020 (of 8,753 total)