<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>An MCT Sparse Thoughts about Microsoft Technologies</title>
	<atom:link href="http://vincenzotenisci.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vincenzotenisci.wordpress.com</link>
	<description>Logbook on Sharepoint, SQL Server, .NET Programming, Architectures and MCT Training</description>
	<lastBuildDate>Tue, 28 Jun 2011 13:49:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vincenzotenisci.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>An MCT Sparse Thoughts about Microsoft Technologies</title>
		<link>http://vincenzotenisci.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vincenzotenisci.wordpress.com/osd.xml" title="An MCT Sparse Thoughts about Microsoft Technologies" />
	<atom:link rel='hub' href='http://vincenzotenisci.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Entity Framework 4.1 DbContext Proxy class with .NET 4.0 dynamic types</title>
		<link>http://vincenzotenisci.wordpress.com/2011/06/27/entity-framework-4-1-dbcontext-proxy-class-with-net-4-0-dynamic-types/</link>
		<comments>http://vincenzotenisci.wordpress.com/2011/06/27/entity-framework-4-1-dbcontext-proxy-class-with-net-4-0-dynamic-types/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 21:59:46 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://vincenzotenisci.wordpress.com/2011/06/27/entity-framework-4-1-dbcontext-proxy-class-with-net-4-0-dynamic-types/</guid>
		<description><![CDATA[With the DynamicObject base class you can build a lot of proxy classes that intercept method or property calls to whatever object. To implement a proxy with DynamicObject the pattern is very simple: 1) Write a class that inherit from DynamicObject and implement a constructor that accepts an instance of the object that you want [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=54&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With the <strong>DynamicObject</strong> base class you can build a lot of proxy classes that intercept method or property calls to whatever object.</p>
<p>To implement a proxy with <strong>DynamicObject</strong> the pattern is very simple:</p>
<p>1) Write a class that inherit from DynamicObject and implement a constructor that accepts an instance of the object that you want to incapsulate:</p>
<p>public class Proxy&lt;T&gt; : DynamicObject   <br />&#160;&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; private T _obj; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; public Proxy(T obj)   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; _obj = obj;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; } </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; public T Unwrap()   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return _obj;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; } </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; public void Wrap(T obj)   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; _obj = obj;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }    <br />&#160;&#160;&#160; }</p>
<p>&#160;</p>
<p>2) Starting from 1, add overrides to TryInvokeMember to intercept method calls. TrySetMember and TryGetMember to intercept property calls and use <strong>reflection</strong> to execute member calls on the encapsulated object.</p>
<p>With Entity Framework 4.1 now you have the new DbContext class. With this, is very easy to handle insert, update and delete operation with disconnected entities.</p>
<p>For example: suppose that you want to perform an update operation using an instance of a class named Customer for CustomerId = 3.</p>
<p>Now you can write code like this:</p>
<p>using (var db = new MyDBContextClass())   <br /> {    <br />&#160;&#160;&#160;&#160;&#160;&#160; Customer c = new Customer()    <br />&#160;&#160;&#160;&#160;&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CustomerId = 3,    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; LastName = &quot;Vincenzo&quot;,    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; FirstName = &quot;Tenisci&quot; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; }; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <strong>db.Entry(c).State = System.Data.EntityState.Modified;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; db.SaveChanges();      <br /></strong>}</p>
<p>Very simple! All you have to do is to attach your Customer instance to your DbContext class via the Entry method and put this instance in a Modified state with the <strong>System.Data.EntityState</strong> enum. After this you call <strong>SaveChanges</strong> method to perform update.</p>
<p>Armed with this knowledge now we are ready for our <strong>DbContext</strong> proxy class.</p>
<p>Suppose that you want to write code like this:</p>
<p>using (var db = new EntityDemoDBContext())   <br /> {    <br />&#160;&#160;&#160;&#160;&#160; dynamic proxy = new DbContextProxy(db); </p>
<p>&#160;&#160;&#160;&#160;&#160; <strong>proxy.InsertCustomer(c);</strong></p>
<blockquote><p>&#160;&#160; OR</p>
<p>&#160;&#160; <strong>proxy.DeleteCustomer(c);</strong></p>
<p>&#160;&#160; OR</p>
<p>&#160; <strong>proxy.UpdateCustomer(c);       <br /></strong>}</p>
<p>without writing explicitly Insert, Update or Delete methods!</p>
</blockquote>
<p>Here is the class:</p>
<p>public class <strong>DbContextProxy</strong> : <strong>DynamicObject</strong>&#160; <br />{    <br />&#160;&#160; DbContext _context; </p>
<p>&#160;&#160; public DbContextProxy(DbContext context)   <br />&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160; _context = context;    <br />&#160;&#160; } </p>
<p>&#160; public override bool <strong>TryInvokeMember</strong>(InvokeMemberBinder binder, object[] args, out object result)    <br />&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160; string methodName = binder.Name;    <br />&#160;&#160;&#160;&#160;&#160;&#160; result = null; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; if (args[0] == null)   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return true; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; if (methodName.StartsWith(&quot;Insert&quot;))   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; result = InsertMethod(args[0]);    <br />&#160;&#160;&#160;&#160;&#160;&#160; else if (methodName.StartsWith(&quot;Delete&quot;))    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; result = DeleteMethod(args[0]);    <br />&#160;&#160;&#160;&#160;&#160;&#160; else if (methodName.StartsWith(&quot;Update&quot;))    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; result = UpdateMethod(args[0]); </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; return true;   <br />&#160;&#160; } </p>
<p>&#160;&#160; private object UpdateMethod(object entity)   <br />&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160; _context.Entry(entity).State=System.Data.EntityState.Modified;    <br />&#160;&#160;&#160;&#160;&#160;&#160; return _context.SaveChanges();    <br />&#160;&#160; } </p>
<p>&#160; private object DeleteMethod(object entity)   <br />&#160; {    <br />&#160;&#160;&#160;&#160;&#160; _context.Entry(entity).State = System.Data.EntityState.Deleted;    <br />&#160;&#160;&#160;&#160;&#160; return _context.SaveChanges();    <br />&#160; } </p>
<p>&#160; private object InsertMethod(object entity)   <br />&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160; _context.Entry(entity).State = System.Data.EntityState.Added;    <br />&#160;&#160;&#160;&#160;&#160;&#160; return _context.SaveChanges();    <br />&#160; }</p>
<p>}</p>
<p>To use this class (see example above) you have to follow this two rules:</p>
<p>1) Your dynamic method names must start with Insert, Update or Delete prefix.</p>
<p>2) You have to pass an instance of the entity that you want to insert or update or delete.</p>
<p>Hope this helps</p>
<p>Vincenzo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=54&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2011/06/27/entity-framework-4-1-dbcontext-proxy-class-with-net-4-0-dynamic-types/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint 2010 TS Certifications Exams 70-573 and 70-567&#8230;. DONE!</title>
		<link>http://vincenzotenisci.wordpress.com/2011/06/15/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done-2/</link>
		<comments>http://vincenzotenisci.wordpress.com/2011/06/15/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done-2/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 16:04:51 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://vincenzotenisci.wordpress.com/2011/06/15/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done-2/</guid>
		<description><![CDATA[Hi, as the title says, I have passed exams 70-573 MCTS: Microsoft SharePoint 2010, Application Development and 70-667 MCTS: Microsoft SharePoint 2010, Configuring so I want to take this opportunity to share with you some considerations about these exams and the real value of certifications. I don't want to auto celebrate me or say that I'm great and beautiful no, you can read this kind of stuff to other's blog posts, I want to express my opinion on those exams, MOC Courses, Sharepoint and so on.. 

Well, as freelance MCT Trainer and Solution Architect is very important to stay on top on technologies and sometimes you have to stop your activities to take new certifications that you are interested in for your professional career. 

Now, I have about eighteen years of experience with Microsoft Technologies and it is about six years that I work deeply with Sharepoint as MCT Trainer and Architect. Principally I am a developer but as you know, Sharepoint is a so complex product and if you want to work with it you have to master all the facets starting from configuring to programming to administering to SQL Server to .NET to....... and believe me, in spite of the number of years that you work with Sharepoint, each day that you have to face it, you ALWAYS discover something new. 

First of all let me express some thoughts about what I mean with the term of certification. 

As I have noticed, there are two kind of approaches to the exams: 

1) Without knowing or knowing little the subject, download various TestKing, vce, pass4sure and so on, memorize exam questions and... CONGRATULATIONS! you have passed and now you are certified! 

2) Follow these general steps 

