<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Database &amp; SQL Forum RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest threads from the 'Database &amp; SQL' forum at Programmer's Heaven, excluding replies.</description>
    <language>en</language>
    <copyright>Copyright 2009 Programmers Heaven</copyright>
    <pubDate>Fri, 03 Jul 2009 21:09:08 -0700</pubDate>
    <lastBuildDate>Fri, 03 Jul 2009 21:09:08 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>How to customize prompt confirm message box for web input report?</title>
      <link>http://www.programmersheaven.com/mb/database/393246/393246/how-to-customize-prompt-confirm-message-box-for-web-input-report/</link>
      <description>&lt;strong&gt;&lt;span style="font-size: large;"&gt;Background&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
For web input report, users often need input data at the client-side. Then, &lt;strong&gt;if a prompt message box will appear when users submit input data to confirm submit success, it will be very convenient.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Sometimes, users have to customize prompt message box according to real requirement. Then, how to achieve it?&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;span style="font-size: large;"&gt;Solution&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
RAQ Report is a professional Web-based reporting tool pays a lot of attention to users’ requirement. Therefore, users can solve all the common problems in web report easily with RAQ Report. Such as radio button for single choice or multiple choices, drop-down list, automation computation, automation sequential number, data validity check, and batch operations, etc.&lt;br /&gt;
&lt;br /&gt;
For this problem, RAQ Report provides a wonderful solution. Therefore, you can easily customize prompt box with RAQ Report. As it is a pure Java reporting tool,you only need to write JavaScript Code in a JSP file.&lt;br /&gt;
&lt;br /&gt;
For example, if users want to add “cancel” in the prompt message box, they just need to set “cancel” as the value of promptAfterSave.&lt;br /&gt;
&lt;br /&gt;
The JavaScript Code is as follows:&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;input type="submit" name="Submit2" value="submit" onclick="firm()" /&amp;gt;&lt;br /&gt;
      function firm()&lt;br /&gt;
      {&lt;br /&gt;
      // Use the return value of prompt box（true or false）&lt;br /&gt;
      if(confirm("NeedSave"))&lt;br /&gt;
      {&lt;br /&gt;
      //If true is selected, call _submitTable( report1 )&lt;br /&gt;
      _submitTable( report1 );&lt;br /&gt;
      return true;&lt;br /&gt;
      }&lt;br /&gt;
      else&lt;br /&gt;
      {&lt;br /&gt;
      //Or else cancel it;&lt;br /&gt;
      //alert("If false is selected, false will be returned");&lt;br /&gt;
      return false;&lt;br /&gt;
      }&lt;br /&gt;
      }&lt;br /&gt;
      &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;span style="font-size: large;"&gt;Graphic Illustration&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;img src="http://www.raqsoft.com/know-how/wp-content/uploads/2009/04/124.jpg" /&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/393246/393246/how-to-customize-prompt-confirm-message-box-for-web-input-report/</guid>
      <pubDate>Fri, 03 Jul 2009 07:38:30 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Designing a database for a Bible</title>
      <link>http://www.programmersheaven.com/mb/database/393118/393118/designing-a-database-for-a-bible/</link>
      <description>I am wanting to create a new “PHP Bible.” I have the Biblical text in something similar to xhtml.. Each word is tagged with the original Hebrew or Greek word. &lt;br /&gt;
&lt;br /&gt;
My question: what is the best way to set this up in a MYSQL database? I obviously need to be able to search through the text quickly and read the tags quickly. &lt;br /&gt;
&lt;br /&gt;
Thanks for any suggestions or comments!&lt;br /&gt;
&lt;br /&gt;
Here is a sample of the format I will be converting from:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;verse osisID="Gen.1.1" sID="Gen.1.1"/&amp;gt;&amp;lt;w lemma="strong:H07225"&amp;gt;In the beginning&amp;lt;/w&amp;gt; &amp;lt;w lemma="strong:H0430"&amp;gt;God&amp;lt;/w&amp;gt; &amp;lt;w morph="strongMorph:TH8804" lemma="strong:H0853 strong:H01254"&amp;gt;created&amp;lt;/w&amp;gt; &amp;lt;w lemma="strong:H08064"&amp;gt;the heaven&amp;lt;/w&amp;gt; &amp;lt;w lemma="strong:H0853"&amp;gt;and&amp;lt;/w&amp;gt; &amp;lt;w lemma="strong:H0776"&amp;gt;the earth&amp;lt;/w&amp;gt;.&amp;lt;verse eID="Gen.1.1"/&amp;gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/393118/393118/designing-a-database-for-a-bible/</guid>
      <pubDate>Wed, 01 Jul 2009 09:21:55 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>SQL query needed !!</title>
      <link>http://www.programmersheaven.com/mb/database/393110/393110/sql-query-needed-/</link>
      <description>Hello Programmers..&lt;br /&gt;
