<?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, 20 Nov 2009 20:09:29 -0700</pubDate>
    <lastBuildDate>Fri, 20 Nov 2009 20:09:29 -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>ERD AND EERD?</title>
      <link>http://www.programmersheaven.com/mb/database/409488/409488/erd-and-eerd/</link>
      <description>Hi guys I just want to ask what is the exact difference between ERD(entity relationship diagram) and EERD(enhanced enitity relatioship diagram? &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/409488/409488/erd-and-eerd/</guid>
      <pubDate>Tue, 17 Nov 2009 21:55:15 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Help with SQL Triggers!!</title>
      <link>http://www.programmersheaven.com/mb/database/409310/409310/help-with-sql-triggers/</link>
      <description>This is what I had to do for my assigment!! I am just checking if this is correct!! Any help would be nice!! Thank You in Advance!&lt;br /&gt;
&lt;br /&gt;
Create and test the following triggers for the database created in Programming Assignment 6.&lt;br /&gt;
&lt;br /&gt;
1.      A trigger that prevents the number of miles on a truck from being decreased. &lt;br /&gt;
&lt;br /&gt;
This what I did for this one!&lt;br /&gt;
&lt;br /&gt;
CREATE TRIGGER TURCK_MILES ON TRUCK &lt;br /&gt;
FOR INSERT,UPDATE &lt;br /&gt;
AS &lt;br /&gt;
declare @v1 decimal(8,2) &lt;br /&gt;
declare @v2 decimal(8,2) &lt;br /&gt;
select @v1 = TRUCK_MILES FROM TURCK&lt;br /&gt;
BEGIN &lt;br /&gt;
ROLLBACK &lt;br /&gt;
END &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2.      A trigger that prevents the Buy Date for truck from being after the current date. &lt;br /&gt;
&lt;br /&gt;
This is what I put!&lt;br /&gt;
&lt;br /&gt;
CREATE TRIGGER TRUCK_BUY_DATE ON TRUCK&lt;br /&gt;
FOR INSERT,UPDATE &lt;br /&gt;
AS &lt;br /&gt;
declare @date DATETIME&lt;br /&gt;
select @date=inserted.TRUCK_BUY_DATE FROM INSERTED &lt;br /&gt;
IF @date&amp;gt;GETDATE()&lt;br /&gt;
BEGIN &lt;br /&gt;
ROLLBACK TRANSACTION&lt;br /&gt;
END&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3.      A trigger that ensures that the Base Code in the Truck table is always in the Base table&lt;br /&gt;
&lt;br /&gt;
My Answer!&lt;br /&gt;
&lt;br /&gt;
CREATE TRIGGER BASE_CODE ON TRUCK&lt;br /&gt;
FOR INSERT,UPDATE &lt;br /&gt;
AS &lt;br /&gt;
declare @1_base_code int &lt;br /&gt;
declare @2_base_code int&lt;br /&gt;
select @1_base_code=inserted.BASE_CODE &lt;br /&gt;
FROM INSERTED,BASE,TRUCK &lt;br /&gt;
IF @1_base_code&amp;lt;&amp;gt;@2_base_code&lt;br /&gt;
BEGIN &lt;br /&gt;
ROLLBACK TRANSACTION&lt;br /&gt;
END&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/409310/409310/help-with-sql-triggers/</guid>
      <pubDate>Sat, 14 Nov 2009 23:48:24 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>JD Edwards Data Archiving Solution</title>
      <link>http://www.programmersheaven.com/mb/database/409007/409007/jd-edwards-data-archiving-solution/</link>
      <description>Organizations can mitigate the impact of data growth by running batch reports during downtimes, purchasing faster hardware or purge data from the application. &lt;br /&gt;
&lt;br /&gt;
None of these strategies fully address the reality of application growth coupled with the need for long term data retention. To maintain performance of &lt;a href="#"&gt;JD Edwards database&lt;/a&gt;, while ensuring compliance, organizations must Analyze JD Edwards data for a given module or the sum total of the Application database.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/409007/409007/jd-edwards-data-archiving-solution/</guid>
      <pubDate>Tue, 10 Nov 2009 03:02:57 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>JD Edwards Data Archiving Solution</title>
      <link>http://www.programmersheaven.com/mb/database/409004/409004/jd-edwards-data-archiving-solution/</link>
      <description>Organizations can mitigate the impact of data growth by running batch reports during downtimes, purchasing faster hardware or purge data from the application. &lt;br /&gt;
&lt;br /&gt;
None of these strategies fully address the reality of application growth coupled with the need for long term data retention. To maintain performance of &lt;a href="#"&gt;JD Edwards database&lt;/a&gt;, while ensuring compliance, organizations must Analyze JD Edwards data for a given module or the sum total of the Application database.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/409004/409004/jd-edwards-data-archiving-solution/</guid>
      <pubDate>Tue, 10 Nov 2009 02:59:34 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Data Privacy for a Secure Workplace</title>
      <link>http://www.programmersheaven.com/mb/database/402263/402263/data-privacy-for-a-secure-workplace/</link>
      <description>Our organization’s online business has increased 40% over the last 6 months. Every financial data has to be protected to sustain customer satisfaction ratings. Our current ratings have always exceeded expectation levels thanks to efficient data protection systems. &lt;a href="http://solix.com/masking_pack_landing.htm"&gt;Data privacy&lt;/a&gt; issues should be addressed to help the organization to also meet the different global regulatory requirements. It is always better to address enterprise data as a whole and provide complete security cover for sustaining business.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/402263/402263/data-privacy-for-a-secure-workplace/</guid>
      <pubDate>Tue, 06 Oct 2009 07:49:14 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>IT efficiency can be improved with automated cloning</title>
      <link>http://www.programmersheaven.com/mb/database/400125/400125/it-efficiency-can-be-improved-with-automated-cloning/</link>
      <description>It is well known that creating clones manually is labor intensive process. But with the assistance of Solix's product we've been creating automated clones where clones are created and configured faster and with fewer errors. Solix also provides products and solutions for &lt;a href="#"&gt;data archiving&lt;/a&gt;, etc.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/400125/400125/it-efficiency-can-be-improved-with-automated-cloning/</guid>
      <pubDate>Fri, 25 Sep 2009 01:05:57 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Really need help.</title>
      <link>http://www.programmersheaven.com/mb/database/397693/397693/really-need-help/</link>
      <description>I am working an assignment which is a Sports Day Enrollment system for secondary school.&lt;br /&gt;
I have simply 3 tables:&lt;br /&gt;
&lt;br /&gt;
Student(&lt;span style="text-decoration: underline;"&gt;Sid&lt;/span&gt;,class,clsNon,Sname,dob,House)&lt;br /&gt;
Event(&lt;span style="text-decoration: underline;"&gt;Eid&lt;/span&gt;,Ename,Grade)&lt;br /&gt;
Enrollment(&lt;span style="text-decoration: underline;"&gt;Enid&lt;/span&gt;,Sid,Eid)&lt;br /&gt;
&lt;br /&gt;
Grade A&amp;gt;=16 B=14-15 C&amp;lt;=13&lt;br /&gt;
But my assumption is that each student can only apply for 3 events.&lt;br /&gt;
How can I display the corresponding events for the student to choose and limit his choices to 3?&lt;br /&gt;
Can anyone help me? I am frustrated of failing to make it out.I am using Access 2003.&lt;br /&gt;
Thanks a lot!!! &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/397693/397693/really-need-help/</guid>
      <pubDate>Tue, 15 Sep 2009 06:30:09 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>DB Audits Aid ILM Process</title>
      <link>http://www.programmersheaven.com/mb/database/396502/396502/db-audits-aid-ilm-process/</link>
      <description>Similar to conducting internal audits for processes, it is important for DB administrators to conduct data audits. Ensuring that you are alerted when unusual activity is occurring and keeping a secure and searchable audit log of database changes is critical to maintaining compliance with regulatory requirements as well as ensuring adherence to corporate information governance policies. Our organization has implemented a data auditor solution package from &lt;a href="http://solix.com/"&gt;www.solix.com&lt;/a&gt; that works in tune with the information lifecycle management process.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/396502/396502/db-audits-aid-ilm-process/</guid>
      <pubDate>Fri, 04 Sep 2009 03:58:58 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Software FTP-Download Professional!</title>
      <link>http://www.programmersheaven.com/mb/database/396206/396206/software-ftp-download-professional/</link>
      <description>Software FTP-Download Professional!&lt;br /&gt;
   Anything you need,can check: ctrl + f&lt;br /&gt;
kela2018@rambler.ru&lt;br /&gt;
&lt;a href="http://www.yourweddingbands.com/showthread.php?t=20730"&gt;http://www.yourweddingbands.com/showthread.php?t=20730&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
AUTODESK_3D_STUDIO_MAX_V2008&lt;br /&gt;
AUTODESK.3DSMAX.DESIGN.V2009&lt;br /&gt;
AutoCAD.2009.ObjectARX.SDK&lt;br /&gt;
AUTODESK_ALIASSTUDIO_V2009     &lt;br /&gt;
AUTODESK.AUTOCAD.LAND.DESKTOP.V2009   &lt;br /&gt;
AUTODESK.AUTOCAD.MECHANICAL.DESKTOP.V2009 &lt;br /&gt;
AUTODESK.AUTOCAD.CIVIL3D.LAND.DESKTOP.COMPANION.V2
009&lt;br /&gt;
AUTODESK_DIRECTCONNECT_V2009  &lt;br /&gt;
Autodesk Fire 7.0.14&lt;br /&gt;
AUTODESK.INVENTOR.PRO.V2009&lt;br /&gt;
Autodesk.ImageModeler.2009.&amp;amp; SP1&lt;br /&gt;
AUTODESK_LUSTRE_V2009&lt;br /&gt;
Autodesk.MapGuide.Enterprise.v2009&lt;br /&gt;
Autodesk.MapGuide.Studio.v2009&lt;br /&gt;
Autodesk.Map.3D.2009.ObjectARX.SDK-DOA&lt;br /&gt;
AUTODESK.MAYA.UNLIMITED.V2009 &lt;br /&gt;
Autodesk MotionBuilder v2009&lt;br /&gt;
Autodesk.Mudbox.v2009&lt;br /&gt;
AUTODESK.NAVISWORKS.MANAGE.V2009  &lt;br /&gt;
AUTODESK.NAVISWORKS.REVIEW.V2009 &lt;br /&gt;
AUTODESK.NAVISWORKS.SIMULATE.V2009&lt;br /&gt;
Autodesk.Productstream.Professional.v2009&lt;br /&gt;
AUTODESK.QUANTITY.TAKEOFF.V2009   &lt;br /&gt;
AUTODESK.REVIT.STRUCTURE.V2009&lt;br /&gt;
AUTODESK.REVIT.ARCHITECTURE.V2009    &lt;br /&gt;
AUTODESK.AUTOCAD.REVIT.ARCHITECTURE.SUITE.2009.1&lt;br /&gt;
AUTODESK.REVIT.ARCHITECTURE.V2008.SP1 &lt;br /&gt;
Autodesk.Robot.Structural.Analysis.Professional.v2
009&lt;br /&gt;
Autodesk.Showcase.v2009 &amp;amp;SP1&lt;br /&gt;
AUTODESK.SHOWCASE.PROFESSIONAL.2010.R1&lt;br /&gt;
Autodesk.Sketchbook.Pro.2009&lt;br /&gt;
Autodesk.Stitcher.Unlimited.2009.Build61.x86&lt;br /&gt;
Autodesk SoftImage Face Robot v1.9 &lt;br /&gt;
Autodesk.Topobase.v2009.Client.ISO&lt;br /&gt;
AUTODESK_TOXIK_V2009 &amp;amp; SP2&lt;br /&gt;
AUTODESK.AUTOCAD.VIZ.V2008&lt;br /&gt;
AUTODESK.P.AND.ID.V2008&lt;br /&gt;
Autodesk.AliasStudio.v13.02&lt;br /&gt;
AUTODESK.ALIASSTUDIO.V2008 (2CD)&lt;br /&gt;
Autodesk Alias ImageStudio_v2008 &lt;br /&gt;
Autodesk Alias.ImageStudio.v3.0&lt;br /&gt;
AUTODESK_COMBUSTION_V2008&lt;br /&gt;
Autodesk.Impression.R1&lt;br /&gt;
Autodesk.Impression.v2.0.21973&lt;br /&gt;
AUTODESK.VAULT.V2008  (2CD) &lt;br /&gt;
AUTODESK_LUSTRE_V2008   &lt;br /&gt;
Autodesk.Revit.MEP.v2008.SP3&lt;br /&gt;
Autodesk Revit Series v6.1 &lt;br /&gt;
AUTODESK.REVIT.BUILDING.V9.1  (3CD) &lt;br /&gt;
AUTODESK.MAPGUIDE.V6.5 (2CD) &lt;br /&gt;
AUTODESK.MAX.2008 &lt;br /&gt;
Autodesk.Survey.v2007&lt;br /&gt;
Autodesk Actrix Technical 2000&lt;br /&gt;
AUTODESK MAYA UNLIMITED 8.5 SP1&lt;br /&gt;
AUTODESK_MAYA_UNLIMITED_V2008&lt;br /&gt;
Autodsys.AcceliCAD.2009.v6.4.23.3A &lt;br /&gt;
Autodsys.AcceliCAD.2010.v6.6.26.25A&lt;br /&gt;
Autodsys.AcceliCAD2CAM.2009.v6.4.23.3A&lt;br /&gt;
Autodsys.IntelliCAD.2009.Pro.Plus.v6.4.23.2&lt;br /&gt;
AutoDesSys.Bonzai3d.V1.00.Build.7306&lt;br /&gt;
AUTOFORM.MASTER.V4.1   &lt;br /&gt;
AutoFORM V2.1.1 + EXCEED 6.2 &amp;amp; 3D 6.2&lt;br /&gt;
Autoform.4.1.1&lt;br /&gt;
AUTOFORM.V4.2&lt;br /&gt;
AutomatedQA.AQTime.v5.45.487&lt;br /&gt;
Automotive.Expert.v7.61&lt;br /&gt;
Dowell.Systems.Automotive.Expert.v7.81 &lt;br /&gt;
Dowell.Systems.Automotive.Expert.v7.85&lt;br /&gt;
Automation Studio 5.0&lt;br /&gt;
AutoNest v9.22 &lt;br /&gt;
AutoShip v8.2&lt;br /&gt;
Autoship v9.1 &lt;br /&gt;
AutoYacht.8.2   &lt;br /&gt;
AutoPol.7.7&lt;br /&gt;
Autopol for windows 1.9 &lt;br /&gt;
AutoTURN v5.1&lt;br /&gt;
Autoturn 6.01&lt;br /&gt;
Auxbuss.HALion.3.Unleashed&lt;br /&gt;
AVID_XPRESS_PRO_V5.8&lt;br /&gt;
AvisMap.Deskpro.v5.0.2.5507&lt;br /&gt;
Avid_NewsCutter_XP_v6.7.5&lt;br /&gt;
AVID.MEDIA.COMPOSER.V3.0    &lt;br /&gt;
AVID_SOFTIMAGE_XSI_ADVANCED_V6.5&lt;br /&gt;
SOFTIMAGE.XSI.v7.0.609.0.Win32&lt;br /&gt;
SOFTIMAGE_XSI_ADVANCED_V7.01.684  &lt;br /&gt;
SOFTIMAGE_XSI_ADVANCED_V7.5_LINUX32/LINUX64&lt;br /&gt;
AVL Advisor 2004 &lt;br /&gt;
AVL.Boost Engine Cycle Simulaton v3.0  &lt;br /&gt;
AVL BOOST v5.1.1 Win&lt;br /&gt;
AVL cruise 3.1.1&lt;br /&gt;
AVL CRUISE 2008 &lt;br /&gt;
AVL.Fire.v8.31  &lt;br /&gt;
AVL Fire 2008  &lt;br /&gt;
AVL.SWIFT.V3.1.1&lt;br /&gt;
AVL Workspace SUITE v4.1&lt;br /&gt;
AVL WorkSpace SUITE 5.1 &lt;br /&gt;
AVPSoft ApFill v3.4.888 &lt;br /&gt;
AVPSoft Universal Desktop Ruler v2.5.876&lt;br /&gt;
AWR Microwave Office 2004 2537r_v651&lt;br /&gt;
Microwave Office 2006 v7.03 &lt;br /&gt;
AWR Design Environment 2006 v7.03.3161.2&lt;br /&gt;
AWR_Design_Environment_Microwave.Office.2007_v7_51
_3650_1&lt;br /&gt;
AWR.Design.Environment.v8.04.4267.1&lt;br /&gt;
AWR.Design.Environment.v8.06&lt;br /&gt;
AWR.Design.Environment.Vendor.Local.v8.0 &lt;br /&gt;
AWR.Nuhertz.Filter.for.AWRDE.v5.10&lt;br /&gt;
AWR.Nuhertz.Filter.for.AWRDE.v5.14&lt;br /&gt;
NuHertz Filter Solution V11.1.1&lt;br /&gt;
AWR.Testwave.for.AWRDE.v2.05&lt;br /&gt;
AxisVM7&lt;br /&gt;
B2.Spice.AD.Professional.v5.2.3 &lt;br /&gt;
Baramundi.Management.Suite.v7.6.SP1&lt;br /&gt;
BaseNow.Professional.v1.1.0.7 &lt;br /&gt;
BASIS.BBj.Barista.Enterprise.v9.01&lt;br /&gt;
BASIS.BBj.Barista.Enterprise.v9.10&lt;br /&gt;
BASIS.Product.Suite.v9.01 &lt;br /&gt;
BCAD.Furniture.Designer.Pro.v3.92&lt;br /&gt;
Beacon.Designer.v7.21 &lt;br /&gt;
Beacon.Designer.v7.51 &lt;br /&gt;
Becker.Indianapolis.and.Indianapolis.Pro.v5.0 (4CD)&lt;br /&gt;
Bentley ProjectWise Navigator MX 8.09.04.51&lt;br /&gt;
Bentley.PlantWise.XM.v8.09.04&lt;br /&gt;
Bentley SewerCad XM 05 06 014 00   &lt;br /&gt;
Bentley_SewerGems_v08.09.02.500 &lt;br /&gt;
Bentley.SewerGEMS.08.11.00.08(V8i)&lt;br /&gt;
Bentley.StormCAD.08.11.00.24(V8i)&lt;br /&gt;
Bentley.WaterCAD.08.11.0.3(V8i)&lt;br /&gt;
Bentley.WaterGEMS.08.11.00.30(V8i)&lt;br /&gt;
Bentley.HAMMER.08.11.00.30(V8i)&lt;br /&gt;
Bentley.Architecture.XM.v08.09.04.46&lt;br /&gt;
Bentley.Architecture.V8i.XM.v8.11.05.46&lt;br /&gt;
Bentley.Architecture.Dataset.US.V8i.v8.11.05.54&lt;br /&gt;
Bentley Autoplant 2004 &lt;br /&gt;
BENTLEY.AUTOPLANT.STRUCTURAL.V08.06.00.11 &lt;br /&gt;
Bentley.Structural.V8i.XM.v8.11.05.25&lt;br /&gt;
Bentley AutoPlant Plant Design XM 08.09.03.30&lt;br /&gt;
Bentley AutoPLANT P&amp;amp;ID XM 08.09.03.05&lt;br /&gt;
Bentley.PlantSpace.Design.Series.XM.v08.09.04.34&lt;br /&gt;
BENTLEY.AUTOPIPE.V2004  &lt;br /&gt;
Bentley AutoPIPE 09.01.00.27&lt;br /&gt;
Bentley.AutoPipe.XM.v09.00.00.08 &lt;br /&gt;
Rebis AutoPIPE v6.30.11&lt;br /&gt;
Bentley.Building.Electrical.Systems.XM.v08.09.04.1
2&lt;br /&gt;
Bentley.Building.Mechanical.Systems.XM.v08.09.04.4
5&lt;br /&gt;
Bentley.Cadastre.v08.09.04.71.for.Microstation.XM&lt;br /&gt;
Bentley.Civil.Extension.For.InRoads.XM.v8.09.03.06&lt;br /&gt;
Bentley.Civil.Extension.for.GEOPAK.XM.v08.09.06.30&lt;br /&gt;
Bentley.CivilStorm.V8i.08.11.00.08&lt;br /&gt;
Bentley.CulvertMaster.V03.02.00.01&lt;br /&gt;
Bentley FlowMaster 08.01.071.00&lt;br /&gt;
BENTLEY GEOPAK Civil 2004 &lt;br /&gt;
Bentley GeoPak Rebar v8.00.07.46&lt;br /&gt;
Bentley.GEOPAK.Rebar.08.08.03.27&lt;br /&gt;
Bentley.GEOPAK.Civil.Engineering.Suite.8.08.03.24&lt;br /&gt;
Bentley.Generative.Components.V8i.XM.v8.11.05.36&lt;br /&gt;
Bentley InRoads v8i 08.11.05.45&lt;br /&gt;
Bentley InRoads Group v8.11.05.47&lt;br /&gt;
Bentley.InRoads.Suite.v8i.XM.v8.11.05.47&lt;br /&gt;
Bentley.InRoads.Suite.XM.Edition.v8.09.03.06&lt;br /&gt;
Bentley.IRASB.XM.v08.09.04.57&lt;br /&gt;
Bentley.Map.XM.v08.09.04.128&lt;br /&gt;
Bentley.Map.V8i.XM.v8.11.05.26&lt;br /&gt;
Bentley.Map.V8i.XM.v8.11.05.49&lt;br /&gt;
Bentley.Microstation.Descartes.V8i.v8.11.05.30&lt;br /&gt;
Bentley.MicroStation.v8i.XM.v8.11.05.17&lt;br /&gt;
Bentley.Microstation.Descartes.V8i.XM.v8.11.05.25&lt;br /&gt;
Bentley.Microstation.GEOPAK.Civil.Engineering.Suit
e.XM.v08.09.07.28&lt;br /&gt;
Bentley.Microstation.GEOPAK.Rebar.2004.Edition.v08
.08.02.81&lt;br /&gt;
Bentley.Microstation.GEOPAK.Suite.v8.08.02.81&lt;br /&gt;
Bentley.Microstation.GEOPAK.Site.XM.v08.09.07.28&lt;br /&gt;
Bentley.Microstation.GEOPAK.Survey.XM.Edition.v08.
09.07.28&lt;br /&gt;
Bentley.Microstation.Powerdraft.v8i.XM.v8.11.05.17&lt;br /&gt;
Bentley.Microstation.Structural.XM.v8.09.04.39&lt;br /&gt;
Bentley.Microstation.Triforma.XM.v08.09.04.63&lt;br /&gt;
Bentley.Mx.International.v08.05.00.80&lt;br /&gt;
Bentley OpenPlant PowerPID v8i 08.11.05.27&lt;br /&gt;
Bentley.PlantFLOW.06.01.00.05&lt;br /&gt;
Bentley.PondPack.v10.01.04.00&lt;br /&gt;
BENTLEY.PROCESS.AND.INSTRUMENTATION.V08.06.00.14&lt;br /&gt;
Bentley.PowerSurvey.for.Powerdraft.XM.v08.09.06.30&lt;br /&gt;
Bentley.PowerMap.XM.v08.09.04.88&lt;br /&gt;
Bentley ProjectWise.v3.2&lt;br /&gt;
Bentley.ProSteel.3D.v18.0.Rev.20.06.08&lt;br /&gt;
Bentley.ProSteel.3D.v18.0.Datacode.20102008&lt;br /&gt;
Bentley.ProSteel 3D v8i (08.11.00.11)&lt;br /&gt;
Bentley.ProSteel.V8i.for.AutoCAD.2004-2009.v19.11.08&lt;br /&gt;
Bentley.Rebar.XM.v08.09.04.71&lt;br /&gt;
Bentley.Revit.Plugin.V8i.XM.v8.11.05.26&lt;br /&gt;
Bentley RAM CADstudio 02.01.07.00  &lt;br /&gt;
Bentley RAM Connection 05.00.01.43  &lt;br /&gt;
Bentley RAM STRUCTURAL SYSTEM 12 &lt;br /&gt;
Bentley Schedule Simulator v4.02.01.10&lt;br /&gt;
BENTLEY.STAAD.PRO.V2007.2&lt;br /&gt;
Bentley Staad.Pro v8i (20.07.04.12)&lt;br /&gt;
Bentley.TriForma.2004.Edition.v8.05.04.18&lt;br /&gt;
Bentley Viecon Publisher v03.00.00.12&lt;br /&gt;
Berkeley_Madonna_v8.3.14&lt;br /&gt;
Best Color Proof 5.0&lt;br /&gt;
BETA_CAE_ANSA_V12.0.3&lt;br /&gt;
BETA-CAE_METAPOST_V5.1.0&lt;br /&gt;
Betnina Artista 4 &lt;br /&gt;
BioStat.2007.Professional.v3.8.4&lt;br /&gt;
BIO-RAD_PDQUEST_V8.0.1&lt;br /&gt;
BIO-RAD_QUANTITY_ONE_V22&lt;br /&gt;
BioSolveIT.ReCore.v1.8.15.DD&lt;br /&gt;
BitDefender_Professional_Plus_v9.0&lt;br /&gt;
Bitplane.Imaris.v6.3.1&lt;br /&gt;
Bizprac ToolBox Pro v5.08&lt;br /&gt;
B&amp;amp;K PULSE v12.5&lt;br /&gt;
blast5.0_2005_08_07.0426&lt;br /&gt;
Bluespec-2008.11.C &lt;br /&gt;
BLUE_RIDGE_NUMERICS_CFDESIGN_V9.0&lt;br /&gt;
BMW.WDS.v12.0&lt;br /&gt;
BMW.ETK.v5.0.2008&lt;br /&gt;
BnK.PULSE.12.5 (2CD)  &lt;br /&gt;
PE-DESIGN v5.5&lt;br /&gt;
Brother.PE-Design.v6.0&lt;br /&gt;
BobCAD-CAM.v21.5.2&lt;br /&gt;
BobCad-Cam.V21.Training.Professor&lt;br /&gt;
Boeing SoftPlotter V4.1 With Airfield&lt;br /&gt;
Boris Blue 2.5    &lt;br /&gt;
Boris.Continuum.Complete.v5.01.for.AVX  &lt;br /&gt;
Boris.Red.v4.3 &lt;br /&gt;
Borland.c.sharp.builder.enterprise.V1.0  (2CD)  &lt;br /&gt;
Borland.Together.Designer.2005 &lt;br /&gt;
Borland Together Architect 2006&lt;br /&gt;
BORLAND.JBUILDER.2007.ENTERPRISE.DVD&lt;br /&gt;
Borland C++ Builder 6.0 Enterprise&lt;br /&gt;
Borland.SilkTest.2008.R2.SP1&lt;br /&gt;
Bosch.Rexroth.Indraworks.v7.04   &lt;br /&gt;
Bosch.Rexroth.WinStudio.v6.5.WinNT_2K&lt;br /&gt;
Boson.Netsim.for.CCNP.v7.06&lt;br /&gt;
BOSS.RiverCAD.XP.for.AutoCAD.v7.5 &lt;br /&gt;
BOSS.RiverCAD.2000.Datecode.20020508&lt;br /&gt;
BOSS.RiverCAD.Professional.for.AutoCAD.v8.1&lt;br /&gt;
BOSS.StormNET.v4.18&lt;br /&gt;
BOSTON DYNAMICS DI-GUY 5.0&lt;br /&gt;
Box Shot 3D v2.10&lt;br /&gt;
Braid.Art.Labs.GroBoto.v2.1.8.1 &lt;br /&gt;
BrainVoyager.QX.v2.0.7&lt;br /&gt;
BR＆E ProMax 2.0.7047.0&lt;br /&gt;
Brain.Voyager.QX.v1.10.4&lt;br /&gt;
Bricsys.BricsCad.Pro.v9.2.16.15292&lt;br /&gt;
Bricsys.BricsCad.Pro.v9.3.9.15715&lt;br /&gt;
BSI.FB-Pier.v3.21&lt;br /&gt;
BtoCAD.2009A.v0416.11  &lt;br /&gt;
Bunkspeed.HyperShot.v1.5.20 &lt;br /&gt;
Bunkspeed.HyperShot.v1.7.1 &lt;br /&gt;
Business Objects 5.1.4 + Keys&lt;br /&gt;
BUW.EFX.EVX.v6.0&lt;br /&gt;
Progressive.Die.Extension.v5.0&lt;br /&gt;
SmartAnalysis.v5.0&lt;br /&gt;
SmartAssembly.v5.0&lt;br /&gt;
SmartCorebox.v5.0&lt;br /&gt;
SmartElectrode.v5.0&lt;br /&gt;
SmartHolechart.v6.0&lt;br /&gt;
SmartHolefinder.v5.0&lt;br /&gt;
SmartLibrary.v6.0&lt;br /&gt;
SmartOptics.v5.0&lt;br /&gt;
SmartXhatch.v5.0	&lt;br /&gt;
CA AllFusion Data Model Validator 7.2 &lt;br /&gt;
CA AllFusion ERwin Data Modeler 7.2.5 SP1&lt;br /&gt;
CA AllFusion Model Manager 7.2.5 SP1&lt;br /&gt;
CA AllFusion Model Navigator 7.2.5 SP1&lt;br /&gt;
CA AllFusion Process Modeller 7.2.5 SP1&lt;br /&gt;
Cabinet Vision Solid v4.0&lt;br /&gt;
CAD2CAD.TwinView.Plus.Server.v14.28.24   &lt;br /&gt;
CAD2CAD.TwinView.Plus.v14.28.24 &lt;br /&gt;
CAD.SCHROER.STHENO.ADVANCED.V3.1.1&lt;br /&gt;
CAD-DUCT.SOLIDS.V2.28.062&lt;br /&gt;
Caddy-Electrical-3.8-3.6&lt;br /&gt;
CADRASTER.PRO.V8.0.FOR.AUTOCAD&lt;br /&gt;
&lt;br /&gt;
   Anything you need,can check: ctrl + f&lt;br /&gt;
kela2018@rambler.ru&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/396206/396206/software-ftp-download-professional/</guid>
      <pubDate>Mon, 31 Aug 2009 10:36:22 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Alpha Five database system</title>
      <link>http://www.programmersheaven.com/mb/database/396030/396030/alpha-five-database-system/</link>
      <description>Can anyone direct me to programming examples for the database system; Alpha Five v5 – v9. I have been looking for public domain source code examples.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/396030/396030/alpha-five-database-system/</guid>
      <pubDate>Fri, 28 Aug 2009 11:35:35 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Data input solution for changing datasource dynamically in report tool</title>
      <link>http://www.programmersheaven.com/mb/database/396019/396019/data-input-solution-for-changing-datasource-dynamically-in-report-tool/</link>
      <description>&lt;strong&gt;&lt;span style="font-size: large;"&gt;Problem&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
Sometimes, users may change the data source of input report template through RAQ Report API dynamically. However, after releasing the input report template with tag, an error message "Can't find data source!" usually appears when users are inputting data in the web page.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;span style="font-size: large;"&gt;Analysis&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
Through API of RAQ Report, users can only change the name of the data source of report template dynamically, but not change the data source in updated attribute correspondingly. As a result, the data sources in input template and updated attribute are different. Then, when users are inputting data, the system can't find correct data source, and an error message pops up.&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;
After changing the data source of report template, users should change the data source of updated attribute correspondingly.&lt;br /&gt;
With RAQ Report, users only need to get the corresponding relations between input report attribute and updated attribute, and change the data source of updated attribute.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;span style="font-size: large;"&gt;Example&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;
ReportDefine rd = (ReportDefine)ReportUtils.read(raq);&lt;br /&gt;
INormalCell cell = rd.getCell(2, (short)1);&lt;br /&gt;
//Get input report attributes.&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 corresponding relations between input report attribute and updated attribute.&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;
//Set the data source of updated attribute.&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 welcome to cc it anywhere, and please indicate the source.&lt;br /&gt;
&lt;br /&gt;
If you would like to read more articles about reporting tool, you are also welcome to refer to my blog.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/396019/396019/data-input-solution-for-changing-datasource-dynamically-in-report-tool/</guid>
      <pubDate>Fri, 28 Aug 2009 08:28:33 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>SQL alternative</title>
      <link>http://www.programmersheaven.com/mb/database/395845/395845/sql-alternative/</link>
      <description>&lt;br /&gt;
Recently started consulting with a company that does a large amount of data manipulation as part of their service.&lt;br /&gt;
&lt;br /&gt;
currently they use SQL Server, and are getting more and more requests for lists, reformats, reports etc.&lt;br /&gt;
&lt;br /&gt;
There certainly are a lot of SQL programmers available, but I think using it is overkill and was curious what would be a good alternative that can handle large files, possibly up to 20 million records.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395845/395845/sql-alternative/</guid>
      <pubDate>Wed, 26 Aug 2009 14:59:29 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>for sell Apple Macbook Air……………………….$600</title>
      <link>http://www.programmersheaven.com/mb/database/395726/395726/for-sell-apple-macbook-air600/</link>
      <description>TYALLEY LIMITED is a leading supplier of high-end products to customers, we deal primarily in&lt;br /&gt;
genuine and brand new electronics, all items are sourced directly from the manufacturers and carry the manufacturer's warranty. We ship 100% of our orders the same business day.&lt;br /&gt;
&lt;br /&gt;
Registered No.06115369&lt;br /&gt;
&lt;br /&gt;
We specialize in a wide range of products such as laptops, mobile phones, plasma &amp;amp; lcd tv, mp3 &amp;amp; mp4 players, video games console, digital cameras, dvd players (Etc) at cheap &amp;amp; affordable prices.&lt;br /&gt;
&lt;br /&gt;
TYALLEY LIMITED strive to offer high-quality products at competitive prices. All of our products are brand new, never used, never rebuilt. We maintain multiple-supplier sources for our products as a means of being able to continually offer the best products at the best prices. All of our products are backed by a 90-days, money-back guarantee. Contact us for further informations about extended warranty from manufacturer.&lt;br /&gt;
&lt;br /&gt;
We pride ourselves in the quality of products we offer, our prices, and most importantly, our customer service.&lt;br /&gt;
&lt;br /&gt;
For more informations regarding product and purchasing process send your enquiry to TTYALLEY@YAHOO.COM&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note : First 25 People To Order 2Unit Get Free Item , Shipping/Discount&lt;br /&gt;
&lt;br /&gt;
CHECK OUT FOR OUR EXTRA LESS CHEAPER PRODUCT LIST:&lt;br /&gt;
&lt;br /&gt;
T-Mobile Sidekick:&lt;br /&gt;
T-Mobile Sidekick LX 2008–$135&lt;br /&gt;
T-Mobile Sidekick LX 2009–$140&lt;br /&gt;
T-Mobile Sidekick LX — $105&lt;br /&gt;
T-Mobile Shadow — $120&lt;br /&gt;
T-Mobile G1 — $130&lt;br /&gt;
T-Mobile Sidekick 3 — $100&lt;br /&gt;
Juicy Couture Sidekick 2 — $80&lt;br /&gt;
&lt;br /&gt;
Apple iPhone:&lt;br /&gt;
Apple iPhone 3GS 32GB- $200&lt;br /&gt;
Apple iPhone 3GS 16GB- $180&lt;br /&gt;
Apple iPhone 4GB — $100&lt;br /&gt;
Apple iPhone 8GB — $120&lt;br /&gt;
Apple iPhone 16GB — $130&lt;br /&gt;
Apple iPhone 3G 8GB — $140&lt;br /&gt;
Apple iPhone 3G 16GB — $150&lt;br /&gt;
&lt;br /&gt;
Palm Pre Sprint ---$190&lt;br /&gt;
&lt;br /&gt;
BlackBerry:&lt;br /&gt;
BlackBerry Tour 9630 ——$180&lt;br /&gt;
Blackberry Curve 8900 — $170&lt;br /&gt;
Blackberry Storm 9500 — $140&lt;br /&gt;
Blackberry Storm 9530 — $155&lt;br /&gt;
Blackberry Pearl Flip 8220 — $105&lt;br /&gt;
Blackberry Bold 9000 — $135&lt;br /&gt;
Blackberry Curve 8320 — $125&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
HTC:&lt;br /&gt;
HTC Snap ——$200&lt;br /&gt;
HTC Hero -------$180&lt;br /&gt;
HTC Touch Pro — $155&lt;br /&gt;
HTC Touch Diamond 2 — $200&lt;br /&gt;
HTC Touch Diamond — $140&lt;br /&gt;
HTC Touch Cruise — $140&lt;br /&gt;
HTC Touch Pro2 $200&lt;br /&gt;
HTC Touch Dual — $130&lt;br /&gt;
HTC Dream — $195&lt;br /&gt;
HTC Touch Cruise 09 — $215&lt;br /&gt;
HTC MAX 4G — $200&lt;br /&gt;
HTC Touch HD — $165&lt;br /&gt;
HTC Touch 3G — $155&lt;br /&gt;
HTC Touch Viva — $145&lt;br /&gt;
HTC S740 — $155&lt;br /&gt;
&lt;br /&gt;
Eten:&lt;br /&gt;
Acer Tempo DX900 ----$190&lt;br /&gt;
Eten glofiish X610 — $135&lt;br /&gt;
Eten glofiish V900 — $235&lt;br /&gt;
Eten glofiish X900 — $185&lt;br /&gt;
Eten glofiish DX900 — $165&lt;br /&gt;
Eten glofiish M810 — $155&lt;br /&gt;
Eten glofiish X650 — $145&lt;br /&gt;
Eten glofiish M800 — $160&lt;br /&gt;
&lt;br /&gt;
Nokia:&lt;br /&gt;
Nokia 6760 slide–$200&lt;br /&gt;
Nokia Surge -$190&lt;br /&gt;
Nokia N98—–$200&lt;br /&gt;
Nokia N85——$190&lt;br /&gt;
Nokia N96 16GB– $175&lt;br /&gt;
Nokia E90 — $155&lt;br /&gt;
Nokia N97 — $195&lt;br /&gt;
Nokia N79 — $175&lt;br /&gt;
Nokia E72 — $190&lt;br /&gt;
Nokia E71 — $180&lt;br /&gt;
Nokia E75 - $185&lt;br /&gt;
Nokia 8800 Sapphire Arte — $205&lt;br /&gt;
Nokia N93i — $125&lt;br /&gt;
Nokia 8600 Luna — $145&lt;br /&gt;
Nokia 5530 XpressMusic --$190&lt;br /&gt;
Nokia 5800 XPress Music—-$185&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sony Ericsson:&lt;br /&gt;
Sony Ericsson Satio --$200&lt;br /&gt;
Sony Ericsson Idou—–$190&lt;br /&gt;
Sony Ericsson C510 — $185&lt;br /&gt;
Sony Ericsson P1 — $125&lt;br /&gt;
Sony Ericsson W995 -$190&lt;br /&gt;
Sony Ericsson C905 — $145&lt;br /&gt;
Sony Ericsson W960 — $130&lt;br /&gt;
Sony Ericsson G900 — $150&lt;br /&gt;
Sony Ericsson XPERIA X1 — $175&lt;br /&gt;
Sony Ericsson C902 — $130&lt;br /&gt;
Sony Ericsson W902 — $145&lt;br /&gt;
&lt;br /&gt;
Samsung:&lt;br /&gt;
Samsung I8000 Omnia II —— $220&lt;br /&gt;
Samsung B7320 OmniaPRO —— $200&lt;br /&gt;
Samsung B7300 Omnia LITE——$190&lt;br /&gt;
Samsung i8910 Omnia HD ——-$170&lt;br /&gt;
Samsung i900 Omnia 16GB — $165&lt;br /&gt;
Samsung Omnia 8GB ——-$160&lt;br /&gt;
Samsung S8000 Jet ————&lt;br /&gt;
Samsung T929 Memoir — $195&lt;br /&gt;
Samsung T919 Behold — $185&lt;br /&gt;
Samsung Giorgio Armani P520 — $135&lt;br /&gt;
Samsung U900 Soul — $160&lt;br /&gt;
Samsung G800 — $155&lt;br /&gt;
Samsung F490 — $145&lt;br /&gt;
&lt;br /&gt;
LG Phones&lt;br /&gt;
LG GW550—— $200&lt;br /&gt;
LG Incite——$195&lt;br /&gt;
LG GD910—–$180&lt;br /&gt;
LG KS500—-$175&lt;br /&gt;
LG KF900 Prada—–$180&lt;br /&gt;
LG KC780—-$200&lt;br /&gt;
LG KP500 Cookie—–$190&lt;br /&gt;
LG KC910 Renoir——$180&lt;br /&gt;
LG KB770——$190&lt;br /&gt;
LG CB630 Invision——$200&lt;br /&gt;
LG KS360——-$190&lt;br /&gt;
&lt;br /&gt;
Video Games Console:&lt;br /&gt;
Playstation:&lt;br /&gt;
Sony PSP Slim Giga Bundle — $105&lt;br /&gt;
Sony PlayStation 3 80GB Motorstorm Pack — $155&lt;br /&gt;
Sony Playstation 3 60GB — $140&lt;br /&gt;
Sony PlayStation 3 40GB — $125&lt;br /&gt;
&lt;br /&gt;
Microsoft Xbox:&lt;br /&gt;
Xbox 360 Arcade Console -- $115&lt;br /&gt;
Xbox 360 Pro 60GB Console -- $145&lt;br /&gt;
Xbox 360 Elite 120GB Console -- $165&lt;br /&gt;
&lt;br /&gt;
Nintendo:&lt;br /&gt;
Nintendo DS Lite -- $70&lt;br /&gt;
Nintendo Wii Console -- $125&lt;br /&gt;
&lt;br /&gt;
APPLE LAPTOPS&lt;br /&gt;
Apple Macbook Air……………………….$600&lt;br /&gt;
Apple MacBook (MA700LL/A) Mac Notebook…$500usd&lt;br /&gt;
Apple MacBook Pro (MA611LL/A) Notebook…$500usd&lt;br /&gt;
Apple MacBook (MA254LL/A) Mac Notebook…$450usd&lt;br /&gt;
Apple iBook G3 (M7698LL/A) Mac Notebook..$400usd&lt;br /&gt;
Apple MacBook Pro (MA609LL/A) Notebook…$550usd&lt;br /&gt;
Apple MacBook Pro (MA600LLA) Notebook…$500usd&lt;br /&gt;
Apple MacBook Pro (MA610LL/A) Notebook…$450usd&lt;br /&gt;
Apple Macbook Pro (885909119400) Notebook..$445usd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please review our returns policy for more details below:&lt;br /&gt;
Before you return your items, you must contact us and receive a Return Merchandise Authorization Number (RMA). Any returns sent without an RMA number will not be accepted by TYALLEY LIMITED We assume all responsibility for the package until it arrives at our office.&lt;br /&gt;
&lt;br /&gt;
Please include the following information when returning an item:&lt;br /&gt;
1) Your RMA number on your invoice (Do not write on the items box).&lt;br /&gt;
2) A copy of your original invoice with the RMA number (inside the shipping box).&lt;br /&gt;
3) A note stating the problem if you would like the return for replacement or exchange.&lt;br /&gt;
&lt;br /&gt;
We ship 100% of our orders the same business day from our warehouse, typically the product will arrive within 2days via either Fedex/Ups Courier Sevices.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We give maximum guarantee for safe delivery of items bought from us.&lt;br /&gt;
&lt;br /&gt;
Well we offer international standard warranty with full acceptance for replacement or full refund of money back.&lt;br /&gt;
&lt;br /&gt;
We give maximum guarantee for safe delivery of items bought from us&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For more informations regarding product and purchasing process send your enquiry to TTYALLEY@YAHOO.COM&lt;br /&gt;
We look forward in placing your order with us and giving you the most competent services.&lt;br /&gt;
&lt;br /&gt;
NOTE: First 10 Customers To Purchase 2Units Or More, Attract Free Shipment !!!&lt;br /&gt;
&lt;br /&gt;
Yours Sincerely&lt;br /&gt;
&lt;br /&gt;
Mr. MATHEW DONOVAN&lt;br /&gt;
TYALLEY LIMITED&lt;br /&gt;
United Kingdom&lt;br /&gt;
E-mail: TTYALLEY@YAHOO.COM&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395726/395726/for-sell-apple-macbook-air600/</guid>
      <pubDate>Tue, 25 Aug 2009 05:24:58 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Database connection</title>
      <link>http://www.programmersheaven.com/mb/database/395710/395710/database-connection/</link>
      <description>Hi &lt;br /&gt;
