473,792 Members | 3,251 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

OPENXML sp_xml_prepared ocument - how to use it?

93 New Member
I'm trying to upload XML into SQL Server 2000. I've never used openxml and I'm struggling with it. Below is the procedure with data.

Expand|Select|Wrap|Line Numbers
  1. DECLARE @idoc int
  2.  
  3. DECLARE @doc varchar (1000)
  4.  
  5. SET @doc ='
  6. <Root>
  7. <MajorFamily>
  8.         <FamilyName>CSSP Essential SW</FamilyName>
  9.         <MinorFamily>
  10.             <FamilyName>CSSP Ess SW for CallMgr Series Products</FamilyName>
  11.              <ProductNumber>CON-SESW-SBCSEU</ProductNumber>
  12.         </MinorFamily>
  13.      </MajorFamily>
  14.      <MajorFamily>
  15.         <FamilyName>Catalyst 2900 Series</FamilyName>
  16.         <MinorFamily>
  17.             <FamilyName>Catalyst 2900 Series Accessories</FamilyName>
  18.              <ProductNumber>CAB-RPSAC=</ProductNumber>
  19.              <ProductNumber>CAB-RPSACE=</ProductNumber>
  20.              <ProductNumber>CAB-RPSY-2218=</ProductNumber>
  21.              <ProductNumber>CABLEGUARD-C2940=</ProductNumber>
  22.              <ProductNumber>STK-RACKMOUNT-1RU=</ProductNumber>
  23.              <ProductNumber>WS-X2948G-RACK=</ProductNumber>
  24.              <ProductNumber>WS-X2980G-RACK=</ProductNumber>
  25.         </MinorFamily>
  26.         <MinorFamily>
  27.             <FamilyName>Catalyst 2900 Series Software</FamilyName>
  28.              <ProductNumber>WS-C2980-EMS-LIC=</ProductNumber>
  29.         </MinorFamily>
  30.      </MajorFamily>
  31. </Root>'
  32.  
  33. EXEC sp_xml_preparedocument @idoc OUTPUT, @doc
  34.  
  35.  
  36. SELECT *
  37. FROM OPENXML (@idoc, '???', 1)
  38. WITH 
  39.  
  40. ([MajorFamilyName] nvarchar(255) '???',
  41. [MinorFamilyName] nvarchar(255) '???',
  42. [ProductNunber] nvarchar(255) '???',
  43. )
  44.  
  45. EXEC sp_xml_removedocument @idoc
  46.  
Jun 23 '08 #1
5 20703
emsik1001
93 New Member
I've managed to run it on one example

Expand|Select|Wrap|Line Numbers
  1. DECLARE @idoc int
  2.  
  3. DECLARE @doc varchar (1000)
  4.  
  5. SET @doc ='
  6. <Root>
  7.     <MajorFamily>
  8.         <FamilyName>Training</FamilyName>
  9.         <MinorFamily>
  10.             <FamilyName>Cisco Learning Credit</FamilyName>
  11.              <ProductNumber>TRN-CLC-000</ProductNumber>
  12.              <ProductNumber>TRN-CLC-001</ProductNumber>
  13.              <ProductNumber>TRN-CLC-003</ProductNumber>
  14.              <ProductNumber>TRN-CLC-004</ProductNumber>
  15.         </MinorFamily>
  16.      </MajorFamily>
  17. </Root>'
  18.  
  19. EXEC sp_xml_preparedocument @idoc OUTPUT, @doc
  20. print @idoc
  21.  
  22. SELECT *
  23. FROM OPENXML (@idoc, '/Root/MajorFamily/MinorFamily/ProductNumber', 1)
  24. WITH 
  25. ([ImportDate] nvarchar(255) '../../FamilyName',
  26.  [FileName] nvarchar(255) '../FamilyName',
  27.  [test] nvarchar(255) '.'
  28. )
  29.  
  30. EXEC sp_xml_removedocument @idoc
  31.  
But it fails if I add more data