I need a sql query similar to PIVOT transformation.&lt;br /&gt;
I have a table containing  3 Columns ... &lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
STEP | Label | Value 
--------------------
1    | Good  | Enabled
2    | Better| Enabled
3    | Best  | Disabled
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
I need a sql query to get the results as &lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
STEP | Good     | Better  | Best
--------------------------------------------
1    | Enabled  | NULL    | NULL
2    | NULL     | Enabled | NULL
3    | NULL     | NULL    | Disabled
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Looks the query needs to display the transpose of a matrix &lt;br /&gt;
Any help in this direction appreciated&lt;br /&gt;
&lt;br /&gt;
Srivatsa&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/393110/393110/sql-query-needed-/</guid>
      <pubDate>Wed, 01 Jul 2009 04:41:58 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Data Security for Oracle E-Business Suite</title>
      <link>http://www.programmersheaven.com/mb/database/393002/393002/data-security-for-oracle-e-business-suite/</link>
      <description>Recently we had a bad experience of losing live data. So with the help of Solix we started creating non-production clones of Oracle E-Business Suite for testing, development, and even training. It really helped us a lot in &lt;a href="http://www.solix.com/data_privacy_oracle_ebusiness_suite.htm"&gt;E-Business Suite Archiving&lt;/a&gt;.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/393002/393002/data-security-for-oracle-e-business-suite/</guid>
      <pubDate>Mon, 29 Jun 2009 06:47:48 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>FRM-18108</title>
      <link>http://www.programmersheaven.com/mb/database/392917/392917/frm-18108/</link>
      <description>&lt;br /&gt;
&lt;br /&gt;
I have a number or oracle forms that utilize both&lt;br /&gt;
libraries and templates.  The templates have always been &lt;br /&gt;
stored in the database while the libraries and forms themselves&lt;br /&gt;
are accessed via the file system.  In updating a system&lt;br /&gt;
somehow a form now has started to fail compilation with the above.&lt;br /&gt;
Even when loading in the form designer it fails to find the template objects.  When I produce the object list report I can see were it&lt;br /&gt;
wants to find these template objects on the file system when in&lt;br /&gt;
reality they are in the database.  I have no idea how to tell it&lt;br /&gt;
to go back to looking in the database for these template objects.&lt;br /&gt;
I have manipulated from libraries in the base where it asks you where you would like to access them from, but the templates do not.&lt;br /&gt;
&lt;br /&gt;
Any help?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392917/392917/frm-18108/</guid>
      <pubDate>Fri, 26 Jun 2009 14:08:55 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>INSERT dd/MM/yy format date without using CONVERT Function</title>
      <link>http://www.programmersheaven.com/mb/database/392890/392890/insert-ddmmyy-format-date-without-using-convert-function/</link>
      <description>hi,&lt;br /&gt;
   I have made a software in dot net 2005 (c#) and insert date into the database using format MM/dd/yy format. Now requirement of the client suddenly change , he wants date in the format dd/MM/yy, i have change the regional setting of my computer and it changes the display of the format in the sql server but when we insert dd/MM/yyyy(25/3/2009) it gives error, is there any way out,&lt;br /&gt;
can we just change the setting of sql server 2000 and date is converted into dd/MM/yy???&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392890/392890/insert-ddmmyy-format-date-without-using-convert-function/</guid>
      <pubDate>Fri, 26 Jun 2009 04:35:42 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>INSERT dd/MM/yy format date without using CONVERT Function</title>
      <link>http://www.programmersheaven.com/mb/database/392889/392889/insert-ddmmyy-format-date-without-using-convert-function/</link>
      <description>hi,&lt;br /&gt;
   I have made a software in dot net 2005 (c#) and insert date into the database using format MM/dd/yy format. Now requirement of the client suddenly change , he wants date in the format dd/MM/yy, i have change the regional setting of my computer and it changes the display of the format in the sql server but when we insert dd/MM/yyyy(25/3/2009) it gives error, is there any way out,&lt;br /&gt;
can we just change the setting of sql server 2000 and date is converted into dd/MM/yy???&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392889/392889/insert-ddmmyy-format-date-without-using-convert-function/</guid>
      <pubDate>Fri, 26 Jun 2009 04:34:01 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Accessing one database from two independent machines</title>
      <link>http://www.programmersheaven.com/mb/database/392744/392744/accessing-one-database-from-two-independent-machines/</link>
      <description>I am working on my first major SQL db.  I want to use the same db from either machine.  I am using my notebook and my desktop depending where my daily schedule takes me.  I manually consolidate my files in the evening.    &lt;br /&gt;
&lt;br /&gt;
I can use the same directory structure, but the actual SQL installations may be a bit different.  I think that is causing me a problem...but I am new at this...  I can connect fine with my desktop but not with my notebook.  &lt;br /&gt;
&lt;br /&gt;
In summation:  1) HDD structure; 2) login?  Thank you, in advance, for your time!  &amp;lt; Steve &amp;gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392744/392744/accessing-one-database-from-two-independent-machines/</guid>
      <pubDate>Tue, 23 Jun 2009 18:54:16 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Microsoft SQL Server 2008 For Dummies Sep 2008</title>
      <link>http://www.programmersheaven.com/mb/database/392729/392729/microsoft-sql-server-2008-for-dummies-sep-2008/</link>
      <description>&lt;br /&gt;