I have been trying to get to a &lt;a href="http://www.checkitout.co.uk/"&gt;database design&lt;/a&gt; that I have created in my Bluevoda Control Panel.&lt;br /&gt;
However when I try and test the database using Dreamweaver, the only database it shows is "information_schema"&lt;br /&gt;
&lt;br /&gt;
When I enter the password for my database I get the message "access denied for user xxxxxxx_tidus @'localhost' using password: YES&lt;br /&gt;
&lt;br /&gt;
am I forgetting to do something?&lt;br /&gt;
&lt;br /&gt;
all help much appreciated&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
thanks!!&lt;br /&gt;
&lt;br /&gt;
Jess&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395710/395710/database-connection/</guid>
      <pubDate>Tue, 25 Aug 2009 00:03:05 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>sql and asp programmers needed</title>
      <link>http://www.programmersheaven.com/mb/database/395684/395684/sql-and-asp-programmers-needed/</link>
      <description>Looking for ASP/SQL programmers to add to our growing team. This is not for anyone looking for part-time work, at this time we need programmers who are able to put in the hour as we have plenty of work that needs to be done. ASP.net-NO , ASP classic-YES. If you are an outsourcing company, please go away and for the love of it all do not spam or email me, thanks!&lt;br /&gt;
&lt;br /&gt;
If you are hard working and can pretend to get along with or at least pretend to like our other programmers, then please feel free to email me with your resume- not that I will read them because I have found resumes do not always reflect ones capabilities.&lt;br /&gt;
&lt;br /&gt;
This is a telecommuting job, so, you will need a home office that meets the requirements (if you have any clue about programming you will already know this but what they hay!):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-Must maintain a reliably quiet and professional home work environment during working hours.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-Must have reliable high-speed internet (DSL or Cable)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-Must have reliable personal computer which meets minimum system requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-Windows XP or 2000&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-512 mb RAM&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-Internet Explorer 7 or Firefox 2.x web browser&lt;br /&gt;
&lt;br /&gt;
Pay rate is starting at $15.00 an hour for two week probation period for this contract position. After probation period, salary will be determine on results.&lt;br /&gt;
&lt;br /&gt;
We are looking for programmers who can start immediately and work at least 30-40+ hours. Sense of humor is a must with us and thick skin! If you do not have the skills or sense of humor that we are seeking, please do not reply. If you do, please shoot me an email ASAP! &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395684/395684/sql-and-asp-programmers-needed/</guid>
      <pubDate>Mon, 24 Aug 2009 17:48:19 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Light DB needed</title>
      <link>http://www.programmersheaven.com/mb/database/395566/395566/light-db-needed/</link>
      <description>Hi everybody&lt;br /&gt;
