Shredding refers to the decomposition of XML data structures into the columns of a relational database. It can also refer to overwriting the contents of a file in an attempt to prevent recovery of deleted data.
0
votes
0answers
36 views
How to shred Column names as well as data from the XML
I have a XML which has a header group with column names and a data group with the actual data belonging to those columns.
Sample XML:
<headerGroup>
<data>
...
0
votes
1answer
88 views
Shred Recycle Bin - Python
I am developing a file shredder for windows 32 using Python 2.7. One of the desired features is be able to shred all recycle bin contents.
As for other files, outside of the recycle bin, we ...
0
votes
1answer
93 views
Why are the last 2 chars of my NodeJS shred POST request getting stripped?
I am having a problem submitting a UTF8 encoded text file in a POST request using NodeJS "shred"
The text content I am trying to post looks fine on the client side, I know because I console.log it ...
2
votes
1answer
440 views
sql server 2008 xml file to table
I have an xml file that I'm trying to import into a table. My xml file looks like this:
<?xml version="1.0" encoding="utf-8"?>
<xml_objects ...
1
vote
1answer
960 views
Shredding XML from table column into a view in SQL Server
I currently have this code which stores XML into an XML-type column called data, in a table called Storage.
CREATE TABLE Storage
(
ID INT IDENTITY(1,1) PRIMARY KEY,
data XML NOT NULL
)
...
0
votes
1answer
96 views
XML Shredding to include attribute and inner element value
Consider the following XML fragment:
<Orders>
<Totals>
<Total Type="Merchandise">56.89</Total>
<Total Type="Shipping">10.75</Total>
<Total ...
3
votes
1answer
231 views
Create virtual 'shredder' printer
I need to create a virtual printer that 'shreds'
Basically here is my problem. I have a software program that needs to 'print' a file before it will save it. I want to be able to print to my ...
0
votes
1answer
121 views
Shredding XML Conditionally in SQL Server
Consider the following XML file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<Input Control="1234567890">
<Patient>
<AccountID>johnsmith@gmail.com</AccountID>
...
1
vote
1answer
482 views
Shredding XML from DB using SSIS
I am looking for a way to pull XML from a SQL database and shred the XML via SSIS in bulk. I currently have a package that can pull XML from the database and pass the XML to a stored procedure, via ...
2
votes
4answers
368 views
File Shredding Concept question
I have a file shredder on my computer, and I wanted to know if it's possible to make one in JAVA just for learning sake. But, I'm not sure how exactly it works, so this is what I think it does, please ...
0
votes
1answer
1k views
Shredding XML Data into Tables
I have an issue where I must shred multiple xml datasets from multiple providers into a single set of tables by mapping various elements in the sources to my own tables. I can do this just fine when ...
2
votes
1answer
2k views
TSQL Shred XML - Working with namespaces
Here's a link to my previous question on this same block of code with a working shred example
Ok, I'm a C# ASP.NET dev following orders: The orders are to take a given dataset, shred the XML and ...
0
votes
1answer
1k views
TSQL Shred XML - Is this right or is there a better way (newbie @ shredding XML)
Ok, I'm a C# ASP.NET dev following orders: The orders are to take a given dataset, shred the XML and return columns. I've argued that it's easier to do the shredding on the ASP.NET side where we ...
2
votes
3answers
443 views
Writing a file shredder in python or ruby?
In the effort to learn python and/or ruby, I was wondering how a file shredder would be implemented? I would like it to take in a file as an argument and then employ an algorithm to make that file ...
2
votes
2answers
103 views
Does an XML schema or DTD exist for PerformancePoint's Xml Metadata?
I wrote several XQuery statements to shred existing KPI and Dashboard metadata but I would like to validate my queries by reviewing the corresponding Xml Schema or DTD if it exists. I searched online ...
0
votes
3answers
286 views
Writing to free space
I was wondering if It is possible to write to freespace in c#. I mean something like FreeSpace.WriteAllBytes() or like what some shredder apps do.
How can i do so?
1
vote
1answer
2k views
Parse/Shred Huge Complex XML to SQL Server 2008 Database (30+ tables)
I read this already: http://stackoverflow.com/questions/61233/the-best-way-to-shred-xml-data-into-sql-server-database-columns and ...
1
vote
4answers
998 views
Shredding files in .NET
Is there a SDK that can be used in managed code to shred files securely?
EDIT: This is the only link i could find in google that helps me
EDIT: Either SDK or some kind of COM based component.
6
votes
3answers
2k views
Shred: Doesn't work on Journaled FS?
Shred documentation says shred is "not guaranteed to be effective" (See bottom). So if I shred a document on my Ext3 filesystem or on a Raid, what happens? Do I shred part of the file? Does it ...
0
votes
1answer
941 views
Group data when shredding xml to multiple tables in SQL server
This follows on from this question:
http://stackoverflow.com/questions/624206/modify-xml-in-sql-server-to-add-a-root-node/
In addition to the problem posed and now fixed in that question, I am also ...
3
votes
3answers
9k views
Modify XML in SQL server to add a root node
To give some background to this problem first, I am rewriting some code that currently loops through some xml, doing an insert to a table at the end of each loop - replacing with a single sp that ...
1
vote
1answer
3k views
Looking for a good Bulk Insert XML Shredding example for SQL 2005
A little help needed. I'm receiving an xml file similar to this:
<?xml version="1.0" encoding="utf-16"?>
<dc:GRANTEE xsi:schemaLocation="http://www.blahblahblah.com/FullSchema test.xsd " ...