i) Go to http://www.microsoft.com/learning/en/us/certification/cert-default.aspx and print the skill measured section of the exam you are interested in. 

ii) For each argument in point (i) buy some very good books on the subject, study MOC courses (if you are MCT) or follow them, read Technet/MSDN articles, training kits, search arguments on internet, try to experiment with Virtual Machines or trial software and so on.... 

iii) The day before exam try to perform some tests to have an idea of how the exam is structured. 

iv) CONGRATULATIONS! you have passed and now you are REALLY certified! 

As I always say to my students and colleagues, certification is only a matter of conscience and responsibilities. You are responsible of yourself. If you go straight to point 1, you have to know that, as certified, you have great responsibilities with your customer and your customer have great expectations about you. Some year ago, I assisted at the dismissal of a (certified point 1) freelance guy after FOUR days of work. If you follow that way you throw off a great opportunity to learn great new stuff that before or after you need for your job. 

OK now let's talk about Exams. 

First of all I have to say that I really enjoyed the study/preparation of these exams. I started to use Sharepoint 2010 since the first beta. When I was speaker at the BASTA! Italy Conference http://www.bastaitalia.it/conferenza/speaker/ I performed the conference with the Beta 1 version and it worked very well... after spent nights in building the demo environment. (I have to say that as MCT MOSS 2007 certified I had only access to the Beta 1 version, but at that time, the various MVP had the RTM version.... no comment). Studying for these exams, I went deep with topics that I had no time to explore in the day by day work. Not only!, I have also reviewed some kind of solutions that I have performed during the last months in the light of what I have learned. 

Enter the exams: 

70-667 MCTS: Microsoft SharePoint 2010, Configuring 

First of all.... is not an easy exam. 

1) Study carefully this book: http://www.amazon.com/Professional-SharePoint-2010-Administration-Klindt/dp/0470533331/ref=sr_1_1?s=books&#38;ie=UTF8&#38;qid=1285406373&#38;sr=1-1 it's a great book and covers about 70% of the exam. Now is available also the Bill English's book http://www.amazon.com/Microsoft-SharePoint-2010-Administrators-Companion/dp/0735627207/ref=sr_1_6?s=books&#38;ie=UTF8&#38;qid=1285407101&#38;sr=1-6 

2) Study CAREFULLY ALL the menu's of the Sharepoint 2010 Central Administration. For each menu go deeply with Books, Technet articles and other BLOG Posts, if you do so, you have covered 90% of the exam 

3) Study carefully RBS (Remote BLOB Storage) and PowerShell 

4) Master Sharepoint Security at various level: Farm-&#62;Applications-&#62;Site Collections-&#62;Site-&#62;Lists-&#62;Item 

5) Try to experiment Backup/Restore and the new options: offline and granular backup/restore 

6) Study SQL Server administration (database options, high availability...) 

7) Study carefully Search, Metadata management and People management 

8) Go deep with migration from Sharepoint 2007 to Sharepoint 2010 

9) Study, Study, Study... and... Experiment, Experiment, Experiment 

70-573 MCTS: Microsoft SharePoint 2010, Application Development 

First of all.... I think that it's easier than 70-567, if you have already experience with Sharepoint programming, you pass it without problems but..... 