I am looking for a very light database, capable of storing just text (booleans would be nice) in user defined fields, and - most important - accessible from JavaScript.&lt;br /&gt;
So far I haven't been able to find anything suitable.&lt;br /&gt;
Any recommandations?&lt;br /&gt;
Many thanks in advance.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395566/395566/light-db-needed/</guid>
      <pubDate>Sat, 22 Aug 2009 09:20:18 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>ORACLE_SQL</title>
      <link>http://www.programmersheaven.com/mb/database/395273/395273/oracle_sql/</link>
      <description>Hi,&lt;br /&gt;
Am ramya. I have got some problem in SQL. In my oracle database,&lt;br /&gt;
i got some tables created automatically with funny names , as&lt;br /&gt;
BIN$cWPOnQLpNT3gQAB/AQAa3w==$0&lt;br /&gt;
BIN$cWPOnQLrNT3gQAB/AQAa3w==$0&lt;br /&gt;
BIN$cWPOnQLmNT3gQAB/AQAa3w==$0&lt;br /&gt;
BIN$cPIH26/UFZngQAB/AQBFhw==$0&lt;br /&gt;
BIN$cHe95IEsJt3gQAB/AQBFhw==$0&lt;br /&gt;
&lt;br /&gt;
The above are tables and are visible when used the data dictionaries tab and user_tab_columns alone. Am also not able to view the contents of these tables even and also not able to DROP THIS TABLES.&lt;br /&gt;
Please help me to clear this issue...&lt;br /&gt;
how to drop them?? &lt;br /&gt;
how to view their contents?&lt;br /&gt;
say me some info about these tables..&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395273/395273/oracle_sql/</guid>
      <pubDate>Tue, 18 Aug 2009 00:28:09 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Query Optimization</title>
      <link>http://www.programmersheaven.com/mb/database/395224/395224/query-optimization/</link>
      <description>Hi,&lt;br /&gt;