&lt;img src="http://www.programmersheaven.com/images/broken.gif" /&gt;http://img7.raidpic.com/421.jpg[/img]&lt;br /&gt;
&lt;br /&gt;
Product Description&lt;br /&gt;
If you’re a database administrator, you know Microsoft SQL Server 2008 is revolutionizing database development. Get up to speed on SQL Server 2008, impress your boss, and improve your company’s data management — read Microsoft SQL Server 2008 For Dummies!&lt;br /&gt;
&lt;br /&gt;
SQL Server 2008 lets you build powerful databases and create database queries that give your organization the information it needs to excel. Microsoft SQL Server 2008 For Dummies helps you build the skills you need to set up, administer, and troubleshoot SQL Server 2008. You’ll be able to:&lt;br /&gt;
&lt;br /&gt;
    * Develop and maintain a SQL Server system&lt;br /&gt;
    * Design databases with integrity and efficiency&lt;br /&gt;
    * Turn data into information with SQL Server Reporting Services&lt;br /&gt;
    * Organize query results, summarizing data with aggregate functions and formatting output&lt;br /&gt;
    * Import large quantities of data with SSIS&lt;br /&gt;
    * Keep your server running smoothly&lt;br /&gt;
    * Protect data from prying eyes&lt;br /&gt;
    * Develop and implement a disaster recovery plan&lt;br /&gt;
    * Improve performance with database snapshots&lt;br /&gt;
    * Automate SQL Server 2008 administration&lt;br /&gt;
&lt;br /&gt;
Microsoft SQL Server 2008 For Dummies is a great first step toward becoming a SQL Server 2008 pro!&lt;br /&gt;
&lt;br /&gt;
From the Back Cover&lt;br /&gt;
&lt;br /&gt;
The fun and easy way® to build powerful databases&lt;br /&gt;
&lt;br /&gt;
See how to administer, troubleshoot, and report like a pro in SQL Server&lt;br /&gt;
&lt;br /&gt;
Are you ready to unleash the power hidden within your organization’s data to meet business objectives? This book will help you build the skills that SQL Server database administrators must have to succeed. You’ll find out how to develop and maintain a SQL Server system, design databases, manipulate data, and much more.&lt;br /&gt;
&lt;br /&gt;
Discover how to:&lt;br /&gt;
&lt;br /&gt;
    * Build your first SQL Server databases&lt;br /&gt;
    * Insert, manipulate, and retrieve data&lt;br /&gt;
    * Keep your database server running smoothly&lt;br /&gt;
    * Protect data from prying eyes&lt;br /&gt;
    * Improve performance with database snapshots&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Link :&lt;br /&gt;
&lt;a href="http://uploading.com/files/GEQPSFXC/For.Dummies.Microsoft.SQL.Server.2008.rar.html"&gt;http://uploading.com/files/GEQPSFXC/For.Dummies.Microsoft.SQL.Server.2008.rar.html&lt;/a&gt;&lt;br /&gt;
OR&lt;br /&gt;
&lt;a href="http://hotfile.com/dl/7437532/7b1d633/For.Dummies.Microsoft.SQL.Server.2008.rar.html"&gt;http://hotfile.com/dl/7437532/7b1d633/For.Dummies.Microso
ft.SQL.Server.2008.rar.html&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/247644958/For.Dummies.Microsoft.SQL.Server.2008.rar"&gt;http://rapidshare.com/files/247644958/For.Dummies.Microsoft.SQL
.Server.2008.rar&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Password default : www.bookitplus.net&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392729/392729/microsoft-sql-server-2008-for-dummies-sep-2008/</guid>
      <pubDate>Tue, 23 Jun 2009 05:28:23 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Microsoft SQL Server 2008 For Dummies Sep 2008</title>
      <link>http://www.programmersheaven.com/mb/database/392728/392728/microsoft-sql-server-2008-for-dummies-sep-2008/</link>
      <description>&lt;br /&gt;
&lt;img src="http://www.programmersheaven.com/images/broken.gif" /&gt;http://img7.raidpic.com/421.jpg[/img]&lt;br /&gt;
&lt;br /&gt;
Product Description&lt;br /&gt;
If you’re a database administrator, you know Microsoft SQL Server 2008 is revolutionizing database development. Get up to speed on SQL Server 2008, impress your boss, and improve your company’s data management — read Microsoft SQL Server 2008 For Dummies!&lt;br /&gt;
&lt;br /&gt;
SQL Server 2008 lets you build powerful databases and create database queries that give your organization the information it needs to excel. Microsoft SQL Server 2008 For Dummies helps you build the skills you need to set up, administer, and troubleshoot SQL Server 2008. You’ll be able to:&lt;br /&gt;
&lt;br /&gt;
    * Develop and maintain a SQL Server system&lt;br /&gt;
    * Design databases with integrity and efficiency&lt;br /&gt;
    * Turn data into information with SQL Server Reporting Services&lt;br /&gt;
    * Organize query results, summarizing data with aggregate functions and formatting output&lt;br /&gt;
    * Import large quantities of data with SSIS&lt;br /&gt;
    * Keep your server running smoothly&lt;br /&gt;
    * Protect data from prying eyes&lt;br /&gt;
    * Develop and implement a disaster recovery plan&lt;br /&gt;
    * Improve performance with database snapshots&lt;br /&gt;
    * Automate SQL Server 2008 administration&lt;br /&gt;
