<?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>Sidikalang - Dolok Sanggul</title>
	<atom:link href="http://sidikalang.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sidikalang.wordpress.com</link>
	<description>Tubu Di Sidikalang - Bona Pasogit Di Dolok Sanggul</description>
	<lastBuildDate>Wed, 26 Nov 2008 10:47:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sidikalang.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sidikalang - Dolok Sanggul</title>
		<link>http://sidikalang.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sidikalang.wordpress.com/osd.xml" title="Sidikalang - Dolok Sanggul" />
	<atom:link rel='hub' href='http://sidikalang.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Programmatically Save DTS Packages to Files</title>
		<link>http://sidikalang.wordpress.com/2008/11/10/programmatically-save-dts-packages-to-files/</link>
		<comments>http://sidikalang.wordpress.com/2008/11/10/programmatically-save-dts-packages-to-files/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 06:14:13 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[DTS]]></category>
		<category><![CDATA[JOB]]></category>
		<category><![CDATA[PACKAGE]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SSIS]]></category>
		<category><![CDATA[TASK]]></category>

		<guid isPermaLink="false">http://sidikalang.wordpress.com/2008/11/10/programmatically-save-dts-packages-to-files/</guid>
		<description><![CDATA[One of the things that has always bugged me about DTS is how difficult it was to transfer the DTS packages from SQL Server to structured storage (aka a file on the disk). In Yukon, DTS packages are always stored as files but in SQL Server 2000 they are stored in SQL Server by default. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=56&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]&gt;  Normal 0   false false false        MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]-->One of the things that has always bugged me about DTS is how difficult it was to transfer the DTS packages from SQL Server to structured storage (aka a file on the disk). In Yukon, DTS packages are always stored as files but in SQL Server 2000 they are stored in SQL Server by default. It&#8217;s possible to use the DTSRUN command to automatically save a DTS package in a file. So wrote a little script to generate the statements to save every DTS package as a file.</p>