This is my first article and so please provide comments on it (good or bad).&lt;br /&gt;
&lt;br /&gt;
The design of the database is one of the most important factors in the performance of the database and with a good database design you also need optimal queries to perform optimally. Everyone wants the performance of their database to be optimal but does not concentrate on designing a query. They just write the query depending on the only major factor. What I want. They don’t consider that even the same thing can be achieved with some alternate queries and in more efficient manner.&lt;br /&gt;
&lt;br /&gt;
Let’s take a very simple 3 table example, Employee, Department and Sub-Department. Schema of&lt;br /&gt;
&lt;br /&gt;
Employee table&lt;br /&gt;
1. Employee&lt;br /&gt;
&lt;br /&gt;
   1. EmpId&lt;br /&gt;
   2. SDId&lt;br /&gt;
   3. EmpName&lt;br /&gt;
   4. EmpAdd&lt;br /&gt;
   5. EmpPhone&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sub-Department table&lt;br /&gt;
2. SubDepartment&lt;br /&gt;
&lt;br /&gt;
   1. SDId&lt;br /&gt;
   2. DeptId&lt;br /&gt;
   3. SDName&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Department table&lt;br /&gt;
3. Department&lt;br /&gt;
&lt;br /&gt;
   1. DeptId&lt;br /&gt;
   2. DeptName&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The relationship between the Employee and Sub-Department table is one or more sub-departments have zero or more employees or in other words zero or more employees work in one or more Sub-Departments. The relationship between Department and Sub-Department is one or more Sub-Department is within one and only one Department. The Entity Relationship diagram of the above scenario is&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ER Diagram&lt;br /&gt;