&lt;br /&gt;
Microsoft SQL Server 2008 For Dummies is a great first step toward becoming a SQL Server 2008 pro!&lt;br /&gt;
&lt;br /&gt;
From the Back Cover&lt;br /&gt;
&lt;br /&gt;
The fun and easy way® to build powerful databases&lt;br /&gt;
&lt;br /&gt;
See how to administer, troubleshoot, and report like a pro in SQL Server&lt;br /&gt;
&lt;br /&gt;
Are you ready to unleash the power hidden within your organization’s data to meet business objectives? This book will help you build the skills that SQL Server database administrators must have to succeed. You’ll find out how to develop and maintain a SQL Server system, design databases, manipulate data, and much more.&lt;br /&gt;
&lt;br /&gt;
Discover how to:&lt;br /&gt;
&lt;br /&gt;
    * Build your first SQL Server databases&lt;br /&gt;
    * Insert, manipulate, and retrieve data&lt;br /&gt;
    * Keep your database server running smoothly&lt;br /&gt;
    * Protect data from prying eyes&lt;br /&gt;
    * Improve performance with database snapshots&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Link :&lt;br /&gt;
&lt;a href="http://uploading.com/files/GEQPSFXC/For.Dummies.Microsoft.SQL.Server.2008.rar.html"&gt;http://uploading.com/files/GEQPSFXC/For.Dummies.Microsoft.SQL.Server.2008.rar.html&lt;/a&gt;&lt;br /&gt;
OR&lt;br /&gt;
&lt;a href="http://hotfile.com/dl/7437532/7b1d633/For.Dummies.Microsoft.SQL.Server.2008.rar.html"&gt;http://hotfile.com/dl/7437532/7b1d633/For.Dummies.Microso
ft.SQL.Server.2008.rar.html&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/247644958/For.Dummies.Microsoft.SQL.Server.2008.rar"&gt;http://rapidshare.com/files/247644958/For.Dummies.Microsoft.SQL
.Server.2008.rar&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Password default : www.bookitplus.net&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392728/392728/microsoft-sql-server-2008-for-dummies-sep-2008/</guid>
      <pubDate>Tue, 23 Jun 2009 05:27:20 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>row index</title>
      <link>http://www.programmersheaven.com/mb/database/392697/392697/row-index/</link>
      <description>how can v find the index of a row in vb.net 2003. I guess dere's a method called "indexof" in vb.net 2005 n higher versions but how 2 do it in vb.net 2003, sum1 pls tell me.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392697/392697/row-index/</guid>
      <pubDate>Mon, 22 Jun 2009 18:01:54 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Generic database GUI for input</title>
      <link>http://www.programmersheaven.com/mb/database/392693/392693/generic-database-gui-for-input/</link>
      <description>I am looking for a GUI to access a database without having to write the whole thing.  Any ideas?  Thanks!!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392693/392693/generic-database-gui-for-input/</guid>
      <pubDate>Mon, 22 Jun 2009 15:48:46 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Non-SQL accessing an SQL database</title>
      <link>http://www.programmersheaven.com/mb/database/392692/392692/non-sql-accessing-an-sql-database/</link>
      <description>OK - maybe a dumb question...  I decided to write a desktop database application to include GUI interface.  I am using C# and SQL.  My question:  Can I access the SQL database using direct code?  i.e., access it through an array [x,y] instead of having to use the SQL language?  Thanks!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392692/392692/non-sql-accessing-an-sql-database/</guid>
      <pubDate>Mon, 22 Jun 2009 15:44:18 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>SQl views</title>
      <link>http://www.programmersheaven.com/mb/database/392601/392601/sql-views/</link>
      <description>Consider the following few relations of Academic systems.&lt;br /&gt;
&lt;br /&gt;
Here we have data base design with little bit changes and is limited&lt;br /&gt;
to four &lt;span style="font-size: x-small;"&gt;relations.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Green;"&gt;&lt;span style="font-size: small;"&gt;&lt;strong&gt;PROJECT ( PROJ_NUM, PROJ_NAME, PROF_NUM)&lt;br /&gt;
PROFESSOR ( PROF_NUM, PROF_FNAME, PROF_LNAME,&lt;br /&gt;
PROF_HIREDATE, JOB_CODE).&lt;br /&gt;
JOB (JOB_CODE, JOB_DESCRIPTION, JOB_CHG_HOUR)&lt;br /&gt;
ASSIGN (ASSIGN_NUM, ASSIGN_DATE, PROJ_NUM, PROF_NUM,ASSIGN_HOURS)&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;[/color]&lt;br /&gt;
A. You are required to write the VIEWS for the following situations.&lt;br /&gt;
Create Views that List Professors’ current Responsibilities &amp;amp; roles&lt;br /&gt;
information in University.&lt;br /&gt;
1. (Name View: Views_One)&lt;br /&gt;
List columns name as Professor Number, Professor Full Name, Hire&lt;br /&gt;
Date and Job Description of those professors who are the part of&lt;br /&gt;
university faculty from last 6 months.&lt;br /&gt;
Hint: using aggregate functions like DATEADD (datepart, number,&lt;br /&gt;
date )&lt;br /&gt;
2. (Name View: Views_Two) Use Views_One as Nesting View&lt;br /&gt;
List columns name as Professor Full Name&lt;br /&gt;
1&lt;br /&gt;
, Project Name, Project&lt;br /&gt;
Assign Date and Assign Hours&lt;br /&gt;
Where Project Assign Date shouldn’t be older than 4 months and this&lt;br /&gt;
implies to those professors who are the part of university faculty from&lt;br /&gt;
last 6 months.&lt;br /&gt;
Hint:&lt;br /&gt;
Using (View named: Views_One) , PROFESSOR, ASSIGN AND PROJECT&lt;br /&gt;
relations here.&lt;br /&gt;
Notes:&lt;br /&gt;
1. Professor Full Name shall be from 1st Views named Views_Onee&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392601/392601/sql-views/</guid>
      <pubDate>Sat, 20 Jun 2009 22:58:26 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>sql help(rows to columns)</title>
      <link>http://www.programmersheaven.com/mb/database/392559/392559/sql-helprows-to-columns/</link>
      <description>pl help &lt;br /&gt;