Expand|Select|Wrap|Line Numbers
  1. DECLARE @idoc int
  2.  
  3. DECLARE @doc varchar (1000)
  4.  
  5. SET @doc ='
  6. <Root>
  7.      <MajorFamily>
  8.         <FamilyName>Advanced Services</FamilyName>
  9.         <MinorFamily>
  10.             <FamilyName>Application Oriented Networking (AON)</FamilyName>
  11.              <ProductNumber>AS-AON-PDI-8340-K9</ProductNumber>
  12.              <ProductNumber>AS-AON-PDI-BUN-K9</ProductNumber>
  13.              <ProductNumber>AS-AON-PDI-K9</ProductNumber>
  14.              <ProductNumber>AS-AON-PDI-NM-K9</ProductNumber>
  15.         </MinorFamily>
  16.      </MajorFamily>
  17.      <MajorFamily>
  18.         <FamilyName>Advanced Technology</FamilyName>
  19.         <MinorFamily>
  20.             <FamilyName>Training Category A</FamilyName>
  21.              <ProductNumber>AS-TRAIN-A</ProductNumber>
  22.         </MinorFamily>
  23.         <MinorFamily>
  24.             <FamilyName>Training Category A for APAC</FamilyName>
  25.              <ProductNumber>AS-TRAIN-A-A</ProductNumber>
  26.         </MinorFamily>
  27.         <MinorFamily>
  28.             <FamilyName>Training Category A for LATAM</FamilyName>
  29.              <ProductNumber>AS-TRAIN-A-L</ProductNumber>
  30.         </MinorFamily>
  31.         <MinorFamily>
  32.             <FamilyName>Training Category B</FamilyName>
  33.              <ProductNumber>AS-TRAIN-B</ProductNumber>
  34.         </MinorFamily>
  35.         <MinorFamily>
  36.             <FamilyName>Training Category B for APAC</FamilyName>
  37.              <ProductNumber>AS-TRAIN-B-A</ProductNumber>
  38.         </MinorFamily>
  39.         <MinorFamily>
  40.             <FamilyName>Training Category B for LATAM</FamilyName>
  41.              <ProductNumber>AS-TRAIN-B-L</ProductNumber>
  42.         </MinorFamily>
  43.         <MinorFamily>
  44.             <FamilyName>Training Category C</FamilyName>
  45.              <ProductNumber>AS-TRAIN-C</ProductNumber>
  46.         </MinorFamily>
  47.         <MinorFamily>
  48.             <FamilyName>Training Category C for APAC</FamilyName>
  49.              <ProductNumber>AS-TRAIN-C-A</ProductNumber>
  50.         </MinorFamily>
  51.         <MinorFamily>
  52.             <FamilyName>Training Category C for LATAM</FamilyName>
  53.              <ProductNumber>AS-TRAIN-C-L</ProductNumber>
  54.         </MinorFamily>
  55.         <MinorFamily>
  56.             <FamilyName>Training Category D</FamilyName>
  57.              <ProductNumber>AS-TRAIN-D</ProductNumber>
  58.         </MinorFamily>
  59.         <MinorFamily>
  60.             <FamilyName>Training Category D for APAC</FamilyName>
  61.              <ProductNumber>AS-TRAIN-D-A</ProductNumber>
  62.         </MinorFamily>
  63.         <MinorFamily>
  64.             <FamilyName>Training Category D for LATAM</FamilyName>
  65.              <ProductNumber>AS-TRAIN-D-L</ProductNumber>
  66.         </MinorFamily>
  67.         <MinorFamily>
  68.             <FamilyName>Training Category E</FamilyName>
  69.              <ProductNumber>AS-TRAIN-E</ProductNumber>
  70.         </MinorFamily>
  71.         <MinorFamily>
  72.             <FamilyName>Training Category E for APAC</FamilyName>
  73.              <ProductNumber>AS-TRAIN-E-A</ProductNumber>
  74.         </MinorFamily>
  75.         <MinorFamily>
  76.             <FamilyName>Training Category E for LATAM</FamilyName>
  77.              <ProductNumber>AS-TRAIN-E-L</ProductNumber>
  78.         </MinorFamily>
  79.         <MinorFamily>
  80.             <FamilyName>Training Category F</FamilyName>
  81.              <ProductNumber>AS-TRAIN-F</ProductNumber>
  82.         </MinorFamily>
  83.         <MinorFamily>
  84.             <FamilyName>Training Category F for APAC</FamilyName>
  85.              <ProductNumber>AS-TRAIN-F-A</ProductNumber>
  86.         </MinorFamily>
  87.         <MinorFamily>
  88.             <FamilyName>Training Category F for LATAM</FamilyName>
  89.              <ProductNumber>AS-TRAIN-F-L</ProductNumber>
  90.         </MinorFamily>
  91.      </MajorFamily>
  92.      <MajorFamily>
  93.         <FamilyName>Application Control Engine (ACE)</FamilyName>
  94.         <MinorFamily>
  95.             <FamilyName>ACE Appliance</FamilyName>
  96.              <ProductNumber>ACE-4710-1F-K9</ProductNumber>
  97.              <ProductNumber>ACE-4710-2F-K9</ProductNumber>
  98.              <ProductNumber>ACE-4710-BAS-SK-K9</ProductNumber>
  99.              <ProductNumber>ACE-4710-BUN-SK-K9</ProductNumber>
  100.              <ProductNumber>ACE-4710-K9</ProductNumber>
  101.              <ProductNumber>ACE-4710-K9=</ProductNumber>
  102.              <ProductNumber>ACE-AP-01-LIC</ProductNumber>
  103.              <ProductNumber>ACE-AP-02-LIC</ProductNumber>
  104.              <ProductNumber>ACE-AP-02-LIC=</ProductNumber>
  105.              <ProductNumber>ACE-AP-04-UP1=</ProductNumber>
  106.              <ProductNumber>ACE-AP-04-UP2=</ProductNumber>
  107.              <ProductNumber>ACE-AP-C-1000-LIC</ProductNumber>
  108.              <ProductNumber>ACE-AP-C-1000-LIC=</ProductNumber>
  109.              <ProductNumber>ACE-AP-C-500-LIC</ProductNumber>
  110.              <ProductNumber>ACE-AP-C-500-LIC=</ProductNumber>
  111.              <ProductNumber>ACE-AP-C-UP1=</ProductNumber>
  112.              <ProductNumber>ACE-AP-C-UP3=</ProductNumber>
  113.              <ProductNumber>ACE-AP-OPT-LIC-K9</ProductNumber>
  114.              <ProductNumber>ACE-AP-OPT-LIC-K9=</ProductNumber>
  115.              <ProductNumber>ACE-AP-SSL-05K-K9</ProductNumber>
  116.              <ProductNumber>ACE-AP-SSL-05K-K9=</ProductNumber>
  117.              <ProductNumber>ACE-AP-SSL-7K-K9</ProductNumber>
  118.              <ProductNumber>ACE-AP-SSL-7K-K9=</ProductNumber>
  119.              <ProductNumber>ACE-AP-SSL-UP1-K9=</ProductNumber>
  120.              <ProductNumber>ACE-AP-SW-1.7A</ProductNumber>
  121.              <ProductNumber>ACE-AP-VIRT-020</ProductNumber>
  122.              <ProductNumber>ACE-AP-VIRT-020=</ProductNumber>
  123.         </MinorFamily>
  124.         <MinorFamily>
  125.             <FamilyName>ACE Global Site Selector</FamilyName>
  126.              <ProductNumber>GSS-4492R-K9</ProductNumber>
  127.              <ProductNumber>SF-GSS-DDOSLIC</ProductNumber>
  128.              <ProductNumber>SF-GSS-DDOSLIC=</ProductNumber>
  129.              <ProductNumber>SF-GSS-DNSLIC</ProductNumber>
  130.              <ProductNumber>SF-GSS-DNSLIC=</ProductNumber>
  131.              <ProductNumber>SF-GSS-V2.0-K9</ProductNumber>
  132.         </MinorFamily>
  133.         <MinorFamily>
  134.             <FamilyName>Application Control Engine (ACE) Bundles</FamilyName>
  135.              <ProductNumber>WS-C6504-E-ACE-K9</ProductNumber>
  136.              <ProductNumber>WS-C6504E-ACE20-K9</ProductNumber>
  137.              <ProductNumber>WS-C6509-E-ACE-K9</ProductNumber>
  138.              <ProductNumber>WS-C6509E-ACE20-K9</ProductNumber>
  139.         </MinorFamily>
  140.         <MinorFamily>
  141.             <FamilyName>Application Control Engine (ACE) Licenses</FamilyName>
  142.              <ProductNumber>ACE-04G-LIC</ProductNumber>
  143.              <ProductNumber>ACE-08G-LIC</ProductNumber>
  144.              <ProductNumber>ACE-16G-LIC</ProductNumber>
  145.              <ProductNumber>ACE-SBC-H248</ProductNumber>
  146.              <ProductNumber>ACE-SBC-H323</ProductNumber>
  147.              <ProductNumber>ACE-SBC-H323=</ProductNumber>
  148.              <ProductNumber>ACE-SBC-NO-APP</ProductNumber>
  149.              <ProductNumber>ACE-SBC-RTU</ProductNumber>
  150.              <ProductNumber>ACE-SBC-SIP</ProductNumber>
  151.              <ProductNumber>ACE-SBC-SIP=</ProductNumber>
  152.              <ProductNumber>ACE-SBC-SW2000</ProductNumber>
  153.              <ProductNumber>ACE-SBC-SW3000-K9</ProductNumber>
  154.              <ProductNumber>ACE-SBC-SW3000-K9=</ProductNumber>
  155.              <ProductNumber>ACE-SEC-LIC-K9</ProductNumber>
  156.              <ProductNumber>ACE-SSL-05K-K9</ProductNumber>
  157.              <ProductNumber>ACE-SSL-05K-K9=</ProductNumber>
  158.              <ProductNumber>ACE-SSL-10K-K9</ProductNumber>
  159.              <ProductNumber>ACE-SSL-10K-K9=</ProductNumber>
  160.              <ProductNumber>ACE-SSL-15K-K9</ProductNumber>
  161.              <ProductNumber>ACE-SSL-15K-K9=</ProductNumber>
  162.              <ProductNumber>ACE-SSL-UP1-K9=</ProductNumber>
  163.              <ProductNumber>ACE-SSL-UP2-K9=</ProductNumber>
  164.              <ProductNumber>ACE-UPG1-LIC=</ProductNumber>
  165.              <ProductNumber>ACE-UPG2-LIC=</ProductNumber>
  166.              <ProductNumber>ACE-VIRT-020</ProductNumber>
  167.              <ProductNumber>ACE-VIRT-020=</ProductNumber>
  168.              <ProductNumber>ACE-VIRT-050</ProductNumber>
  169.              <ProductNumber>ACE-VIRT-050=</ProductNumber>
  170.              <ProductNumber>ACE-VIRT-100</ProductNumber>
  171.              <ProductNumber>ACE-VIRT-100=</ProductNumber>
  172.              <ProductNumber>ACE-VIRT-250</ProductNumber>
  173.              <ProductNumber>ACE-VIRT-250=</ProductNumber>
  174.              <ProductNumber>ACE-VIRT-UP1=</ProductNumber>
  175.              <ProductNumber>ACE-VIRT-UP2=</ProductNumber>
  176.              <ProductNumber>ACE-VIRT-UP3=</ProductNumber>
  177.              <ProductNumber>ACE20-SBC-K9</ProductNumber>
  178.              <ProductNumber>ACE20-SBC-K9=</ProductNumber>
  179.         </MinorFamily>
  180.         <MinorFamily>
  181.             <FamilyName>Application Control Engine (ACE) Service Module</FamilyName>
  182.              <ProductNumber>ACE-SBC-SW2000-K9</ProductNumber>
  183.              <ProductNumber>ACE-SBC-SW2000-K9=</ProductNumber>
  184.              <ProductNumber>ACE10-6500-K9</ProductNumber>
  185.              <ProductNumber>ACE10-6500-K9=</ProductNumber>
  186.              <ProductNumber>ACE20-MOD-K9</ProductNumber>
  187.              <ProductNumber>ACE20-MOD-K9=</ProductNumber>
  188.              <ProductNumber>ACE20-SBC-K9</ProductNumber>
  189.              <ProductNumber>ACE20-SBC-K9=</ProductNumber>
  190.         </MinorFamily>
  191.         <MinorFamily>
  192.             <FamilyName>Application Control Engine (ACE) Software</FamilyName>
  193.              <ProductNumber>SC6K-3.0.0A14-ACE</ProductNumber>
  194.              <ProductNumber>SC6K-3.0.0A16-ACE</ProductNumber>
  195.              <ProductNumber>SC6K-A21-ACE</ProductNumber>
  196.         </MinorFamily>
  197.         <MinorFamily>
  198.             <FamilyName>Application Control Engine (ACE) XML Gateway</FamilyName>
  199.              <ProductNumber>ACE-WAF-GAT-LICFX</ProductNumber>
  200.              <ProductNumber>ACE-WAF-GAT-LICFX=</ProductNumber>
  201.              <ProductNumber>ACE-WAF-MGT-LICFX</ProductNumber>
  202.              <ProductNumber>ACE-WAF-MGT-LICFX=</ProductNumber>
  203.              <ProductNumber>ACE-XML-FIPS</ProductNumber>
  204.              <ProductNumber>ACE-XML-GAT-LICFX</ProductNumber>
  205.              <ProductNumber>ACE-XML-GAT-LICFX=</ProductNumber>
  206.              <ProductNumber>ACE-XML-GATE-LIC</ProductNumber>
  207.              <ProductNumber>ACE-XML-K9</ProductNumber>
  208.              <ProductNumber>ACE-XML-MGMT-LIC</ProductNumber>
  209.              <ProductNumber>ACE-XML-MGT-LICFX</ProductNumber>
  210.              <ProductNumber>ACE-XML-MGT-LICFX=</ProductNumber>
  211.              <ProductNumber>ACE-XML-NF-K9</ProductNumber>
  212.              <ProductNumber>ACE-XML-NONFIPS</ProductNumber>
  213.              <ProductNumber>ACE-XML-SW-5.0</ProductNumber>
  214.              <ProductNumber>ACE-XML-SW-5.1</ProductNumber>
  215.              <ProductNumber>ACE-XML-SW-5.2</ProductNumber>
  216.              <ProductNumber>ACE-XML-SW-6.0</ProductNumber>
  217.              <ProductNumber>HDD-AXG-360G5=</ProductNumber>
  218.         </MinorFamily>
  219.      </MajorFamily>
  220. </Root>'
  221.  
  222. EXEC sp_xml_preparedocument @idoc OUTPUT, @doc
  223. print @idoc
  224.  
  225. SELECT *
  226. FROM OPENXML (@idoc, '/Root/MajorFamily/MinorFamily/ProductNumber', 1)
  227. WITH 
  228. ([ImportDate] nvarchar(255) '../../FamilyName',
  229.  [FileName] nvarchar(255) '../FamilyName',
  230.  [test] nvarchar(255) '.'
  231. )
  232.  
  233. EXEC sp_xml_removedocument @idoc
  234.  
