News in the Category: XSD Subscribe to the rss of this category.

Total posts: 65

New XSD Functionality in Visual Studio 2008 SP1 Beta 1

XmlTeams WebLog, May 12, 2008

We’re thrilled to announce that today the new XML Schema Explorer is included in the Orcas SP1 Beta release for Visual Studio 2008. We previously released a CTP showcasing a subset of the XML Sc...

SQL SERVER - 2005 - Transferring Ownership of a Schema to a User

Journey to SQL Authority with Pinal Dave, April 5, 2008

One of the blog reader asked me how transfer of ownership of schema to another users. Follow the simple script and you will be able to transfer ownership of schema to another user.ALTER AUTHORIZATION ...

Scheming for Schema

Eric Gunnersons C# Compendium, March 11, 2008

As many of you know, we already provide access to the schema for the healthvault types through the Type Schema Browser and the Raw XML API reference page. If those pages don't do exactly what you wan...

LINQ to XSD Alpha 0.2

XmlTeams WebLog, February 21, 2008

Im happy to announce that today we are re-releasing the LINQ to XSD Preview Alpha 0.2 for Visual Studio 2008. The previous preview release of LINQ to XSD targeted Beta 1 of Visual Studio 2008 but did ...

Versioning Databases Branching and Merging

K. Scott Allen, February 4, 2008

Previous entries: Three rules for Database Work The Baseline Change Scripts Views, Stored Procedures and the Like If you are not familiar with branching and merging, I'd suggest Eric Sink's ex...

Versioning Databases Views, Stored Procedures, and the Like

K. Scott Allen, February 3, 2008

What started as a short brain dump is tuning in to a longer series of posts thanks to all the feedback and questions. In this post, I want to explain some of my thoughts on controlling objects like da...

SQL SERVER - Find All The User Defined Functions (UDF) in a Database

Journey to SQL Authority with Pinal Dave, February 2, 2008

Following script is very simple script which returns all the User Defined Functions for particular database.USE AdventureWorks;GOSELECT name AS function_name,SCHEMA_NAME(schema_id) AS schema_name,type...

Versioning Databases The Baseline

K. Scott Allen, February 1, 2008

Continuing from the last post (Three Rules for Database Work), I wanted to drill into some database versioning strategies that have worked well for me. Caveats and Considerations As a preface, let me...

Three Rules for Database Work

K. Scott Allen, January 31, 2008

Some developers love working with relational databases, and other developers can't stand to touch them. Either way - if your application uses a database, you have to treat the database with some respe...

Understanding Replication Types

Microsoft Certified Professional Magazine Online | Todays Top Picks, January 9, 2008

Snapshot, transactional and merge -- your replication schema will fall under one of these methods, so choose wisely....

Inheritance and the Entity Framework

K. Scott Allen, December 18, 2007

Here is an excerpt of the schema for the top level of OdeToCode: The Community_ContentPages table carries all of the data needed by every type of content like moderation flags, published date, and ...

BizTalk Mapping Design Template

Stephen Kaufman's WebLog, December 10, 2007

I visit a lot of customers and I hear many of the same questions.  One of the most common at the beginning of a project is how do I document and design the transformations.   I have created ...

Accessing Infopath fields, a simpler way.

Sahil Malik - blah.winsmarts.com, December 1, 2007

What is the conventional way you'd access fields in an infopath form in VSTA code? XPathNavigator myNavigator =     this.MainDataSource.CreateNavigator().SelectSingleNode( ...

SchemaImporterExtension

The Code Project Latest Articles, November 12, 2007

SchemaImporterExtension...

SCF intellisense

The Moth, October 31, 2007

It has been a while since I blogged anything about SideShow but it occurred to me recently that when I was throwing together the SCF XML for my SideShow screencast, I never used the schema to get inte...

October Is Scary Schema Month

K. Scott Allen, October 10, 2007

Ayende kicked the month off with "Schema to wince by", then "CRM Horror". Great timing, Ayende! With Halloween right around the corner, let's make October scary schema month! Here is one that r...

SQL SERVER - 2005 - List All The Constraint of Database - Find Primary Key and Foreign Key Constraint in Database

Journey to SQL Authority with Pinal Dave, September 16, 2007

Following script are very useful to know all the constraint in the database. I use this many times to check the foreign key and primary key constraint in database. This is simple but useful script fro...