<p class="MsoNormal"><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/coprompt/cp_dtsrun_95kp.asp">DTSRUN.EXE</a> is the command line utility that lets you execute DTS packages. I use it regularly to scehdule DTS packages or run them from batch files. The basic syntax is something like:</p>
<pre>DTSRUN /S ServerName /N PackageName /E</pre>
<p>You provide it the server name and package name and use the <code><span style="font-size:10pt;">/E</span></code> to have it use a trusted connection and it will run the package. You can also use DTSRUN to run packages stored in a structured storage file:</p>
<pre>DTSRUN /F FileName /N PackageName /E</pre>
<p>A strucuted storage file can have many DTS packages stored in it thus you need to provide the package name also. The other switch we&#8217;re interested in is the <code><span style="font-size:10pt;">/!X</span></code> switch which tells DTSRUN not to execute the package. And as it turns out, if you provide both the structured storage file name and the SQL Server name, DTSRUN will save a copy of the DTS package in the structured storage file. That syntax looks something like this:</p>
<pre>DTSRUN.EXE /S ServerName /E /N PackageName /F FileName /!X</pre>
<p>Keep in mind that every time you run this statement it will append your package to the structured storage file so its probably a good idea to reset the file each time. Knowing this I constructured a little script to extract all the packages to a structured storage file. It looks something like this:</p>
<pre>DECLARE @TARGETDIR varchar(1000)</pre>
<pre>SET <span>    </span>@TARGETDIR = 'C:\DTSTest\'</pre>
<pre>SELECT<span>  </span>distinct<span>  </span></pre>
<pre><span>        </span>'DTSRUN.EXE /S '</pre>
<pre><span>        </span>+ CONVERT(varchar(200), SERVERPROPERTY('servername'))</pre>
<pre><span>        </span>+ ' /E '</pre>
<pre><span>        </span>+ ' /N '</pre>
<pre><span>        </span>+ '"' + name<span>  </span>+ '"'</pre>
<pre><span>        </span>+ ' /F '</pre>
<pre><span>        </span>+ '"' + @TARGETDIR + name + '.dts"'</pre>
<pre><span>        </span>+ ' /!X'</pre>
<pre>FROM<span>    </span>msdb.dbo.sysdtspackages P</pre>
<pre>CommandLine</pre>
<pre>--------------------------------------------------------------------------------------</pre>
<pre>DTSRUN.EXE /S L30 /E /N "Import Snitz #2" /F "C:\DTSTest\Import Snitz #2.dts" /!X</pre>
<pre>DTSRUN.EXE /S L30 /E /N "Import Snitz Data" /F "C:\DTSTest\Import Snitz Data.dts" /!X</pre>
<pre>. . . .</pre>
<pre>DTSRUN.EXE /S L30 /E /N "Script" /F "C:\DTSTest\Script.dts" /!X</pre>
<p>This script creates the DTSRUN statements. I just copy these into a batch file and then run the batch file. You could easily create a cursor around this and run each statement through <code><span style="font-size:10pt;">xp_cmdshell</span></code>.</p>
<p><span style="font-size:12pt;font-family:&quot;">Hopefully this little script will help you get more value out of your DTS packages. </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=56&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/11/10/programmatically-save-dts-packages-to-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
		<item>
		<title>.NET Web Services Tutorial</title>
		<link>http://sidikalang.wordpress.com/2008/11/09/net-web-services-tutorial/</link>
		<comments>http://sidikalang.wordpress.com/2008/11/09/net-web-services-tutorial/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 12:46:44 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://sidikalang.wordpress.com/?p=52</guid>
		<description><![CDATA[NET Web Services Tutorial Environment: .NET 1.0.3705, IIS 5.0 Introduction Visual Studio .NET makes .NET programming simple and accelerates the development process. It hides a lot of repetitive and configuration details from the user and improves productivity. However, sometimes you would like to program for .NET without using VS .NET; for example, you want to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=52&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="bodycopy"><span class="sectionhead">NET Web Services Tutorial</span></span></p>
<p><span class="bodycopy"><span style="text-decoration:underline;">Environment:</span> .NET 1.0.3705, IIS 5.0</span></p>
<h3>Introduction</h3>
<p>Visual Studio .NET makes .NET programming simple and accelerates the development process. It hides a lot of repetitive and configuration details from the user and improves productivity. However, sometimes you would like to program for .NET without using VS .NET; for example, you want to learn .NET framework programming and do not have access to VS .NET or you want to know what is actually going on under the hood.<br />
<a href="http://www.codeguru.com/csharp/csharp/cs_webservices/tutorials/article.php/c5477#more">(continued)</a><br />
<a name="more"></a><a name="more">Writing a Web Service in .NET using VS .NET very is easy. However, it is possible to write Web Services using the plain .NET SDK. I struggled a lot to write Web Services without VS .NET and tried to find help on the Net. There are a lot of examples available for writing Web Services using VS.NET, but you will rarely find any examples of writing Web Services using only the .NET SDK. This article is exactly for this purpose. It looks at Web Services development using the .NET SDK alone.</a></p>
<p><a name="more">We will write and publish a simple web Service. We will also write two Web Service consumers: one Web-based consumer (ASP.NET application) and another Windows application-based consumer. Let&#8217;s start writing our first Web Service.</a></p>
<h3><a name="more">Writing a Web Service</a></h3>
<p><a name="more">Following is our first Web Service; it exposes two methods (Add and SayHello) as Web Services to be used by applications. This is a standard template for a Web Service. .NET Web Services use the .asmx extension. Note that a method exposed as a Web Service has the WebMethod attribute. Save this file as FirstService.asmx in the IIS virtual directory (as explained in configuring IIS; for example, c:\MyWebSerces).</a></p>
<pre><a name="more"><strong><span style="text-decoration:underline;">FirstService.asmx</span></strong>
  &lt;%@ WebService language="C" <span class="codeKeyword">class</span>="FirstService" %&gt;

  <span class="codeKeyword">using</span> System;
  <span class="codeKeyword">using</span> System.Web.Services;
  <span class="codeKeyword">using</span> System.Xml.Serialization;

  [WebService(Namespace="http://localhost/MyWebServices/")]
  <span class="codeKeyword">public</span> <span class="codeKeyword">class</span> FirstService : WebService
  {
      [WebMethod]
      <span class="codeKeyword">public</span> <span class="codeKeyword">int</span> Add(<span class="codeKeyword">int</span> a, <span class="codeKeyword">int</span> b)
      {
          <span class="codeKeyword">return</span> a + b;
      }

      [WebMethod]
      <span class="codeKeyword">public</span> String SayHello()
      {
          <span class="codeKeyword">return</span> "Hello World";
      }
  }
</a></pre>
<p><a name="more">To test a Web Service, it must be published. A Web Service can be published either on an intranet or the Internet. We will publish this Web Service on IIS running on a local machine. Let&#8217;s start with configuring the IIS.</a></p>
<ul>
<li><a name="more">Open Start-&gt;Settings-&gt;Control Panel-&gt;Administrative tools-&gt;Internet Services Manager.</a></li>
<li><a name="more">Expand and right-click on [Default Web Site]; select New -&gt;Virtual Directory.</a></li>
<li><a name="more">The Virtual Directory Creation Wizard opens. Click Next.</a></li>
<li><a name="more">The &#8220;Virtual Directory Alias&#8221; screen opens. Type the virtual directory name—for example, MyWebServices—and click Next.</a></li>
<li><a name="more">The &#8220;Web Site Content Directory&#8221; screen opens. Here, enter the directory path name for the virtual directory—for example, c:\MyWebServices—and click Next.</a></li>
<li><a name="more">The &#8220;Access Permission&#8221; screen opens. Change the settings as per your requirements. Let&#8217;s keep the default settings for this exercise. Click the Next button. It completes the IIS configuration. Click Finish to complete the configuration.</a></li>
</ul>
<p><a name="more">To test that IIS has been configured properly, copy an HTML file (for example, x.html) in the virtual directory (C:\MyWebServices) created above. Now, open Internet Explorer and type http://localhost/MyWebServices/x.html. It should open the x.html file. If it does not work, try replacing localhost with the IP address of your machine. If it still does not work, check whether IIS is running; you may need to reconfigure IIS and Virtual Directory.</a></p>
<p><a name="more">To test our Web Service, copy FirstService.asmx in the IIS virtual directory created above (C:\MyWebServices). Open the Web Service in Internet Explorer (http://localhost/MyWebServices/FirstService.asmx). It should open your Web Service page. The page should have links to two methods exposed as Web Services by our application. Congratulations; you have written your first Web Service!!!</a></p>
<h3><a name="more">Testing the Web Service</a></h3>
<p><a name="more">As we have just seen, writing Web Services is easy in the .NET Framework. Writing Web Service consumers is also easy in the .NET framework; however, it is a bit more involved. As said earlier, we will write two types of service consumers, one Web- and another Windows application-based consumer. Let&#8217;s write our first Web Service consumer.</a></p>
<h4><a name="more">Web-Based Service Consumer</a></h4>
<p><a name="more">Write a Web-based consumer as given below. Call it WebApp.aspx. Note that it is an ASP.NET application. Save this in the virtual directory of the Web Service (c:\MyWebServices\WebApp.axpx).</a></p>
<p><a name="more">This application has two text fields that are used to get numbers from the user to be added. It has one button, Execute, that, when clicked, gets the Add and SayHello Web Services.</a></p>
<pre><a name="more"><strong><span style="text-decoration:underline;">WebApp.axpx</span></strong>
  &lt;%@ Page Language="C#" %&gt;
  &lt;script runat="server"&gt;
  void runSrvice_Click(<span class="codeKeyword">Object</span> sender, EventArgs e)
  {
      FirstService mySvc = new FirstService();
      Label1.Text = mySvc.SayHello();
      Label2.Text = mySvc.Add(Int32.Parse(txtNum1.Text),
                    Int32.Parse(txtNum2.Text)).ToString();
  }
  &lt;/script&gt;
  &lt;html&gt;
  &lt;head&gt;
  &lt;/head&gt;
  &lt;body&gt;
  &lt;form runat="server"&gt;
    &lt;p&gt;
        &lt;em&gt;First Number to Add &lt;/em&gt;:
        &lt;asp:TextBox id="txtNum1" runat="server"
             Width="43px"&gt;4&lt;/asp:TextBox&gt;
    &lt;/p&gt;
    &lt;p&gt;
        &lt;em&gt;<span class="codeKeyword">Second</span> Number <span class="codeKeyword">To</span> Add &lt;/em&gt;:
        &lt;asp:TextBox id="txtNum2" runat="server"
             Width="44px"&gt;5&lt;/asp:TextBox&gt;
    &lt;/p&gt;
    &lt;p&gt;
        &lt;strong&gt;&lt;u&gt;Web Service Result -&lt;/u&gt;&lt;/strong&gt;
    &lt;/p&gt;
    &lt;p&gt;
        &lt;em&gt;Hello world Service&lt;/em&gt; :
        &lt;asp:Label id="Label1" runat="server"
             Font-Underline="True"&gt;Label&lt;/asp:Label&gt;
    &lt;/p&gt;
    &lt;p&gt;
        &lt;em&gt;Add Service&lt;/em&gt; :
        &amp; &lt;asp:Label id="Label2" runat="server"
               Font-Underline="True"&gt;Label&lt;/asp:Label&gt;
    &lt;/p&gt;
    &lt;p align="left"&gt;
        &lt;asp:Button id="runSrvice" onclick="runSrvice_Click"
             runat="server" Text="Execute"&gt;&lt;/asp:Button&gt;
    &lt;/p&gt;
  &lt;/form&gt;
  &lt;/body&gt;
  &lt;/html&gt;
</a></pre>
<p><a name="more">After the consumer is created, we need to create a proxy for the Web Service to be consumed. This work is done automatically by Visual Studio .NET for us when referencing a Web Service that has been added. Here are the steps to be followed:</a></p>
<ul>
<li><a name="more">Create a proxy for the Web Service to be consumed. The proxy is created using the wsdl utility supplied with the .NET SDK. This utility extracts information from the Web Service and creates a proxy. Thus, the proxy created is valid only for a particular Web Service. If you need to consume other Web Services, you need to create a proxy for this service as well. VS .NET creates a proxy automatically for you when the reference for the Web Service is added. Create a proxy for the Web Service using the wsdl utility supplied with the .NET SDK. It will create FirstSevice.cs in the current directory. We need to compile it to create FirstService.dll (proxy) for the Web Service. </a>
<pre><a name="more">c:&gt; WSDL http:<span class="codeComment">//localhost/MyWebServices/</span>
                FirstService.asmx?WSDL
c:&gt; csc /t:library FirstService.cs
</a></pre>
</li>
<li><a name="more">Put the compiled proxy in the bin directory of the virtual directory of the Web Service (c:\MyWebServices\bin). IIS looks for the proxy in this directory.</a></li>
<li><a name="more">Create the service consumer, which we have already done. Note that I have instantiated an object of the Web Service proxy in the consumer. This proxy takes care of interacting with the service.</a></li>
<li><a name="more">Type the URL of the consumer in IE to test it (for example, http://localhost/MyWebServices/WebApp.aspx).</a></li>
</ul>
<h4><a name="more">Windows Application-Based Web Service Consumer</a></h4>
<p><a name="more">Writing a Windows application-based Web Service consumer is the same as writing any other Windows application. The only work to be done is to create the proxy (which we have already done) and reference this proxy when compiling the application. Following is our Windows application that uses the Web Service. This application creates a Web Service object (of course, proxy) and calls the SayHello and Add methods on it.</a></p>
<pre><a name="more"><strong><span style="text-decoration:underline;">WinApp.cs</span></strong>
  <span class="codeKeyword">using</span> System;
  <span class="codeKeyword">using</span> System.IO;

  <span class="codeKeyword">namespace</span> SvcConsumer{
  <span class="codeKeyword">class</span> SvcEater
  {
      <span class="codeKeyword">public</span> <span class="codeKeyword">static</span> <span class="codeKeyword">void</span> Main(String[] args)
      {
          FirstService mySvc = <span class="codeKeyword">new</span> FirstService();

          Console.WriteLine("Calling Hello World Service: " +
                             mySvc.SayHello());
          Console.WriteLine("Calling Add(2, 3) Service: " +
                             mySvc.Add(2, 3).ToString());
      }
  }
  }
</a></pre>
<p><a name="more">Compile it using c:&gt;csc /r:FirstService.dll WinApp.cs. It will create WinApp.exe. Run it to test the application and the Web Service.</a></p>
<p><a name="more">Now, the question arises: How can I be sure that my application is actually calling the Web Service? It is simple to test. Stop your Web server so that the Web Service cannot be contacted. Now, run the WinApp application. It will fire a run-time exception. Now, start the Web server again. It should work. Great, isn&#8217;t it?</a></p>
<p>References :http://www.codeguru.com/csharp/csharp/cs_webservices/tutorials/article.php/c5477</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=52&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/11/09/net-web-services-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
		<item>
		<title>Siempat Nempu Hilir</title>
		<link>http://sidikalang.wordpress.com/2008/10/07/siempat-nempu-hilir/</link>
		<comments>http://sidikalang.wordpress.com/2008/10/07/siempat-nempu-hilir/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 06:55:22 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[Sidikalang]]></category>
		<category><![CDATA[buntu raja]]></category>
		<category><![CDATA[sinampang]]></category>

		<guid isPermaLink="false">http://sidikalang.wordpress.com/?p=25</guid>
		<description><![CDATA[Will come soon, just wait for update!!.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=25&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Will come soon, just wait for update!!.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=25&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/10/07/siempat-nempu-hilir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
		<item>
		<title>Pilkada Pak-pak Barat</title>
		<link>http://sidikalang.wordpress.com/2008/10/07/pilkada-pak-pak-barat/</link>
		<comments>http://sidikalang.wordpress.com/2008/10/07/pilkada-pak-pak-barat/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 06:53:40 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[Pak-pak Barat]]></category>
		<category><![CDATA[Dairi]]></category>
		<category><![CDATA[pak-pak]]></category>

		<guid isPermaLink="false">http://sidikalang.wordpress.com/?p=23</guid>
		<description><![CDATA[will come soon, please be patient.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=23&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>will come soon, please be patient.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=23&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/10/07/pilkada-pak-pak-barat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
		<item>
		<title>Pemilihan KPUD Humbas Syarat KKN</title>
		<link>http://sidikalang.wordpress.com/2008/10/07/pemilihan-kpud-humbas-syarat-kkn/</link>
		<comments>http://sidikalang.wordpress.com/2008/10/07/pemilihan-kpud-humbas-syarat-kkn/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 06:26:03 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[Humhas]]></category>
		<category><![CDATA[kkn]]></category>
		<category><![CDATA[kpud]]></category>
		<category><![CDATA[sumut]]></category>

		<guid isPermaLink="false">http://sidikalang.wordpress.com/?p=21</guid>
		<description><![CDATA[will come soon, please visit for same news in banyak tikus blog !<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=21&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>will come soon, please visit for same news in <a title="Politik Sumut" href="http://banyaktikus.wordpress.com/">banyak tikus blog</a> !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=21&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/10/07/pemilihan-kpud-humbas-syarat-kkn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
		<item>
		<title>Sungai Kampar Simpang Langgam</title>
		<link>http://sidikalang.wordpress.com/2008/10/07/sungai-kampar-simpang-langgam/</link>
		<comments>http://sidikalang.wordpress.com/2008/10/07/sungai-kampar-simpang-langgam/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 06:19:53 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[curhat]]></category>
		<category><![CDATA[story]]></category>

		<guid isPermaLink="false">http://sidikalang.wordpress.com/?p=18</guid>
		<description><![CDATA[will come soon, for the same news please visit everson blog in friendster.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=18&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>will come soon, for the same news please visit<a title="everson's blog in friendster" href="http://everson.blog.friendster.com/"> everson blog in friendster</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=18&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/10/07/sungai-kampar-simpang-langgam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET Grid Paging</title>
		<link>http://sidikalang.wordpress.com/2008/10/07/aspnet-grid-paging/</link>
		<comments>http://sidikalang.wordpress.com/2008/10/07/aspnet-grid-paging/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 06:15:10 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[GRID]]></category>
		<category><![CDATA[PAGING]]></category>

		<guid isPermaLink="false">http://sidikalang.wordpress.com/?p=15</guid>
		<description><![CDATA[will come soon, thx for visiting !<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=15&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>will come soon, thx for visiting !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=15&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/10/07/aspnet-grid-paging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
		<item>
		<title>Horas&#8230;.. Sidikalang&#8230;.!</title>
		<link>http://sidikalang.wordpress.com/2008/02/27/horas-sidikalang/</link>
		<comments>http://sidikalang.wordpress.com/2008/02/27/horas-sidikalang/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 06:54:40 +0000</pubDate>
		<dc:creator>Everson</dc:creator>
				<category><![CDATA[About]]></category>
		<category><![CDATA[Welcome]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Selamat datang di Sidikalang Blog. Adapun blog ini adalah fasilitas yang saya manfaatakan untuk menuliskan catatan-catatan kecil yang sering saya gunakan. Blog ini adalah blog pertama saya, hitung-hitung sambil belajar ngeblog. Dan harapan saya dengan memesan tempat di wordpress ini saya akan terbiasa dengan percakapan-percakapan dan tulisan-tulisan formil sehingga akan berguna buat saya pribadi dan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=1&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Selamat datang di Sidikalang Blog. Adapun blog ini adalah fasilitas yang saya manfaatakan untuk menuliskan catatan-catatan kecil yang sering saya gunakan.</p>
<p>Blog ini adalah blog pertama saya, hitung-hitung sambil belajar ngeblog. Dan harapan saya dengan memesan tempat di wordpress ini saya akan terbiasa dengan percakapan-percakapan dan tulisan-tulisan formil sehingga akan berguna buat saya pribadi dan orang lain.</p>
<p> Secara umum blog ini akan saya manfaatkan untuk menyimpan tulisan-tulisan saya dan teman-teman yang ingin berpartisipasi. Dimana pada tahan awal akan saya muat dengan yang berbau teknologi karena kebetulan saya bergelut di dunia ICT. Apabila membawa pengaruh yang positif ke habit saya, nanti akan saya kembangkan ke bidang budaya dan pendidikan.</p>
<p>Jadi mohon buat teman-teman yang ingin menuangkan kemampuan menulisnya, mari silahkan bergabung. Songo ni majo ate&#8230;..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidikalang.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidikalang.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidikalang.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidikalang.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidikalang.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidikalang.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidikalang.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidikalang.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidikalang.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidikalang.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidikalang.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidikalang.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidikalang.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidikalang.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidikalang.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidikalang.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidikalang.wordpress.com&amp;blog=2994531&amp;post=1&amp;subd=sidikalang&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidikalang.wordpress.com/2008/02/27/horas-sidikalang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ae67e97591d1aa176f6b4c8c37ca972?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">echon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