1) Study carefully this book: http://www.amazon.com/Professional-SharePoint-2010-Development-Programmer/dp/0470529423/ref=sr_1_4?s=books&#38;ie=UTF8&#38;qid=1285407944&#38;sr=1-4. Great book! it covers about 90% of the exam! I'm also waiting for the new Tedd Pattison's book: http://www.amazon.com/Inside-Microsoft-SharePoint-2010-Pattison/dp/0735627460/ref=sr_1_8?s=books&#38;ie=UTF8&#38;qid=1285406373&#38;sr=1-8 

2) Experiment with Sharepoint 2010 Training Kit and SDK 

3) Study, Study, Study... and... Experiment, Experiment, Experiment 

Hope this Helps 

Vincenzo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=51&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi, as the title says, I have passed <b>exams 70-573 MCTS: Microsoft SharePoint 2010, Application Development </b>and<b> 70-567 MCTS: Microsoft SharePoint 2010, Configuring</b> so I want to take this opportunity to share with you some considerations about these exams and the real value of certifications. I don&#8217;t want to auto celebrate me or say that I&#8217;m great and beautiful no, you can read this kind of stuff to other&#8217;s blog posts, I want to express my opinion on those exams, MOC Courses, Sharepoint and so on.. </p>
<p>Well, as freelance MCT Trainer and Solution Architect is very important to stay on top on technologies and sometimes you have to stop your activities to take new certifications that you are interested in for your professional career. </p>
<p>Now, I have about eighteen years of experience with Microsoft Technologies and it is about six years that I work deeply with <b>Sharepoint</b> as MCT Trainer and Architect. Principally I am a developer but as you know, <b>Sharepoint</b> is a so complex product and if you want to work with it you have to master all the facets starting from configuring to programming to administering to SQL Server to .NET to&#8230;&#8230;. and believe me, in spite of the number of years that you work with <b>Sharepoint</b>, each day that you have to face it, you ALWAYS discover something new. </p>
<p>First of all let me express some thoughts about what I mean with the term of certification. </p>
<p>As I have noticed, there are two kind of approaches to the exams: </p>
<p>1) Without knowing or knowing little the subject, download various TestKing, vce, pass4sure and so on, memorize exam questions and&#8230; CONGRATULATIONS! you have passed and now you are certified! </p>
<p>2) Follow these general steps </p>
<p>i) Go to <a href="http://www.microsoft.com/learning/en/us/certification/cert-default.aspx">http://www.microsoft.com/learning/en/us/certification/cert-default.aspx</a> and print the skill measured section of the exam you are interested in. </p>
<p>ii) For each argument in point (i) buy some very good books on the subject, study MOC courses (if you are MCT) or follow them, read Technet/MSDN articles, training kits, search arguments on internet, try to experiment with Virtual Machines or trial software and so on&#8230;. </p>
<p>iii) The day before exam try to perform some tests to have an idea of how the exam is structured. </p>
<p>iv) CONGRATULATIONS! you have passed and now you are REALLY certified! </p>
<p>As I always say to my students and colleagues, certification is only a matter of conscience and responsibilities. You are responsible of yourself. If you go straight to point 1, you have to know that, as certified, you have great responsibilities with your customer and your customer have great expectations about you. Some year ago, I assisted at the dismissal of a (certified point 1) freelance guy after FOUR days of work. If you follow that way you throw off a great opportunity to learn great new stuff that before or after you need for your job. </p>
<p>OK now let&#8217;s talk about Exams. </p>
<p>First of all I have to say that I really enjoyed the study/preparation of these exams. I started to use Sharepoint 2010 since the first beta. When I was speaker at the BASTA! Italy Conference <a href="http://www.bastaitalia.it/conferenza/speaker/">http://www.bastaitalia.it/conferenza/speaker/</a> I performed the conference with the Beta 1 version and it worked very well&#8230; after spent nights in building the demo environment. (I have to say that as MCT MOSS 2007 certified I had only access to the Beta 1 version, but at that time, the various MVP had the RTM version&#8230;. no comment). Studying for these exams, I went deep with topics that I had no time to explore in the day by day work. Not only!, I have also reviewed some kind of solutions that I have performed during the last months in the light of what I have learned. </p>
<p>Enter the exams: </p>
<p><a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-667&amp;locale=en-us#tab2"><b>70-667 MCTS: Microsoft SharePoint 2010, Configuring</b></a> </p>
<p>First of all&#8230;. is not an easy exam. </p>
<p>1) Study carefully this book: <a href="http://www.amazon.com/Professional-SharePoint-2010-Administration-Klindt/dp/0470533331/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-1">http://www.amazon.com/Professional-SharePoint-2010-Administration-Klindt/dp/0470533331/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-1</a> it&#8217;s a great book and covers about 70% of the exam. Now is available also the Bill English&#8217;s book <a href="http://www.amazon.com/Microsoft-SharePoint-2010-Administrators-Companion/dp/0735627207/ref=sr_1_6?s=books&amp;ie=UTF8&amp;qid=1285407101&amp;sr=1-6">http://www.amazon.com/Microsoft-SharePoint-2010-Administrators-Companion/dp/0735627207/ref=sr_1_6?s=books&amp;ie=UTF8&amp;qid=1285407101&amp;sr=1-6</a> </p>
<p><b>2) Study CAREFULLY ALL the menu&#8217;s of the Sharepoint 2010 Central Administration</b>. For each menu go deeply with Books, Technet articles and other BLOG Posts, if you do so, you have covered 90% of the exam </p>
<p><b>3) </b>Study carefully RBS (Remote BLOB Storage) and PowerShell </p>
<p><b>4) </b>Master <b>Sharepoint Security</b> at various level: Farm-&gt;Applications-&gt;Site Collections-&gt;Site-&gt;Lists-&gt;Item </p>
<p><b>5) </b>Try to experiment Backup/Restore and the new options: offline and granular backup/restore </p>
<p><b>6) </b>Study SQL Server administration (database options, high availability&#8230;) </p>
<p><b>7) </b>Study carefully Search, Metadata management and People management </p>
<p><b> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> </b>Go deep with migration from <b>Sharepoint 2007</b> to <b>Sharepoint 2010</b> </p>
<p><b>9) Study, Study, Study&#8230; and&#8230; Experiment, Experiment, Experiment</b> </p>
<p><a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-573&amp;locale=en-us#tab2"><b>70-573 MCTS: Microsoft SharePoint 2010, Application Development</b></a> </p>
<p>First of all&#8230;. I think that it&#8217;s easier than 70-667, if you have already experience with <b>Sharepoint programming</b>, you pass it without problems but&#8230;.. </p>
<p><b>1) </b>Study carefully this book: <a href="http://www.amazon.com/Professional-SharePoint-2010-Development-Programmer/dp/0470529423/ref=sr_1_4?s=books&amp;ie=UTF8&amp;qid=1285407944&amp;sr=1-4">http://www.amazon.com/Professional-SharePoint-2010-Development-Programmer/dp/0470529423/ref=sr_1_4?s=books&amp;ie=UTF8&amp;qid=1285407944&amp;sr=1-4</a>. Great book! it covers about 90% of the exam! I&#8217;m also waiting for the new <b>Tedd Pattison&#8217;s</b> book: <a href="http://www.amazon.com/Inside-Microsoft-SharePoint-2010-Pattison/dp/0735627460/ref=sr_1_8?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-8">http://www.amazon.com/Inside-Microsoft-SharePoint-2010-Pattison/dp/0735627460/ref=sr_1_8?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-8</a> </p>
<p><b>2) </b>Experiment with Sharepoint 2010 Training Kit and SDK </p>
<p><b>3) Study, Study, Study&#8230; and&#8230; Experiment, Experiment, Experiment</b> </p>
<p>Hope this Helps </p>
<p>Vincenzo </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=51&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2011/06/15/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint 2010 TS Certifications Exams 70-573 and 70-567&#8230;. DONE!</title>
		<link>http://vincenzotenisci.wordpress.com/2010/09/25/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done/</link>
		<comments>http://vincenzotenisci.wordpress.com/2010/09/25/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 10:02:11 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Sharepoint 2010]]></category>

		<guid isPermaLink="false">https://vincenzotenisci.wordpress.com/2010/09/25/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done/</guid>
		<description><![CDATA[Hi, as the title says, I have passed exams 70-573 MCTS: Microsoft SharePoint 2010, Application Development and 70-567 MCTS: Microsoft SharePoint 2010, Configuring so I want to take this opportunity to share with you some considerations about these exams and the real value of certifications. I don&#8217;t want to auto celebrate me or say that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=26&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi, as the title says, I have passed <strong>exams 70-573 </strong><strong>MCTS: Microsoft SharePoint 2010, Application Development </strong>and<strong> 70-567 MCTS: Microsoft SharePoint 2010, Configuring</strong> so I want to take this opportunity to share with you some considerations about these exams and the real value of certifications. I don&#8217;t want to auto celebrate me or say that I&#8217;m great and beautiful no, you can read this kind of stuff to other&#8217;s blog posts, I want to express my opinion on those exams, MOC Courses, Sharepoint and so on..</p>
<p>Well, as freelance MCT Trainer and Solution Architect is very important to stay on top on technologies and sometimes you have to stop your activities to take new certifications that you are interested in for your professional career.</p>
<p>Now, I have about eighteen years of experience with Microsoft Technologies and it is about six years that I work deeply with <strong>Sharepoint</strong> as MCT Trainer and Architect. Principally I am a developer but as you know, <strong>Sharepoint</strong> is a so complex product and if you want to work with it you have to master all the facets starting from configuring to programming to administering to SQL Server to .NET to&#8230;&#8230;. and believe me, in spite of the number of years that you work with <strong>Sharepoint</strong>, each day that you have to face it, you ALWAYS discover something new.</p>
<p>First of all let me express some thoughts about what I mean with the term of certification.</p>
<p>As I have noticed, there are two kind of approaches to the exams:</p>
<p>1) Without knowing or knowing little the subject, download various TestKing, vce, pass4sure and so on, memorize exam questions and&#8230; CONGRATULATIONS! you have passed and now you are certified!</p>
<p>2) Follow these general steps</p>
<p>i) Go to <a href="http://www.microsoft.com/learning/en/us/certification/cert-default.aspx">http://www.microsoft.com/learning/en/us/certification/cert-default.aspx</a> and print the skill measured section of the exam you are interested in.</p>
<p>ii) For each argument in point (i) buy some very good books on the subject, study MOC courses (if you are MCT) or follow them, read Technet/MSDN articles, training kits, search arguments on internet, try to experiment with Virtual Machines or trial software and so on&#8230;.</p>
<p>iii) The day before exam try to perform some tests to have an idea of how the exam is structured.</p>
<p>iv) CONGRATULATIONS! you have passed and now you are REALLY certified!</p>
<p>As I always say to my students and colleagues, certification is only a matter of conscience and responsibilities. You are responsible of yourself. If you go straight to point 1, you have to know that, as certified, you have great responsibilities with your customer and your customer have great expectations about you. Some year ago, I assisted at the dismissal of a (certified point 1) freelance guy after FOUR days of work. If you follow that way you throw off a great opportunity to learn great new stuff that before or after you need for your job.</p>
<p>OK now let&#8217;s talk about Exams.</p>
<p>First of all I have to say that I really enjoyed the study/preparation of these exams. I started to use Sharepoint 2010 since the first beta. When I was speaker at the BASTA! Italy Conference <a href="http://www.bastaitalia.it/conferenza/speaker/">http://www.bastaitalia.it/conferenza/speaker/</a> I performed the conference with the Beta 1 version and it worked very well&#8230; after spent nights in building the demo environment. (I have to say that as MCT MOSS 2007 certified I had only access to the Beta 1 version, but at that time, the various MVP had the RTM version&#8230;. no comment). Studying for these exams, I went deep with topics that I had no time to explore in the day by day work. Not only!, I have also reviewed some kind of solutions that I have performed during the last months in the light of what I have learned.</p>
<p>Enter the exams:</p>
<p><a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-667&amp;locale=en-us#tab2"><strong>70-667 MCTS: Microsoft SharePoint 2010, Configuring</strong></a><strong></strong></p>
<p>First of all&#8230;. is not an easy exam.</p>
<p>1) Study carefully this book: <a href="http://www.amazon.com/Professional-SharePoint-2010-Administration-Klindt/dp/0470533331/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-1">http://www.amazon.com/Professional-SharePoint-2010-Administration-Klindt/dp/0470533331/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-1</a> it&#8217;s a great book and covers about 70% of the exam. Now is available also the Bill English&#8217;s book <a href="http://www.amazon.com/Microsoft-SharePoint-2010-Administrators-Companion/dp/0735627207/ref=sr_1_6?s=books&amp;ie=UTF8&amp;qid=1285407101&amp;sr=1-6">http://www.amazon.com/Microsoft-SharePoint-2010-Administrators-Companion/dp/0735627207/ref=sr_1_6?s=books&amp;ie=UTF8&amp;qid=1285407101&amp;sr=1-6</a></p>
<p><strong>2) </strong><strong>Study CAREFULLY ALL the menu&#8217;s of the Sharepoint 2010 Central Administration</strong>. For each menu go deeply with Books, Technet articles and other BLOG Posts, if you do so, you have covered 90% of the exam<strong></strong></p>
<p><strong>3) </strong>Study carefully RBS (Remote BLOB Storage) and PowerShell<strong></strong></p>
<p><strong>4) </strong>Master <strong>Sharepoint Security</strong> at various level: Farm-&gt;Applications-&gt;Site Collections-&gt;Site-&gt;Lists-&gt;Item<strong></strong></p>
<p><strong>5) </strong>Try to experiment Backup/Restore and the new options: offline and granular backup/restore<strong></strong></p>
<p><strong>6) </strong>Study SQL Server administration (database options, high availability&#8230;)<strong></strong></p>
<p><strong>7) </strong>Study carefully Search, Metadata management and People management<strong></strong></p>
<p><strong> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> </strong>Go deep with migration from <strong>Sharepoint 2007</strong> to <strong>Sharepoint 2010</strong></p>
<p><strong>9) </strong><strong>Study, Study, Study&#8230; and&#8230; Experiment, Experiment, Experiment</strong></p>
<p><a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-573&amp;locale=en-us#tab2"><strong>70-573 </strong><strong>MCTS: Microsoft SharePoint 2010, Application Development</strong></a></p>
<p>First of all&#8230;. I think that it&#8217;s easier than 70-567, if you have already experience with <strong>Sharepoint programming</strong>, you pass it without problems but&#8230;..</p>
<p><strong>1) </strong>Study carefully this book: <a href="http://www.amazon.com/Professional-SharePoint-2010-Development-Programmer/dp/0470529423/ref=sr_1_4?s=books&amp;ie=UTF8&amp;qid=1285407944&amp;sr=1-4">http://www.amazon.com/Professional-SharePoint-2010-Development-Programmer/dp/0470529423/ref=sr_1_4?s=books&amp;ie=UTF8&amp;qid=1285407944&amp;sr=1-4</a>. Great book! it covers about 90% of the exam! I&#8217;m also waiting for the new <strong>Tedd Pattison&#8217;s</strong> book: <a href="http://www.amazon.com/Inside-Microsoft-SharePoint-2010-Pattison/dp/0735627460/ref=sr_1_8?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-8">http://www.amazon.com/Inside-Microsoft-SharePoint-2010-Pattison/dp/0735627460/ref=sr_1_8?s=books&amp;ie=UTF8&amp;qid=1285406373&amp;sr=1-8</a><strong></strong></p>
<p><strong>2) </strong>Experiment with Sharepoint 2010 Training Kit and SDK<strong></strong></p>
<p><strong>3) </strong><strong>Study, Study, Study&#8230; and&#8230; Experiment, Experiment, Experiment</strong></p>
<p>Hope this Helps</p>
<p>Vincenzo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=26&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2010/09/25/sharepoint-2010-ts-certifications-exams-70-573-and-70-567-done/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>New BLOG!</title>
		<link>http://vincenzotenisci.wordpress.com/2010/02/01/new-blog/</link>
		<comments>http://vincenzotenisci.wordpress.com/2010/02/01/new-blog/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 22:33:09 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Sharepoint 2010]]></category>

		<guid isPermaLink="false">http://vincenzotenisci.wordpress.com/2010/02/01/new-blog</guid>
		<description><![CDATA[Hi to all!   I write you because I have moved my blog to http://vincenzotenisci.wordpress.com/. I hope thet you will find useful informations about Sharepoint 2010, Business Intelligence with SQL Server 2008 and .NET Framework 4.0   See you soon! Vincenzo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=46&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="msgcns!931A97894C3E2DDE!262" class="bvMsg">
<div>Hi to all!</div>
<div> </div>
<div>I write you because I have moved my blog to <a href="http://vincenzotenisci.wordpress.com/">http://vincenzotenisci.wordpress.com/</a>.</div>
<div>I hope thet you will find useful informations about Sharepoint 2010, Business Intelligence with SQL Server 2008 and .NET Framework 4.0</div>
<div> </div>
<div>See you soon!</div>
<div>Vincenzo</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=46&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2010/02/01/new-blog/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>Remote BLOB Storage for Sharepoint 2010 (RBS) : Introduction, Links and Installation</title>
		<link>http://vincenzotenisci.wordpress.com/2010/01/17/remote-blob-storage-for-sharepoint-2010-rbs-introduction-links-and-installation/</link>
		<comments>http://vincenzotenisci.wordpress.com/2010/01/17/remote-blob-storage-for-sharepoint-2010-rbs-introduction-links-and-installation/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 18:49:08 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Sharepoint 2010]]></category>
		<category><![CDATA[.NET Framework 4.0]]></category>
		<category><![CDATA[FILESTREAM]]></category>
		<category><![CDATA[RBS]]></category>
		<category><![CDATA[Remote BLOB Storage]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>

		<guid isPermaLink="false">http://vincenzotenisci.wordpress.com/2010/01/17/remote-blob-storage-for-sharepoint-2010-rbs-introduction-links-and-installation/</guid>
		<description><![CDATA[This Post talks about November CTP RBS. Some time ago I wrote on my old BLOG a post titled SQL 2008 FILESTREAM and Sharepoint Document Libraries&#8230;. why not? where I posted a proof of concept to see how to use the new SQL Server 2008 FILESTREAM File Group type within a Sharepoint 2007 site. Naturally [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=12&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This Post talks about November CTP RBS.</p>
<p>Some time ago I wrote on my old BLOG a post titled <a title="FILESTREAM and Sharepoint" href="http://vincy2005.spaces.live.com/blog/cns!931A97894C3E2DDE!147.entry" rel="tag" target="_blank">SQL 2008 FILESTREAM and Sharepoint Document Libraries&#8230;. why not?</a> where I posted a proof of concept to see how to use the new SQL Server 2008 FILESTREAM File Group type within a Sharepoint 2007 site. Naturally that is a not supported Microsoft solution because you have to alter the content DB but I had the satisfaction to see Sharepoint documents stored outside SQL Server! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . This is a great problem for Sharepoint when you have to manage lots of documents. As all you know SQL Server is the only Sharepoint file system so all the the documents inside a document library for all the Site Collections are stored inside the SQL Server content DB’s for the Sharepoint Application in witch they live.</p>
<p>Naturally you can split your application with more than one content DB and this is the best practice for large size document storage.</p>
<p>Now we have Sharepoint 2010 beta and naturally MS have worked on this and with SQL Server 2008 R2 introduced RBS: Remote BLOB storage. But wait! before we go along I give you some links that you have to know:</p>
<ol>
<li>If you want to learn all about RBS go to <a title="http://technet.microsoft.com/en-us/library/ee748592(office.14).aspx" href="http://technet.microsoft.com/en-us/library/ee748592(office.14).aspx">http://technet.microsoft.com/en-us/library/ee748592(office.14).aspx</a>. </li>
<li>You can download RBS as a feature pack of SQL Server 2008 R2 at <a href="http://go.microsoft.com/fwlink/?LinkID=165839&amp;clcid=0x409">http://go.microsoft.com/fwlink/?LinkID=165839&amp;clcid=0&#215;409</a> </li>
<li>You can download samples for RBS at <a title="http://www.codeplex.com/sqlrbs" href="http://www.codeplex.com/sqlrbs">http://www.codeplex.com/sqlrbs</a> </li>
</ol>
<p>As independent MCT/Architect, when we came along BLOB storage problems during my training and architect job, people ask me the same kind of questions: how do you store BLOB using SQL Server? And how and where Sharepoint store documents?&#160; As you know, principally you have two choices that are the same techniques used in programming languages when you copy a variable by value or by reference:</p>
<ol>
<li>Store all the BLOB content inside a SQL Server Table column of type varbinary(max)/image </li>
<li>Create a varchar column that you can use to store the relative path of your file. Use an application configuration file or a new SQL Table to store the root path of all your documents. This root path could be a local path or a network drive that target an external file server. Store file outside SQL Server. </li>
</ol>
<p>Solution 1 is better for security and storage management. Nobody can touch or even see the files if you don’t have access to DB. If you want to move all the storage to another server you have to simply perform a backup/restore operation.</p>
<p>Solution 2 is far better for DB storage size handling because you store only a reference inside DB, the file is stored outside so you have small DB size for very large document storage with better DB performance and fast backup/restore operations.</p>
<p>The principal weak points of this two kind of solutions are:</p>
<ul>
<li>Solution 1: slow backup/restore operations and slow DB performance for very large size document storage. Very difficult and poor performing real time streaming with varbinary(max)/image data types. </li>
<li>Solution2:&#160; security weakness, people can access/modify/delete external files even if they don’t have DB access. </li>
</ul>
<p>In my experience, I have noticed that the pass by reference solution 2 is the far more accepted and implemented solution in large scale applications and believe me, when people discover that Sharepoint adopt the pass by value solution 1 the general reaction is: oh my God!</p>
<p>Then came SQL Server 2008 and the new FILESTREAM file group. I don’t go deep with this subject, you can go to my old BLOG post, but I want put your attention on this concept: FILESTREAM solves the BLOB storage problem taking the better on point 1 and 2. SQL Server stores a reference inside your table and BLOB content outside SQL Server files. So, FILESTREAM is a storage solution implemented inside SQL Server, you have no control on file names and organization inside the file system, SQL Server became the only access point to your files and your files are secured by SQL Server. But, what if I have already setup a storage of my documents in a certain place like another DB (Oracle for example or another file server) and I don’t want to move them but I want to access inside Sharepoint or I want to design a SQL Server DB for my applications that have to access that documents?&#160; Enter RBS.</p>
<p>RBS is a new API that you can use to perform a storage layer for BLOB data types in a standardized way. The architecture of RBS is based on the concept of Provider so you can use your own storage to archive large BLOB. Actually RBS ships with the RBS FILESTREAM provider but if you download the RBS samples on codeplex you can find source code for a file File Store sample provider <em>Microsoft.Data.BlobStores.FileBlobStore</em> so you can see how to write your own RBS provider.</p>
<p>I’ve noticed that there are some errors for the installation steps because I incurred in the same error that is signaled in this post <a title="http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/f93a677b-9434-4334-9d08-359127bdf1fe" href="http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/f93a677b-9434-4334-9d08-359127bdf1fe">http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/f93a677b-9434-4334-9d08-359127bdf1fe</a></p>
<p>So as described by TechNet documentation and from the post, after you downloaded RBS_x64.msi you have to:</p>
<ol>
<li>For Each Sharepoint content DB that you want enable setup a FILESTREAM file group. </li>
<li>Run in sequence these scripts (I copied them into two batch files): </li>
</ol>
<blockquote><p>msiexec /qn /lvx* rbs_install_log.txt /i RBS_X64.msi TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME=&quot;<strong>YOUR CONTENT DB NAME</strong>&quot; DBINSTANCE=&quot;<strong>YOUR SQL SERVER INSTANCE NAME</strong>&quot; FILESTREAMFILEGROUP=<strong>YOURFILESTREAMFILEGROUP</strong> FILESTREAMSTORENAME=FilestreamProvider_1</p>
<p>msiexec /qn /lvx* rbs_install_log.txt /i RBS_X64.msi DBNAME=&quot;<strong>YOUR CONTENT DB NAME</strong>&quot; DBINSTANCE=&quot;<strong>YOUR SQL SERVER INSTANCE NAME</strong>&quot; ADDLOCAL=&quot;Client,Docs,Maintainer,ServerScript,FilestreamClient,FilestreamServer&quot;</p>
</blockquote>
<p>After this you have to run one by one these power shell commands as indicated by TechNet:</p>
<p><strong>$cdb = Get-SPContentDatabase</strong> –WebApplication <em>http://sitename</em></p>
<p><strong>$rbss = $cdb.RemoteBlobStorageSettings</strong></p>
<p><strong>$rbss.Installed()</strong></p>
<p><strong>$rbss.Enable()</strong></p>
<p><strong>$rbss.SetActiveProviderName($rbss.GetProviderNames()[0])</strong></p>
<p><strong>$rbss</strong></p>
<p>&#160;</p>
<p>After this your Sharepoint Application has FILESTREAM enabled so each Document Library for each site collection will store the documents outside SQL Server using FILESTREAM File Group.</p>
<p>In a future post I will dig the RBF API so… stay tuned!</p>
<p>Hope this helps</p>
<p>Vincenzo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=12&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2010/01/17/remote-blob-storage-for-sharepoint-2010-rbs-introduction-links-and-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome!</title>
		<link>http://vincenzotenisci.wordpress.com/2010/01/13/welcome/</link>
		<comments>http://vincenzotenisci.wordpress.com/2010/01/13/welcome/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 22:52:02 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[.NET 4.0]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://vincenzotenisci.wordpress.com/2010/01/13/welcome/</guid>
		<description><![CDATA[Hi to all This is my new blog (the old one is&#160; http://vincy2005.spaces.live.com/blog/) By now I would like to share experiences made during my Architect and MCT Training on those subjects: Sharepoint SQL Server (expecially BI) .NET from 4.0 Hope that you enjoy with me! Vincenzo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=10&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi to all</p>
<p>This is my new blog (the old one is&#160; <a title="http://vincy2005.spaces.live.com/blog/" href="http://vincy2005.spaces.live.com/blog/">http://vincy2005.spaces.live.com/blog/</a>)</p>
<p>By now I would like to share experiences made during my Architect and MCT Training on those subjects:</p>
<ul>
<li>Sharepoint</li>
<li>SQL Server (expecially BI)</li>
<li>.NET from 4.0</li>
</ul>
<p>Hope that you enjoy with me!</p>
<p>Vincenzo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=10&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2010/01/13/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>SmartBI</title>
		<link>http://vincenzotenisci.wordpress.com/2009/12/18/smartbi/</link>
		<comments>http://vincenzotenisci.wordpress.com/2009/12/18/smartbi/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 10:10:33 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>

		<guid isPermaLink="false">http://vincenzotenisci.wordpress.com/2009/12/18/smartbi</guid>
		<description><![CDATA[Hello!   Today I would like to inform you about SmartBI, a new Italian company focused exclusively on trainning and consulting  on Microsoft Business intelligence platform. Here is a link to a page that show you some training courses that I  and other trainers can perform about SQL Server 2008 BI.   http://www.smartbi.it/Formazione_Corsi_Business_Intelligence.aspx   Hope you find this helpful [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=45&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="msgcns!931A97894C3E2DDE!254" class="bvMsg">
<div>Hello!</div>
<div> </div>
<div>Today I would like to inform you about SmartBI, a new Italian company focused</div>
<div>exclusively on trainning and consulting  on Microsoft Business intelligence platform.</div>
<div>Here is a link to a page that show you some training courses that I  and other trainers </div>
<div>can perform about SQL Server 2008 BI.</div>
<div> </div>
<div><a href="http://www.smartbi.it/Formazione_Corsi_Business_Intelligence.aspx">http://www.smartbi.it/Formazione_Corsi_Business_Intelligence.aspx</a></div>
<div> </div>
<div>Hope you find this helpful</div>
<div>Vincenzo</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=45&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2009/12/18/smartbi/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint 2010 wizard error: unrecognized allowInsecureTransport attribute</title>
		<link>http://vincenzotenisci.wordpress.com/2009/11/19/sharepoint-2010-wizard-error-unrecognized-allowinsecuretransport-attribute/</link>
		<comments>http://vincenzotenisci.wordpress.com/2009/11/19/sharepoint-2010-wizard-error-unrecognized-allowinsecuretransport-attribute/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 21:51:36 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Sharepoint 2010]]></category>

		<guid isPermaLink="false">http://vincenzotenisci.wordpress.com/2009/11/19/sharepoint-2010-wizard-error-unrecognized-allowinsecuretransport-attribute</guid>
		<description><![CDATA[OK, now that the beta is public its time to take a look to Sharepoint 2010. The first impression I had is that is a great version! (some of you could say finally! ).   I have performed the installation on a virtual machine with Windows 2008 Server R2, SQL Server 2008 R2 November CTP [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=44&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="msgcns!931A97894C3E2DDE!223" class="bvMsg">
<div>OK, now that the beta is public its time to take a look to Sharepoint 2010.</div>
<div>The first impression I had is that is a great version! (some of you could say finally! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</div>
<div> </div>
<div>I have performed the installation on a virtual machine with Windows 2008 Server R2, SQL Server 2008 R2</div>
<div>November CTP and Visual Studio 2010 Beta2.</div>
<div> </div>
<div>The installation goes well, unfortunately, when I started the farm configuration wizard inside the central admin</div>
<div>I received this error:</div>
<div> </div>
<div><strong></p>
<p>The service application proxy &quot;User Profile Service Application&quot; could not be provisioned because of the following error:</strong> Unrecognized attribute &#8216;allowInsecureTransport&#8217;. Note that attribute names are case-sensitive. (C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\WebClients\Profile\client.config line 56)</p>
<p>If you go to the 14 directory, you will find the WebClients folder in wich each subfolder represents the configuration of various WCF Service clients that communicate with the various farm service installed.</p>
<p>If you go to this post of Jie Li <a href="http://blogs.msdn.com/opal/archive/2009/11/16/installation-notice-for-sharepoint-2010-public-beta.aspx">http://blogs.msdn.com/opal/archive/2009/11/16/installation-notice-for-sharepoint-2010-public-beta.aspx</a> you will discover that there is an hotfix for WCF. As the post stated, there is a method to support the token authentication without transport security or message encryption in WCF.</p>
<p>Unfortunately the hotfix is not ready for Win 2008 R2 so you can use and navigate Sharepoint but you have to wait to work with the farm services.</p>
<p>Hope this helps</p>
<p>Vincenzo</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=44&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2009/11/19/sharepoint-2010-wizard-error-unrecognized-allowinsecuretransport-attribute/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint Conference for BASTA! Italia</title>
		<link>http://vincenzotenisci.wordpress.com/2009/09/02/sharepoint-conference-for-basta-italia/</link>
		<comments>http://vincenzotenisci.wordpress.com/2009/09/02/sharepoint-conference-for-basta-italia/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 16:05:51 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Sharepoint 2007]]></category>

		<guid isPermaLink="false">http://vincenzotenisci.wordpress.com/2009/09/02/sharepoint-conference-for-basta-italia</guid>
		<description><![CDATA[Hi everybody I&#8217;m pleased to announce that I&#8217;m a speaker for a Sharepoint conference in Bologna on 23 October   I&#8217; will show examples of applications for MOSS 2007 Excel Services, BI integration, BDC and Enterprise Search If gou go to this link you will see all the details of the event. Regards Vincenzo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=43&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="msgcns!931A97894C3E2DDE!178" class="bvMsg">
<div>
<div>Hi everybody</p>
<p>I&#8217;m pleased to announce that I&#8217;m a speaker for a Sharepoint conference</p></div>
<div>in Bologna on 23 October</div>
<div> </div>
<div>I&#8217; will show examples of applications for MOSS 2007 Excel Services, BI integration, BDC and Enterprise Search</div>
<div>If gou go to <a href="http://www.bastaitalia.it/conferenza/speaker/" target="_blank">this link </a>you will see all the details of the event.</p>
<p>Regards</p></div>
<div>Vincenzo</div>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=43&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2009/09/02/sharepoint-conference-for-basta-italia/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
		<item>
		<title>Decatec Sharepoint Workshop on 16th March 2009 in Rome</title>
		<link>http://vincenzotenisci.wordpress.com/2009/01/30/decatec-sharepoint-workshop-on-16th-march-2009-in-rome/</link>
		<comments>http://vincenzotenisci.wordpress.com/2009/01/30/decatec-sharepoint-workshop-on-16th-march-2009-in-rome/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 09:17:08 +0000</pubDate>
		<dc:creator>vincenzotenisci</dc:creator>
				<category><![CDATA[Sharepoint 2007]]></category>

		<guid isPermaLink="false">http://vincenzotenisci.wordpress.com/2009/01/30/decatec-sharepoint-workshop-on-16th-march-2009-in-rome</guid>
		<description><![CDATA[Hi everybody I&#8217;m pleased to announce that I&#8217;m a speaker for a Sharepoint workshop in Rome on 16th March in collaboration with Decatec and E-basta!. If gou go to this link you will see all the details of the event. Regards Vincenzo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=42&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="msgcns!931A97894C3E2DDE!164" class="bvMsg">
<div>Hi everybody</p>
<p>I&#8217;m pleased to announce that I&#8217;m a speaker for a Sharepoint workshop</p></div>
<div>in Rome on 16th March in collaboration with <a href="http://www.decatec.it/" target="_blank">Decatec</a> and <a href="http://www.bastaitalia.it/conferenza/workshops">E-basta!</a>.</div>
<div>If gou go to <a href="http://www.decatec.it/Eventi/Decatec-Sharepoint-Workshop-2009.aspx" target="_blank">this link</a> you will see all the details of the event.</p>
<p>Regards</p></div>
<div>Vincenzo</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincenzotenisci.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincenzotenisci.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincenzotenisci.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincenzotenisci.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincenzotenisci.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincenzotenisci.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincenzotenisci.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincenzotenisci.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincenzotenisci.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincenzotenisci.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincenzotenisci.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincenzotenisci.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincenzotenisci.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincenzotenisci.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincenzotenisci.wordpress.com&amp;blog=11324957&amp;post=42&amp;subd=vincenzotenisci&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincenzotenisci.wordpress.com/2009/01/30/decatec-sharepoint-workshop-on-16th-march-2009-in-rome/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/def3c2bd41f3a06daf96d48f465c1712?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vincenzotenisci</media:title>
		</media:content>
	</item>
	</channel>
</rss>
