<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>ASP Free Forums - Microsoft SQL Server</title>
		<link>http://forums.aspfree.com/</link>
		<description>Microsoft SQL Server forum discussing administration and other SQL Server related topics. MS SQL Server is used for high performance and enterprise level applications.</description>
		<language>en</language>
		<lastBuildDate>Sun, 26 May 2013 07:18:39 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.aspfree.com/images/misc/rss.png</url>
			<title>ASP Free Forums - Microsoft SQL Server</title>
			<link>http://forums.aspfree.com/</link>
		</image>
		<item>
			<title>Making trigger</title>
			<link>http://forums.aspfree.com/microsoft-sql-server-14/making-trigger-538508.html</link>
			<pubDate>Sun, 19 May 2013 23:12:47 GMT</pubDate>
			<description>Hello, 
 
Im new with database and I have a question about a table with triggers or maybe a check constraint. Im using SQL Server Management studio. 
 
I have the following create tables: 
 
create table bid( 
seller               char(10)          not null, 
item_nummer    numeric(3)       not...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
Im new with database and I have a question about a table with triggers or maybe a check constraint. Im using SQL Server Management studio.<br />
<br />
I have the following create tables:<br />
<br />
create table bid(<br />
seller               char(10)          not null,<br />
item_nummer    numeric(3)       not null,<br />
)<br />
<br />
create table Item(<br />
startprice          char(5)           not null,<br />
description        char(22)          not null,<br />
start_date        char(10)          not null,<br />
end_date          char(10)          not null,<br />
seller                char(10)          not null,<br />
item_nummer     numeric(3)       not null,<br />
)<br />
<br />
What i'm trying to make is this trigger/constraint:<br />
colomn &quot;seller&quot; from table Item will get NULL as long as systemdate is &gt; start_date and end_date, then it will get the value from seller from table bid on the same item_nummer in both table).<br />
<br />
I hope i explained correctly what i mean.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/microsoft-sql-server-14/">Microsoft SQL Server</category>
			<dc:creator>Swirl_</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/microsoft-sql-server-14/making-trigger-538508.html</guid>
		</item>
		<item>
			<title>problem with connecting to mySQL</title>
			<link>http://forums.aspfree.com/microsoft-sql-server-14/problem-connecting-mysql-538503.html</link>
			<pubDate>Sat, 18 May 2013 19:05:08 GMT</pubDate>
			<description>Hi..i have a hosting space and database taken from net4india..when i try to connect to the database using the following codes i get a internal server error 500..i am not able to understand what exactly is the problem with the codes 
 
i have contacted the hosting company a number of times thy say...</description>
			<content:encoded><![CDATA[<div>Hi..i have a hosting space and database taken from net4india..when i try to connect to the database using the following codes i get a internal server error 500..i am not able to understand what exactly is the problem with the codes<br />
<br />
i have contacted the hosting company a number of times thy say its all fine check ur coading<br />
<br />
plz help!<br />
<br />
&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;TITLE&gt;Untitled Document&lt;/TITLE&gt; <br />
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=iso-8859-1&quot;&gt; <br />
&lt;/HEAD&gt;<br />
<br />
&lt;BODY BGCOLOR=&quot;#FFFFFF&quot;&gt;<br />
<br />
&lt;% <br />
Dim sConnection<br />
Dim oConnection<br />
Dim oRS <br />
<br />
sConnection = &quot;DRIVER={MySQL ODBC 3.51 Driver}; SERVER=00.00.000.00; DATABASE=xxxxxx; UID=xxxxxx;PASSWORD=xxxx; OPTION=3&quot; <br />
<br />
Set oConnection = Server.CreateObject(&quot;ADODB.Connection&quot;) <br />
<br />
oConnection.Open sConnection <br />
<br />
Set oRS = oConnection.Execute(&quot;SELECT * FROM Table&quot;)<br />
<br />
While Not oRS.EOF<br />
  Response.Write oRS(&quot;Name&quot;) <br />
  oRS.MoveNext<br />
Wend <br />
<br />
oRS.Close<br />
Set oRS = Nothing<br />
<br />
oConnection.Close<br />
Set oConnection = Nothing<br />
%&gt;<br />
<br />
<br />
<br />
<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/microsoft-sql-server-14/">Microsoft SQL Server</category>
			<dc:creator>zubair_sait</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/microsoft-sql-server-14/problem-connecting-mysql-538503.html</guid>
		</item>
		<item>
			<title>How to create a trigger to update data in another database</title>
			<link>http://forums.aspfree.com/microsoft-sql-server-14/how-create-trigger-update-data-another-database-538495.html</link>
			<pubDate>Thu, 16 May 2013 13:21:35 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I am new to creating a trigger in sql server so I need your help. 
 
I have 2 sites, 2 databases (same name) on 2 different servers, S1 & S2. These database are the same name, tables, data, 100% the same. 
 
I am using ASP to code. Currently, I have to enter data for each website, which...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am new to creating a trigger in sql server so I need your help.<br />
<br />
I have 2 sites, 2 databases (same name) on 2 different servers, S1 &amp; S2. These database are the same name, tables, data, 100% the same.<br />
<br />
I am using ASP to code. Currently, I have to enter data for each website, which is 2 times.<br />
<br />
How can I create a trigger so that everytime there is an update in database in Server1, then the database in Server2 gets updated.<br />
<br />
Thank you very much!</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/microsoft-sql-server-14/">Microsoft SQL Server</category>
			<dc:creator>jennypretty</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/microsoft-sql-server-14/how-create-trigger-update-data-another-database-538495.html</guid>
		</item>
	</channel>
</rss>