&lt;br /&gt;
Table1 : Student(stu_id,studentname)&lt;br /&gt;
&lt;br /&gt;
Table2 : Subjects(sub_id,subjectname)&lt;br /&gt;
&lt;br /&gt;
Table3 : marks(marks_id,stu_id,sub_id,mark)&lt;br /&gt;
&lt;br /&gt;
I need an sql query to display the output as follows:&lt;br /&gt;
&lt;br /&gt;
name englsih maths  science&lt;br /&gt;
qqwe     22     33      44&lt;br /&gt;
wqwe     55     11      33&lt;br /&gt;
rqwe     34     66      77</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392559/392559/sql-helprows-to-columns/</guid>
      <pubDate>Fri, 19 Jun 2009 21:25:21 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>full outer join 2 views</title>
      <link>http://www.programmersheaven.com/mb/database/392536/392536/full-outer-join-2-views/</link>
      <description>My query is as follows..&lt;br /&gt;
&lt;br /&gt;
select MAINSERVICENAME,wapCount,smsCount&lt;br /&gt;
	&lt;br /&gt;
from&lt;br /&gt;
	&lt;br /&gt;
	((select&lt;br /&gt;
   "MAINSERVICENAME","MAINSYSCODE" ,COUNT("MAINSYSCODE") AS wapCount&lt;br /&gt;
   from "SMS_WAP"&lt;br /&gt;
   where&lt;br /&gt;
   (&lt;br /&gt;
      "STATUS"=0 &lt;br /&gt;
   )&lt;br /&gt;
   group by "MAINSYSCODE","MAINSERVICENAME"))  WAPT&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
full outer join&lt;br /&gt;
 &lt;br /&gt;
  ((select &lt;br /&gt;
   "MAINSERVICENAME","MAINSYSCODE" ,COUNT("MAINSYSCODE") AS smsCount&lt;br /&gt;
   from "SMS_WAP"&lt;br /&gt;
   where&lt;br /&gt;
   (&lt;br /&gt;
      "STATUS"=1&lt;br /&gt;
   )&lt;br /&gt;
   group by "MAINSYSCODE","MAINSERVICENAME") )  SMST&lt;br /&gt;
   &lt;br /&gt;
on (WAPT."MAINSYSCODE"=SMST."MAINSYSCODE");&lt;br /&gt;
&lt;br /&gt;
But executing of this sql gives me an error "ORA-OO918 column ambiguously defined".Here "SMS_WAP" is a view . I want to know what is the fault in this query?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392536/392536/full-outer-join-2-views/</guid>
      <pubDate>Fri, 19 Jun 2009 04:57:06 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>sqlbulkcopy issues</title>
      <link>http://www.programmersheaven.com/mb/database/392522/392522/sqlbulkcopy-issues/</link>
      <description>Dear All,&lt;br /&gt;
&lt;br /&gt;
I have developed C# application to import data from CSV to SQL Server&lt;br /&gt;
using sqlBulkCopy. However I am facing couple of problems listed below&lt;br /&gt;
&lt;br /&gt;
1. whole transfer fails when one record has column width issue (source column width is 30 and destination is 20) so how could I eliminate this row? or is there any work around?&lt;br /&gt;
&lt;br /&gt;
2. my destination table has insert trigger defined. How could I manage to execute it as sqlbulkcopy dumps the whole bunch of records and not one by one record?&lt;br /&gt;
&lt;br /&gt;
3. One column in destination table is computed column and is not included in the transfer, but the dependent column is included in source file (based on this column, computed column fills it data, while normal insert) but how do I fill values in computed column while dumping whole bunch of records?&lt;br /&gt;
&lt;br /&gt;
4. If CDC(change data capture) is enabled on my target table, how SQLBulkCopy can log the data changes in the same?&lt;br /&gt;
&lt;br /&gt;
regards&lt;br /&gt;
Jeet&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392522/392522/sqlbulkcopy-issues/</guid>
      <pubDate>Thu, 18 Jun 2009 23:14:08 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>"ANY (a, b) IN (expr)"</title>
      <link>http://www.programmersheaven.com/mb/database/392443/392443/any-a-b-in-expr/</link>
      <description>Hello&lt;br /&gt;