I'm getting this error

Server: Msg 6603, Level 16, State 1, Procedure sp_xml_prepared ocument, Line 224
XML parsing error: The following tags were not closed: Root, MajorFamily, MinorFamily, ProductNumber.
Jun 23 '08 #2
emsik1001
93 New Member
It is working after changing data type to varchar(8000) and removing some characters.

However the file I have is 8mb of text and I'm getting this error

The text, ntext, and image data types are invalid for local variables.


Does anyone know how to pass large file into stored procedure? Using T-SQL or VB?
Jun 24 '08 #3
jgoemat
1 New Member
Try using varchar(max) instead of text
http://www.teratrax.com/articles/varchar_max.html
Jan 25 '10 #4
Yathirajalb
1 New Member
Expand|Select|Wrap|Line Numbers
  1. BEGIN
  2. DECLARE @idoc int 
  3.  
  4. DECLARE @doc nvarchar(max) 
  5.  
  6. SET @doc =' 
  7. <Root> 
  8. <MajorFamily> 
  9.         <FamilyName>CSSP Essential SW</FamilyName> 
  10.         <MinorFamily> 
  11.             <FamilyName>CSSP Ess SW for CallMgr Series Products</FamilyName> 
  12.              <ProductNumber>CON-SESW-SBCSEU</ProductNumber> 
  13.         </MinorFamily> 
  14.      </MajorFamily> 
  15.      <MajorFamily> 
  16.         <FamilyName>Catalyst 2900 Series</FamilyName> 
  17.         <MinorFamily> 
  18.             <FamilyName>Catalyst 2900 Series Accessories</FamilyName> 
  19.              <ProductNumber>CAB-RPSAC=</ProductNumber> 
  20.              <ProductNumber>CAB-RPSACE=</ProductNumber> 
  21.              <ProductNumber>CAB-RPSY-2218=</ProductNumber> 
  22.              <ProductNumber>CABLEGUARD-C2940=</ProductNumber> 
  23.              <ProductNumber>STK-RACKMOUNT-1RU=</ProductNumber> 
  24.              <ProductNumber>WS-X2948G-RACK=</ProductNumber> 
  25.              <ProductNumber>WS-X2980G-RACK=</ProductNumber> 
  26.         </MinorFamily> 
  27.         <MinorFamily> 
  28.             <FamilyName>Catalyst 2900 Series Software</FamilyName> 
  29.              <ProductNumber>WS-C2980-EMS-LIC=</ProductNumber> 
  30.         </MinorFamily> 
  31.      </MajorFamily> 
  32. </Root>' 
  33.  
  34. EXEC sp_xml_preparedocument @idoc OUTPUT, @doc 
  35.  
  36.  
  37. SELECT * 
  38. FROM OPENXML (@idoc, 'Root/MajorFamily/MinorFamily/ProductNumber', 1) 
  39. WITH ([MajorFamilyName] nvarchar(255) '../../FamilyName', 
  40. [MinorFamilyName] nvarchar(255) '../FamilyName', 
  41. [ProductNunber] nvarchar(255) '../ProductNumber') 
  42.  
  43. EXEC sp_xml_removedocument @idoc 
  44. END