&lt;br /&gt;
Now with the above Database schema lets have a very basic queries which can give us the same results and we will analyze as to which is faster and better performing than the other one. Let’s take a very common example with the above database schema, to know all the Employees in a particular department. The common solution that comes to our mind is.&lt;br /&gt;
&lt;br /&gt;
Code: sql&lt;br /&gt;
&lt;br /&gt;
SELECT e.EmpId, e.SDId, e.EmpName, e.EmpAdd, e.EmpPhone&lt;br /&gt;
FROM Employee e, SubDepartment sd, Department d&lt;br /&gt;
WHERE e.SDId = sd.SDId&lt;br /&gt;
AND sd.DeptId = d.DeptId&lt;br /&gt;
AND d.DeptId = ‘MyDepartment’&lt;br /&gt;
&lt;br /&gt;
The above solution of joining the 3 tables to give us the output for the MyDepartment as the id of the department is a very common but is a very expensive one. Any organization have an employee to department ratio quite high and joining an Employee to a Department table can be quite a undesirable operation.&lt;br /&gt;
&lt;br /&gt;
If we analyze the above solution then we are getting the output for one and only one Department i.e. MyDepartment. So our aim should be to find the Sub-Department’s in our MyDepartment.&lt;br /&gt;
Code: sql&lt;br /&gt;
&lt;br /&gt;
SELECT SDId&lt;br /&gt;
FROM SubDepartment&lt;br /&gt;
WHERE DeptId = ‘MyDepartment’&lt;br /&gt;
&lt;br /&gt;
The above query gives us the Sub-Department ID’s of all the Sub department present in our concerned department ‘MyDepartment’. Now if we can have the all the employee details present in each subdepartment returned by the above query we get the results that we had with the join from 3 tables.&lt;br /&gt;
&lt;br /&gt;
Code: sql&lt;br /&gt;
&lt;br /&gt;
SELECT e.EmpId, e.SDId, e.EmpName, e.EmpAdd, e.EmpPhone&lt;br /&gt;
FROM Employee e&lt;br /&gt;
WHERE e.SDId&lt;br /&gt;
IN (SELECT SDId&lt;br /&gt;
FROM SubDepartment&lt;br /&gt;
WHERE DeptId = ‘MyDepartment’)&lt;br /&gt;
&lt;br /&gt;
With the above solution we have avoided 3 table join and also a query to the department table with introduction of a sub query. By avoiding the joins of a tables what we have achieved is no Department table in the query to retrieve the results but managed to provide the same output. Now we have some limitations with the above solutions.&lt;br /&gt;
&lt;br /&gt;
If you are a web developer and if your client is using MySQL and that also there are chances that he might not be using version 5 then you are in trouble as you cannot use Sub queries. Then you can even write the above query using any programming language and avoid even the sub-query. Let’s take the simple example of PHP and MySQL.&lt;br /&gt;
&lt;br /&gt;
Code: PHP&lt;br /&gt;
&lt;br /&gt;
//SQL to give the sub-departments of the queries DeptId&lt;br /&gt;
$sql_sub_dept = "SELECT SDId FROM SubDepartment WHERE DeptId = $DeptID";&lt;br /&gt;
//Main SQL to give us the Employee of a particular department here $DeptID&lt;br /&gt;
$sql_main_dept = " SELECT e.EmpId, e.SDId, e.EmpName, e.EmpAdd, e.EmpPhone FROM Employee e WHERE Employee. SDId IN (";&lt;br /&gt;
&lt;br /&gt;
//Execute the SQL and concatenate each subdepartment ID&lt;br /&gt;
    $result = mysql_query ($sql_sub_dept);&lt;br /&gt;
    while($rec = mysql_fetch_array($result))&lt;br /&gt;
    {&lt;br /&gt;
        $ sql_main_dept.= $rec["SDId"] ;&lt;br /&gt;
        $ sql_main_dept.= ',';&lt;br /&gt;
    }&lt;br /&gt;
    //Remove the last “,” and end the bracket to complete the SQL.&lt;br /&gt;
    $sql_main_dept = trim($sql_main_dept,",");&lt;br /&gt;
    $sql_main_dept.= ")";&lt;br /&gt;