&lt;br /&gt;
I recently dug up some old projects and noticed that in many of those I had queries that had "a IN (expr1) OR b IN (expr1)" as a condition. Some of the time, the expression was a list of values passed via parameters, some of the time it was a SELECT expression. Most of the time the expression had potential to become computationally expensive. In few places, there were also variants where there were more than 2 columns being matched against a list of candidates (eg: a IN (...) OR b IN (...) OR c IN (...))&lt;br /&gt;
&lt;br /&gt;
Somewhere between those projects and today I have given up the practice of manual query building and have turned to ORM solutions instead. However, seeking to continue improving my knowledge and skills in the field, I keep on searching for optimal solutions for both past and present problems.&lt;br /&gt;
&lt;br /&gt;
Discuss which languages have which ways of representing the aforementioned problem</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392443/392443/any-a-b-in-expr/</guid>
      <pubDate>Wed, 17 Jun 2009 09:52:50 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Rows to column in sql server 2000</title>
      <link>http://www.programmersheaven.com/mb/database/392366/392366/rows-to-column-in-sql-server-2000/</link>
      <description>I am creating a report from a table that stores data as follows:&lt;br /&gt;
ID   Name       Activity    Date          Total&lt;br /&gt;
1    John Doe	Play	    2009-06-01      1&lt;br /&gt;
2    Jane Doe   Run         2009-06-01      2&lt;br /&gt;
&lt;br /&gt;
but i need to get the report in the format of &lt;br /&gt;
&lt;br /&gt;
Name         Play        Run      Total&lt;br /&gt;
John Doe       1          0          1&lt;br /&gt;
Jane Doe       0          2          2&lt;br /&gt;
&lt;br /&gt;
i am unsure how to generate this result, any help would be great</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392366/392366/rows-to-column-in-sql-server-2000/</guid>
      <pubDate>Mon, 15 Jun 2009 14:45:14 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Data Security for Oracle E-Business Suite</title>
      <link>http://www.programmersheaven.com/mb/database/392133/392133/data-security-for-oracle-e-business-suite/</link>
      <description>Recently we had a bad experience of losing live data. So with the help of Solix we started creating non-production clones of Oracle E-Business Suite for testing, development, and even training. It really helped us a lot in &lt;a href="http://www.solix.com/data_privacy_oracle_ebusiness_suite.htm"&gt;E-Business Suite Archiving&lt;/a&gt;.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/392133/392133/data-security-for-oracle-e-business-suite/</guid>
      <pubDate>Wed, 10 Jun 2009 05:08:09 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Change data source dynamically while updating web input report</title>
      <link>http://www.programmersheaven.com/mb/database/391994/391994/change-data-source-dynamically-while-updating-web-input-report/</link>
      <description>&lt;strong&gt;&lt;span style="font-size: large;"&gt;Background&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