Troubleshooting BlogML - Schema

Keyvan Nayyeri, September 15, 2007

In the first post of my series about BlogML troubleshooting I gave an introduction to BlogML troubleshooting in general.  In this post I want to talk about issues related to BlogML schema and spe...

Managing XSD Files - if you must have them

Steven Smith, September 5, 2007

For an admin application I've been working on, we're using a third party reporting tool to serve up reports to our users over the Internet.  The reports have a nice designer that works with XSD f...

Announcing CTP1 of the XML Schema Designer

XmlTeams WebLog, August 27, 2007

XML Tools team has released the first CTP of the XML Schema Designer - a graphical tool for working with XML Schemas.  You can download it from Microsoft Downloads site. This CTP introduces ...

Process-orientation and dynamic applications

Fredrik Norméns Blog, June 29, 2007

I have during a long time build some kind of “static” applications; I have used Domain Driven Design for most of my solutions during the last three years. Most of those apps became static....

Process-orientation and dynamic applications

Fredrik Norméns Blog, June 29, 2007

I have during a long time build some kind of “static” applications; I have used Domain Driven Design for most of my solutions during the last three years. Most of those apps became static....

Version 2 of ASP.Net Rss Toolkit released!

Marc's Musings, June 16, 2007

Thanks to some amazing work by Piyush Shah of Microsoft, the ASP.Net RssToolkit originally authored by Dmitry Robsman has grown up big and strong! The new release adds some awesome features that many ...

XML Schema Facets

XmlTeams WebLog, May 31, 2007

I have received a number of requests over a period of time asking how to get all the facets defined on simple types or complex types with simple content in an XML Schema. I recently wrote a ...

Entity Framework: CSDL, MSL and SSDL Schemas

JohnPapa.net, April 3, 2007

Due to the lack of a designer and because I am very curious, I’ve been digging through the XML for the CSDL, MSL and a little bit into the SSDL schemas for the Entity Framework’s Entity Da...

Entity Framework: CSDL, MSL and SSDL Schemas

JohnPapa.net, April 3, 2007

Due to the lack of a designer and because I am very curious, I’ve been digging through the XML for the CSDL, MSL and a little bit into the SSDL schemas for the Entity Framework’s Entity Da...

Entity Framework: CSDL, MSL and SSDL Schemas

JohnPapa.net, April 3, 2007

Due to the lack of a designer and because I am very curious, I’ve been digging through the XML for the CSDL, MSL and a little bit into the SSDL schemas for the Entity Framework’s Entity Da...

To Trust, or Not to Trust?

XmlTeams WebLog, April 2, 2007

Validation of an XML document against an Xml Schema guarantees that the structure and content of the xml conforms to the types defined in the schema. Does this mean that we automatically elevate the t...

OFX Data parsing in .NET

Rick Strahls WebLog, February 1, 2007

Im working on a project that needs to import a score of financial information using the OFX protocol which are used by Quicken and Money. When I started out on this I was glad to see that these protoo...

OFX Data parsing in .NET

Rick Strahls WebLog, February 1, 2007

Im working on a project that needs to import a score of financial information using the OFX protocol which are used by Quicken and Money. When I started out on this I was glad to see that these protoo...

OFX Data parsing in .NET

Rick Strahls WebLog, February 1, 2007

Im working on a project that needs to import a score of financial information using the OFX protocol which are used by Quicken and Money. When I started out on this I was glad to see that these protoo...

OFX Data parsing in .NET

Rick Strahls WebLog, February 1, 2007

Im working on a project that needs to import a score of financial information using the OFX protocol which are used by Quicken and Money. When I started out on this I was glad to see that these protoo...

XSD.EXE and included schemas?

Rick Strahls WebLog, January 27, 2007

Heres a basic question that I cant seem to figure out: I need to import a schema (specifically OFX schema) into .NET and Im trying to do this with XSD. The schema files are broken up into linked schem...

XSD.EXE and included schemas?

Rick Strahls WebLog, January 27, 2007

Heres a basic question that I cant seem to figure out: I need to import a schema (specifically OFX schema) into .NET and Im trying to do this with XSD. The schema files are broken up into linked schem...

XSD.EXE and included schemas?

Rick Strahls WebLog, January 27, 2007