Thanks &amp;amp; regards&lt;br /&gt;
Lokananth&lt;br /&gt;
[url=http://www.mioot.com]Live Chat Software[/url] By miOOt</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395224/395224/query-optimization/</guid>
      <pubDate>Mon, 17 Aug 2009 03:34:46 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>How to convert a table</title>
      <link>http://www.programmersheaven.com/mb/database/395223/395223/how-to-convert-a-table/</link>
      <description>Hi, all,&lt;br /&gt;
&lt;br /&gt;
I have a problem to convert table content based on existing content:&lt;br /&gt;
&lt;br /&gt;
DROP TABLE IF EXISTS `list`;&lt;br /&gt;
CREATE TABLE `list` (&lt;br /&gt;
  `FACILITY` varchar(30) NOT NULL,&lt;br /&gt;
  `PRODUCT` varchar(30) NOT NULL,&lt;br /&gt;
  `SEGMENT` varchar(30) NOT NULL,&lt;br /&gt;
  PRIMARY KEY  (`FACILITY`,`PRODUCT`,`SEGMENT`)&lt;br /&gt;
)  ENGINE=InnoDB DEFAULT CHARSET=utf8;&lt;br /&gt;
Let's say I know,&lt;br /&gt;
I have 2 FACILITY: AUSTIN, BOSTON;&lt;br /&gt;
(by&lt;br /&gt;
&lt;br /&gt;
select distinct facility from list;&lt;br /&gt;
&lt;br /&gt;
)&lt;br /&gt;
I have 2 PRODUCT: A, B;&lt;br /&gt;
(by&lt;br /&gt;
&lt;br /&gt;
select distinct product from list;&lt;br /&gt;
&lt;br /&gt;
)&lt;br /&gt;
I have 2 SEGMENT: BIG, SMALL;&lt;br /&gt;
(by&lt;br /&gt;
&lt;br /&gt;
select distinct segment from list;&lt;br /&gt;
&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
the Total combination could be 2*2*2=8&lt;br /&gt;
&lt;br /&gt;
Now the current table "list" contains below data (3 records):&lt;br /&gt;
AUSTIN, A, BIG;&lt;br /&gt;
AUSTIN, B, SMALL;&lt;br /&gt;
BOSTON, A, SMALL;&lt;br /&gt;
&lt;br /&gt;
How can I tell the other 5 combination by MYSQL?&lt;br /&gt;
Thanks &amp;amp; regards&lt;br /&gt;
Lokananth&lt;br /&gt;
[url=http://www.mioot.com]Live Chat Software[/url] By miOOt</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395223/395223/how-to-convert-a-table/</guid>
      <pubDate>Mon, 17 Aug 2009 03:24:09 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>mysql query performance issue</title>
      <link>http://www.programmersheaven.com/mb/database/395222/395222/mysql-query-performance-issue/</link>
      <description>Hi All,&lt;br /&gt;
&lt;br /&gt;
I am using testlink tool with mysql ( teamst.org/phpBB2/viewtopic.php?t=1938 ).&lt;br /&gt;
&lt;br /&gt;
I have found that this query takes 54 secs to fetch data..which is not acceptable..&lt;br /&gt;
I am not conversant with mysql tuning...&lt;br /&gt;
&lt;br /&gt;
SELECT&lt;br /&gt;
NHB.parent_id AS testsuite_id, NHA.parent_id AS tc_id,&lt;br /&gt;
NHB.node_order AS z, T.tcversion_id AS tcversion_id,&lt;br /&gt;
T.id AS feature_id, TCV.active,&lt;br /&gt;
E.id AS exec_id, E.tcversion_id AS executed,&lt;br /&gt;
E.testplan_id AS exec_on_tplan, UA.user_id,UA.type,&lt;br /&gt;
UA.status, UA.assigner_id,&lt;br /&gt;
COALESCE(E.status,'n') AS exec_status&lt;br /&gt;
FROM&lt;br /&gt;
nodes_hierarchy NHA JOIN nodes_hierarchy NHB ON NHA.parent_id = NHB.id&lt;br /&gt;
JOIN testplan_tcversions T ON NHA.id = T.tcversion_id&lt;br /&gt;
JOIN tcversions TCV ON NHA.id = TCV.id&lt;br /&gt;
JOIN executions E ON (NHA.id = E.tcversion_id AND E.testplan_id=T.testplan_id AND E.build_id=21 )&lt;br /&gt;
LEFT OUTER JOIN user_assignments UA ON UA.feature_id = T.id&lt;br /&gt;
WHERE T.testplan_id=30397&lt;br /&gt;
AND (UA.type=1 OR UA.type IS NULL)&lt;br /&gt;
AND E.status='p'&lt;br /&gt;
AND E.id IN ( SELECT MAX(id) FROM executions WHERE testplan_id=30397 GROUP BY tcversion_id,testplan_id )&lt;br /&gt;
ORDER BY testsuite_id,NHB.node_order,tc_id,E.id ASC;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any help to bring down the sql execution time would be highly appreciated.&lt;br /&gt;
&lt;br /&gt;
Thanks &amp;amp; regards&lt;br /&gt;
Lokananth&lt;br /&gt;
[url=http://www.mioot.com]Live Chat Software[/url] By miOOt</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395222/395222/mysql-query-performance-issue/</guid>
      <pubDate>Mon, 17 Aug 2009 03:23:28 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Introducing the SELECT Statement</title>
      <link>http://www.programmersheaven.com/mb/database/395221/395221/introducing-the-select-statement/</link>
      <description>Hi,&lt;br /&gt;
The SELECT statement is constructed of clauses that let you look at data in a relational database. These clauses let you select columns and rows from one or more database tables or views, specify one or more conditions, order and summarize the data, and put the selected data in a temporary table.&lt;br /&gt;
&lt;br /&gt;
This chapter shows how to use five SELECT statement clauses. You must include these clauses in a SELECT statement in the following order:&lt;br /&gt;
&lt;br /&gt;
   1. Projection clause&lt;br /&gt;
   2. FROM clause&lt;br /&gt;
   3. WHERE clause&lt;br /&gt;
   4. ORDER BY clause&lt;br /&gt;
   5. INTO TEMP clause&lt;br /&gt;
&lt;br /&gt;
Only the Projection and FROM clauses are required. These two clauses form the basis for every database query because they specify the tables and columns to be retrieved. Use one or more of the other clauses from the following list:&lt;br /&gt;
&lt;br /&gt;
    * Add a WHERE clause to select specific rows or create a join condition.&lt;br /&gt;
    * Add an ORDER BY clause to change the order in which data is produced.&lt;br /&gt;
    * Add an INTO TEMP clause to save the results as a table for further queries.&lt;br /&gt;
&lt;br /&gt;
Two additional SELECT statement clauses, GROUP BY and HAVING, let you perform more complex data retrieval. They are introduced in Composing Advanced SELECT Statements.&lt;br /&gt;
Thanks &amp;amp; regards&lt;br /&gt;
Lokananth&lt;br /&gt;
[url=http://www.mioot.com]Live Chat Software[/url] By miOOt</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395221/395221/introducing-the-select-statement/</guid>
      <pubDate>Mon, 17 Aug 2009 03:21:13 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Auto increment value in Datagride</title>
      <link>http://www.programmersheaven.com/mb/database/395177/395177/auto-increment-value-in-datagride/</link>
      <description>&lt;span style="font-size: x-small;"&gt;hi!&lt;br /&gt;
I want to set id for Auto increment in datagride and when user delete the record the value decrement  . (if code with LINQ is better)&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395177/395177/auto-increment-value-in-datagride/</guid>
      <pubDate>Sun, 16 Aug 2009 00:49:06 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>MySQL Admin &amp; Query Browser</title>
      <link>http://www.programmersheaven.com/mb/database/395128/395128/mysql-admin--query-browser/</link>
      <description>I'M reading a book and MySQL but I need to load the datebase for the book before I can begin to use it. I have both files, create.sql, &amp;amp; populate.sql. I can't figure out how to load them into MySQL. The book suggested that I download MySQL Administrator &amp;amp; MySQL Query Browser, so I did. But I can't seem to login. In order to login to MySQL I just type in my password, but it seem to be more complicated to get into Query Browser or Administrator. Both programs want to know the following.&lt;br /&gt;
&lt;br /&gt;
Stored Connection&lt;br /&gt;
Server Host&lt;br /&gt;
Username&lt;br /&gt;
password&lt;br /&gt;
Default Schema&lt;br /&gt;
&lt;br /&gt;
I'M pretty sure my Server Host is "localhost", which is what I have it set to, but I'M not sure. Although I know my password, I don't know my username, the command based MySQL never ask me for my username. So how do I find out what it is?&lt;br /&gt;
And what is Default Schema? Thanks.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395128/395128/mysql-admin--query-browser/</guid>
      <pubDate>Fri, 14 Aug 2009 09:31:00 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>Trying to insert data using prepared statements in PHP.</title>
      <link>http://www.programmersheaven.com/mb/database/395093/395093/trying-to-insert-data-using-prepared-statements-in-php/</link>
      <description>&amp;lt;?php&lt;br /&gt;
$username = stripslashes($_POST['username']);&lt;br /&gt;
$password = stripslashes($_POST['password']);&lt;br /&gt;
$state = stripslashes($_POST['state']);&lt;br /&gt;
$state_code = stripslashes($_POST['state_code']);&lt;br /&gt;
$conn = new mysqli("localhost", "root", "icecold","test");&lt;br /&gt;
&lt;br /&gt;
if (mysqli_connect_errno()){&lt;br /&gt;
echo "Unable to connect to database&amp;lt;br&amp;gt;";&lt;br /&gt;
echo "Error ". mysqli_connect_errno() . " - ".mysqli_connect_error();&lt;br /&gt;
exit;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$username = mysqli_real_escape_string($conn, $_POST['username']);&lt;br /&gt;
$password = mysqli_real_escape_string($conn, $_POST['password']);&lt;br /&gt;
$state = mysqli_real_escape_string($conn, $_POST['state']);&lt;br /&gt;
$state_code = mysqli_real_escape_string($conn, $_POST['state_code']);&lt;br /&gt;
&lt;br /&gt;
$sql = "INSERT INTO user_records(username, password, state_code)&lt;br /&gt;
VALUES (?, ?, ?)";&lt;br /&gt;
$sql2 = "INSERT INTO states(states, state_code)&lt;br /&gt;
VALUES (?, ?)";&lt;br /&gt;
&lt;br /&gt;
// initialize prepared statement&lt;br /&gt;
$stmt = $conn-&amp;gt;stmt_init();&lt;br /&gt;
if ($stmt-&amp;gt;prepare($sql)) {&lt;br /&gt;
// bind parameters and execute statment&lt;br /&gt;
$stmt-&amp;gt;bind_param('sss', $username, $password, $state_code);&lt;br /&gt;
$stmt-&amp;gt;execute();&lt;br /&gt;
/* &lt;br /&gt;
if ($stmt-&amp;gt;prepare($sql2)) {&lt;br /&gt;
// bind parameters and execute statment&lt;br /&gt;
$stmt-&amp;gt;bind_param('ss', $states, $state_code);&lt;br /&gt;
$stmt-&amp;gt;execute(); &lt;br /&gt;
*/ &lt;br /&gt;
$conn-&amp;gt;close();&lt;br /&gt;
&lt;br /&gt;
echo $username."&amp;lt;/br&amp;gt;".$password."&amp;lt;/br&amp;gt;".$state_code."&amp;lt;
/br&amp;gt;".$state ;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
?&amp;gt; &lt;br /&gt;
&lt;a href="http://www.pass1000.com"&gt;PHP-certification:200-500&lt;/a&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395093/395093/trying-to-insert-data-using-prepared-statements-in-php/</guid>
      <pubDate>Thu, 13 Aug 2009 20:59:06 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
    <item>
      <title>IT efficiency can be improved with automated cloning</title>
      <link>http://www.programmersheaven.com/mb/database/395057/395057/it-efficiency-can-be-improved-with-automated-cloning/</link>
      <description>It is well known that creating clones manually is labor intensive process. But with the assistance of Solix's product we've been creating automated clones where clones are created and configured faster and with fewer errors. Solix also provides products and solutions for &lt;a href="http://www.solix.com/enterprise_data_archiving.htm"&gt;data archiving&lt;/a&gt;, etc.   &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/database/395057/395057/it-efficiency-can-be-improved-with-automated-cloning/</guid>
      <pubDate>Thu, 13 Aug 2009 02:22:36 -0700</pubDate>
      <category>Database &amp; SQL</category>
    </item>
  </channel>
</rss>