Microsoft
Software
Hardware
Network
Question : Extract data from XML using sql server 2005Question
Having difficulty to extract data from XML document How do I extract all the values (GC Bidding / Pre-Design) and value of "pi" attribute from
tag?
GC Bidding
Pre-Designesc>
Answer : Extract data from XML using sql server 2005Question
declare @x xml
set @x = '
GC Bidding
Pre-Designc>
'
select t.c.value('.','varchar(50)
'),
t.c.value('./@pi','varchar
(50)')
from @x.nodes('/project-stage/t
itle-code/
stage-desc
') t(c)
Random Solutions
Design question on being able to select multiple records on the form
vba code to show a message when no records exist when a form is opened
Access 2007 RunTime - "The command or action 'Find' isn't available now."
creating system.mdw whit VB 5
WSUS on Windows 2003 R2 Standard, Does the Report Viewer 2008 Work on this.
Code retriving duplicated numbers.
How do I restore the toolbar at the bottom of Outlook Mailbox where the number that shows the number of email messages is located.
Using web service in javascript for asp.net ajax-enabled web site
Excel - Using Find Method to Locate a Cell in Another Open Workbook
Need to convert bytes to image in web page ASP.Net C#