Heres a basic question that I cant seem to figure out: I need to import a schema (specifically OFX schema) into .NET and Im trying to do this with XSD. The schema files are broken up into linked schem...

XSD.EXE and included schemas?

Rick Strahls WebLog, January 27, 2007

Heres a basic question that I cant seem to figure out: I need to import a schema (specifically OFX schema) into .NET and Im trying to do this with XSD. The schema files are broken up into linked schem...

Essential Subtext 1.9.2 Crib Notes

youve been HAACKED, October 26, 2006

Reading over my last blog post, I realized I can be a bit long winded when describing the latest release of Subtext. Can you blame me? I pour my blood, sweat, and tears (minus the blood) into this pro...

configuration entry intellisense

hongmeigs WebLog, October 16, 2006

Wondering how do you ever get intellisense while writing configuration files using VS? Here is why? All the scchemas for VS are defined at {...}\VisualStudio\bin\i386\xml\schemas\dotNetConfi...

XSDObjectGen ++ ?

All About Interop, October 10, 2006

If you model your data types in XSD, then maybe you have used xsd.exe, in the .NET Framework SDK.  It can generate a .NET class from an XSD, and so can be really useful in the general domain of "...

RailsConf Europe Notes: JRuby

XML-BLOG, September 15, 2006

Why Go to Sun? Work on JRuby full time Opportunity to make real progress Sun folks get it, want Ruby to succeed Java people need Ruby What is JRuby 100% Java implementation of Ruby, Ruby on JVM ...

Flat File Schema and Early Termination

Integration through Biztalk, August 29, 2006

For those who have worked with Flat File Schemas, must have used or at least heard the property called "Early Termination". This Property is exposed with Biztalk SP2 but otherwise it can only be edi...

Validating XML Files Against XSD Schemas in .NET 1.x and 2.0

ASPAlliance.com - The #1 ASP.NET Community, August 14, 2006

Validating XML files is a common task in software development for developers. There are three ways to validate XML files: XSD Schema, DTD and Relax NG. In .NET XSD Schema is the preferred way to valid...

Validating XML Files Against XSD Schemas in .NET 1.x and 2.0

ASP.NET Announcements, August 14, 2006

Validating XML files is a common task in software development for developers. There are three ways to validate XML files: XSD Schema, DTD and Relax NG. In .NET XSD Schema is the preferred way to vali...

Validating XML Files Against XSD Schemas in .NET 1.x and 2.0

ASPAlliance.com - The #1 ASP.NET Community, August 14, 2006

Validating XML files is a common task in software development for developers. There are three ways to validate XML files: XSD Schema, DTD and Relax NG. In .NET XSD Schema is the preferred way to valid...

Validating XML Files Against XSD Schemas in .NET 1.x and 2.0

Keyvan Nayyeri, August 14, 2006

My first article on ASP Alliance has been published: Validating XML Files Against XSD Schemas in .NET 1.x and 2.0. In this article I described the multi-step process of validating an XML file against ...

Service Modeling Language based on XML Schema and Schematron

Signs on the Sand, August 7, 2006

Microsoft, BEA, IBM, Cisco, Intel , HP etc mix XML Schema, Schematron and XPointer to create a draft of the Service Modeling Language (SML) used to model complex IT services and systems, including the...

Online Database Schema Samples Library

ISerializable, July 25, 2006

This is so I don't forget. Scott Guthrie posted about a site that has pre-bui;t schema examples of common database scenarios. In short - it lets you see what a "standard" database for an...

Basic Contract-First WebServices With XSDObjectGen

EggHeadCafe.com New Articles, June 1, 2006

Sample illustration of XSDObjectGen technique for developing WebService object classes....

Keep your BizTalk Schema's Static, otherwise ... BizBalk

Jan Tielens Bloggings [MVP], May 18, 2006

[Via Mike Diehl] Hehehe, I like this one! But it's also very true: think about your schema's, get people involved and get them to think about the schema's as well. This will save a lot of time (trust ...

Keep your BizTalk Schema's Static, otherwise ... BizBalk

Jan Tielens Bloggings [MVP], May 17, 2006

[Via Mike Diehl] Hehehe, I like this one! But it's also very true: think about your schema's, get people involved and get them to think about the schema's as well. This will save a lot of time (trust ...

Product Spotlight