try with the above script .. it will work
Jan 1 '14 #5
Dormilich
8,658 Recognized Expert Moderator Expert
@Yathirajalb, I guess after 4 years the problem is of no more importance.
Jan 2 '14 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

2
7755
by: JM | last post by:
I have a SP set up to take an input param and then fire the following sp_xml_preparedocument OPENXML (With a select statement) sp_xml_removedocument This works fine with the XML syntax that microsoft provides in its documentation ... <ROOT>
1
2677
by: jrd | last post by:
The below code is only pulling the outcome_id value, but is pulling back null for the other fields in the xml string, any ideas on what is going on? -- Prepare xml data to be transfered into an xml table in sql server DECLARE @xmlTable varchar(8000) DECLARE @DocHandle int select @xmlTable = '<DATA><xmlRow outcome_id="35" dt_outcome="12/1/2004" patient_regimen_id="21" regimen_id="2" record_type="existing" /></DATA>'
0
1707
by: Tom | last post by:
Hi, I've got problems using ntext data in a stored procedure (SQL-Server 2000): create procedure testproc @xmldata ntext as declare @Param ntext
2
1653
by: Bostonasian | last post by:
I've got thousands of XML docs and have to import those to the DB. And I am having problem with getting some values because of tricky XML format. I didn't create this XML format and I don't like this format, OOP snob did. And I(DBA) have to look after their mess. I've got XML doc like this : <customer> <customer_id>12345</customer_id> <first_name>Jason</first_name>
1
2449
by: Sandy | last post by:
Hi, My application writes data into sql server. Currently it converts data into XML (an in memory XML string) and write using OPENXML. I want to know if i write it to a csv file and use BCP, then will it be faster then OPENXML. (i feel, writing to a csv will create IO operation that will slow down the process).
0
2811
by: Micke | last post by:
On a code behing page to an aspx page I want to open a xml file in Excel and save it as an Excel file. I have following code that is working: Dim oExcel As New Excel.Application Dim oBook As Excel.Workbook oBook = oExcel.Workbooks.OpenXML("C:\Test.xml") Now I want to apply the stylesheet Test.xsl defined in the XML file as: <?xml-stylesheet type='text/xsl' href='Test.xsl'?>
1
2178
by: figital | last post by:
I am researching the use of OpenXml for doing mass updates/inserts. Does anyone know how this procedure works as far as sql injection is concerned? I've always been taught to use sp's with parameters...does using OpenXML open up any holes in that idea? My thinking is that it would be fine (maybe even better), because the fields will still be treated as literals. Alternatively, are there any other suggestions for doing massive
2
3704
by: Shilpa | last post by:
Hi All, I want to pass XML and the data in the XML should be stored in the tables of the database. However, I do not want to use the OpenXML statement. Please let me know. Regards, Shilpa
1
2567
by: yingwen | last post by:
I have a xml similar like this: <Member ID="123"> <DateBorrowed>11-01-2006</DateBorrowed> <Book ID="222" Title="ABC"> <Category> Fiction</Category> </Book> <Book ID="333" Title="ABu">
0
9670
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9518
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9033
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5436
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4111
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3719
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2917
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.