In web-based input report, users sometimes need to change data source dynamically. For example, in a web report, inputted data often need to be saved to different databases according to end users’ different options.&lt;br /&gt;
Then, how to achieve it with &lt;a href="http://www.raqsoft.com/"&gt;web reporting tool&lt;/a&gt;?&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;span style="font-size: large;"&gt;Solution&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
RAQ Report is a professional Web-based Java reporting tool, and it can help users to make report easily.&lt;br /&gt;
As a real Excel-like reporting tool, &lt;a href="http://www.raqsoft.com/raq-report/raq-report/"&gt;RAQ Report&lt;/a&gt; provides a wonderful solution to change data source dynamically while updating web report. With RAQ Report, users only need to call RAQ Report API. Then, data sources will be dynamically changed when it’s runing.&lt;br /&gt;
ReportDefine rd = (ReportDefine)ReportUtils.read(raq); &lt;br /&gt;
INormalCell cell = rd.getCell(2, (short)1); &lt;br /&gt;
InputProperty ip = cell.getInputProperty(); &lt;br /&gt;
ArrayList al = ip.getUpdateList(); &lt;br /&gt;
UpdateProperty up = (UpdateProperty)al.get(0); &lt;br /&gt;
// Get the corresponding relation &lt;br /&gt;
Object relations = up.getRelation(); &lt;br /&gt;
if(relations instanceof com.runqian.report4.usermodel.input.TableRelations
){ &lt;br /&gt;
TableRelations trs = (TableRelations)relations; &lt;br /&gt;
System.out.println(trs.getDataSourceName()); &lt;br /&gt;
trs.setDataSourceName(”northwind”); &lt;br /&gt;
up.setRelation(trs); &lt;br /&gt;
ArrayList ups = new ArrayList(1); &lt;br /&gt;
ups.add(up); &lt;br /&gt;
ip.setUpdateList(ups); &lt;br /&gt;
cell.setInputProperty(ip);&lt;br /&gt;
&lt;br /&gt;
This post is from &lt;a href="http://freezea.blogspot.com/"&gt;freezea's blog&lt;/a&gt;. You are welcomed cc it anywhere, and please indicate the source.&lt;br /&gt;
&lt;br /&gt;
If you would like to read more articles about web reporting tool, you are also welcome to refer to my blog.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/391994/391994/change-data-source-dynamically-while-updating-web-input-report/</guid>
      <pubDate>Sat, 06 Jun 2009 03:41:38 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Need urgent help</title>
      <link>http://www.programmersheaven.com/mb/database/391990/391990/need-urgent-help/</link>
      <description>Hi all,&lt;br /&gt;
I am having problem with username string matching ie Upper or lower case.It is accepting username in Small also and in caps alsO and Its accepting the space too !!! whenever i am providing the correct username and password.&lt;br /&gt;
I am giving u here the code ,pls reply with correct answer.&lt;br /&gt;
&lt;br /&gt;
private void btnSubmit_Click(object sender, EventArgs e)&lt;br /&gt;
{&lt;br /&gt;
SqlConnection con = new SqlConnection("connection string");&lt;br /&gt;
string str;&lt;br /&gt;
str=("Select * from Logins where Username='"+txtUsername.Text+"' and Password='"+txtPassword.Text+"' ");&lt;br /&gt;
SqlCommand cmd = new SqlCommand(str,con);&lt;br /&gt;
con.Open();&lt;br /&gt;
DataTable dt = new DataTable();&lt;br /&gt;
SqlDataAdapter da = new SqlDataAdapter(cmd);&lt;br /&gt;
da.Fill(dt);&lt;br /&gt;
if (((dt.Rows.Count &amp;gt; 0)&amp;amp;&amp;amp;(txtUsername.Text!=txtUsername.Text.ToLower())
)&amp;amp;&amp;amp;(txtPassword.Text!=txtPassword.Text.ToUpper()))&lt;br /&gt;
{&lt;br /&gt;
MessageBox.Show("WELCOME");&lt;br /&gt;
}&lt;br /&gt;
else&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
MessageBox.Show("INVALID USERNAME/password");&lt;br /&gt;
}&lt;br /&gt;
con.Close();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/391990/391990/need-urgent-help/</guid>
      <pubDate>Sat, 06 Jun 2009 00:41:26 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>String matching from database</title>
      <link>http://www.programmersheaven.com/mb/database/391989/391989/string-matching-from-database/</link>
      <description>Hi all,&lt;br /&gt;
I am having problem with username string matching ie Upper or lower case.It is accepting username in Small also and in caps alsO ,whenever i am providing the correct username and password.&lt;br /&gt;
I am giving u here the code pls reply with correct answer.&lt;br /&gt;
&lt;br /&gt;
private void btnSubmit_Click(object sender, EventArgs e)&lt;br /&gt;
{&lt;br /&gt;
SqlConnection con = new SqlConnection("connection string");&lt;br /&gt;
string str;&lt;br /&gt;
str=("Select * from Logins where Username='"+txtUsername.Text+"' and Password='"+txtPassword.Text+"' ");&lt;br /&gt;
SqlCommand cmd = new SqlCommand(str,con);&lt;br /&gt;
con.Open();&lt;br /&gt;
DataTable dt = new DataTable();&lt;br /&gt;
SqlDataAdapter da = new SqlDataAdapter(cmd);&lt;br /&gt;
da.Fill(dt);&lt;br /&gt;
if (((dt.Rows.Count &amp;gt; 0)&amp;amp;&amp;amp;(txtUsername.Text!=txtUsername.Text.ToLower())
)&amp;amp;&amp;amp;(txtPassword.Text!=txtPassword.Text.ToUpper()))&lt;br /&gt;
{&lt;br /&gt;
MessageBox.Show("WELCOME");&lt;br /&gt;
}&lt;br /&gt;
else&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
MessageBox.Show("INVALID USERNAME/password");&lt;br /&gt;
}&lt;br /&gt;
con.Close();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/391989/391989/string-matching-from-database/</guid>
      <pubDate>Sat, 06 Jun 2009 00:38:22 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Please explain a smiple question.</title>
      <link>http://www.programmersheaven.com/mb/database/391845/391845/please-explain-a-smiple-question/</link>
      <description>I've been into the C family of programming languages for some time now, although I've never been very good with it. I read that database programmers made good money and never have trouble getting a job, I don't know if that's true, but I did read that. I started to read a book on SQL but the book didn't even mention where or in what environment I needed to type my SQL commands in. It jumped straight in with commands like SELECT, I didn't even have a database to play with at this point. I just started reading a book on PHP &amp;amp; MySQL. Apart from having MySQL installed, I don't know anything about it or SQL. SQL is typed into the MySQL program, am I understanding that right. I'M just a little confused and I need some direction. I do love computers but I don't have a degree and I really want to quite working in a dead end no heat or AC factory. Can someone please steer me in the right direction please. Thanks.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/391845/391845/please-explain-a-smiple-question/</guid>
      <pubDate>Tue, 02 Jun 2009 07:50:10 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>sofswitch,billing,softphone,callback,calling card,more......</title>
      <link>http://www.programmersheaven.com/mb/database/391815/391815/sofswitchbillingsoftphonecallbackcalling-cardmore/</link>
      <description>Dear Friends:&lt;br /&gt;
&lt;br /&gt;
Want to setup VoIP company, a business under your own brand name? We have complete solution to launche VoIP (Voice Over Internet Protocol) company. All support comes included.&lt;br /&gt;
Features: PC2Phone, Device2Phone, Calling Card, Callback,sms callback solution, Ani Callback solution, DID callback solution, Cli Callback, Pin Callback, Wholesale Termination, Online Billing, Unlimited Resellers Creating, online shop, invoice generator, paypal integrated online shop, pin recharge modules, H323 and SIP.&lt;br /&gt;
No ties to us, deal with the wholesalers you want and buy VoIP minutes from any one in the market without any expensive equipment.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;System&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Single platform solution&lt;br /&gt;
Rapid Service Rollout&lt;br /&gt;
Pre-configured templates &lt;br /&gt;
Scalability - phased investment&lt;br /&gt;
Quick, flexible reporting&lt;br /&gt;
Open database architecture allowing for extended reporting functions and use of external scripts&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Switching&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Carrier-grade softswitch&lt;br /&gt;
Gatekeeper, registrar and proxy functionality&lt;br /&gt;
SIP and H323 protocol support &lt;br /&gt;
Protocols transparent conversion&lt;br /&gt;
Network protection capabilities&lt;br /&gt;
Advanced routing&lt;br /&gt;
Single entry point into VoIP infrastructure&lt;br /&gt;
Flexible proxy methods&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Billing&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Various authentication methods&lt;br /&gt;
Prepaid/postpaid accounts&lt;br /&gt;
Robust engine&lt;br /&gt;
Fully integration with the softswitch&lt;br /&gt;
Cooperation with MySQL or MSSQL&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Management interface&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Real-time traffic and system's performance monitor &lt;br /&gt;
Windows graphical interface &lt;br /&gt;
Web-based interface &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Web interface for endusers&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Customizable customer self care web interface&lt;br /&gt;
Admin section with embedded html editors&lt;br /&gt;
Ready to use design templates&lt;br /&gt;
CDRs, payments, invoices, address book, user's profile and others/&lt;br /&gt;
Sending SMS, web callback&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;IP IVR&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Customizable IVR scenarios (XML)&lt;br /&gt;
Ready to use templates&lt;br /&gt;
Caller ID recognition&lt;br /&gt;
One or two stage calling procedures&lt;br /&gt;
Support for DIDs as access numbers&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Softphone&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Based on SIP protocol&lt;br /&gt;
Proprietary VOIP tunnel technology - making/receieving calls even behind voip blockades&lt;br /&gt;
Fully integration with the web interface&lt;br /&gt;
Quick access to voicemail&lt;br /&gt;
Sending SMS&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Callback&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Authentication by callerID or PIN&lt;br /&gt;
Various methods of realizing callback&lt;br /&gt;
Support for DIDs as callback service numbers&lt;br /&gt;
SMS and Web triggered callback&lt;br /&gt;
Embedded IVR system&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Resellers system (VSR)&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Multilevel structure&lt;br /&gt;
Web-based comprehensive interface&lt;br /&gt;
Support for multi-currency&lt;br /&gt;
Customizable web interface for end-users&lt;br /&gt;
Integration with the E-Shop&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Callshop&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Real-time monitoring and billing&lt;br /&gt;
Booths visualisation&lt;br /&gt;
Standalone and web based versions invoicing&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;E-Shop&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Various payments processors&lt;br /&gt;
Credit cards, paypal, moneybookers&lt;br /&gt;
Automatic sign-up procedure&lt;br /&gt;
Recharge, also by vouchers/PINs&lt;br /&gt;
Basket for selling products online&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;SMS module&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Support for http methods&lt;br /&gt;
Extended routing plan with support for multiple SMS providers&lt;br /&gt;
Integrated with the softphone and the end-users web interface&lt;br /&gt;
Support for wholesale SMS traffic&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Capacity&lt;/strong&gt; &lt;br /&gt;
&lt;br /&gt;
Average result 1000 conncurent calls (full proxy) on one server (Dual Xeon CPU 2GB RAM*). For higher traffic recommended is cluster configuration with two or three servers with voipswitch software running on seperate servers and connected to one, shared SQL database installed on a dedicated server. Web services running on a backup SQL server set in replication mode so that the load from web requests (for example browsing CDRs, statistics) does not affect the performance of the main SQL server. &lt;br /&gt;
&lt;br /&gt;
* tested and certified for SIP interoperatibility with Level3 (US based tier one carrier)&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Scalability&lt;/strong&gt;&lt;br /&gt;
Phased implementation of new services by enabling additional modules. &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Operating system&lt;/strong&gt;&lt;br /&gt;
Windows 2000, XP pro, Windows 2003 (both standard and web editions)&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Hardware requirements&lt;/strong&gt;&lt;br /&gt;
Recommended are servers based on Intel Xeon processors &lt;br /&gt;
&lt;br /&gt;
dual core or quad core, in configuration of single or dual CPU,&lt;br /&gt;
RAM minimum 1GB,&lt;br /&gt;
HDD 100 GB or more&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------&lt;br /&gt;
&lt;strong&gt;Contact us if you are interested.&lt;br /&gt;
&lt;br /&gt;
Thank you,&lt;br /&gt;
Apnavoip (.) net&lt;br /&gt;
&lt;br /&gt;
Emails: sales(AT)apnavoip(DOT)net&lt;br /&gt;
        apnavoip(AT)hotmail(DOT)com&lt;br /&gt;
&lt;br /&gt;
(MSN/SALES): crm(AT)apnavoip(DOT)net&lt;br /&gt;
(msn/sUPPORT): support(AT)apnavoip(DOT)net&lt;br /&gt;
(YAHOO MESSENGER): apnavoip(AT)yahoo(DOT)com&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
        sales team  www(DOT)apnavoip(DOT)net&lt;br /&gt;
&lt;br /&gt;
THANKS&lt;/strong&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/391815/391815/sofswitchbillingsoftphonecallbackcalling-cardmore/</guid>
      <pubDate>Mon, 01 Jun 2009 08:32:14 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
  </channel>
</rss>