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
STEP BY STEP INSTRUCTIONS SETTING UP SMALL BUSINESS SERVER 2003 R2
Windows cannot access the file gpt.ini for GPO
VB: DataTable structure
Automate DHCP client computer add/remove via command line on Windows 2003 DHCP Server
ie crashes after latest Tuesday patches
fail to chop 2 GB WMV files
subquery to update selected rows in table
find a folder name vbs
problem with a FormView control in a sharepoint page.
how can i loop through the tables in my database and do a record count for each table?