<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EcoBuntu.org &#187; sybase</title>
	<atom:link href="http://www.ecobuntu.org/tag/sybase/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ecobuntu.org</link>
	<description>Tech tips...</description>
	<lastBuildDate>Thu, 25 Jun 2009 09:14:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Extend tempdb in Sybase</title>
		<link>http://www.ecobuntu.org/database/extend-tempdb-in-sybase/</link>
		<comments>http://www.ecobuntu.org/database/extend-tempdb-in-sybase/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 13:17:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[sybase]]></category>

		<guid isPermaLink="false">http://www.ecobuntu.org/?p=130</guid>
		<description><![CDATA[<br/>&#8220;The transaction log in database tempdb is almost full. Your transaction is being suspended until space is made available in the log.&#8221; If you are getting this error message you can extend tempdb running the following commands: disk init name ="extra_tempdb", physname ="/opt/sybase/data/extra_tempdb", vdevno=8, size=512000 alter database tempdb on extra_tempdb = 500 alter database tempdb [...]]]></description>
			<content:encoded><![CDATA[<br/><p>&#8220;<em>The transaction log in database tempdb is almost full. Your transaction<br />
is being suspended until space is made available in the log.</em>&#8221;</p>
<p>If you are getting this error message you can extend tempdb running the following commands:<br />
<code><br />
disk init name ="extra_tempdb", physname ="/opt/sybase/data/extra_tempdb", vdevno=8, size=512000<br />
alter database tempdb on extra_tempdb = 500<br />
alter database tempdb log on extra_tempdb = 500 </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecobuntu.org/database/extend-tempdb-in-sybase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I reset &#8216;sa&#8217; password in SYBASE</title>
		<link>http://www.ecobuntu.org/database/how-do-i-reset-sa-password-in-sybase/</link>
		<comments>http://www.ecobuntu.org/database/how-do-i-reset-sa-password-in-sybase/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 09:23:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[sybase]]></category>

		<guid isPermaLink="false">http://www.ecobuntu.org/?p=107</guid>
		<description><![CDATA[<br/>When SYBASE get started, the following call is made: startserver -f RUN_MYINSTANCE RUN_MYINSTANCE is located in $SYBASE_HOME/install. 1/ edit RUN_MYINSTANCE and add the following line, where the switches are: -psa 2/ run startserver -f RUN_MYINSTANCE During the boot phase you will see something like, e.g: New SSO password for sa:uvwxyz You can also see this [...]]]></description>
			<content:encoded><![CDATA[<br/><p>When SYBASE get started, the following call is made:</p>
<p>startserver -f RUN_MYINSTANCE</p>
<p>RUN_MYINSTANCE is located in $SYBASE_HOME/install.<br />
<strong><br />
1/ edit RUN_MYINSTANCE and add the following line, where the switches are:</strong></p>
<p>-psa </p>
<p><strong>2/ run startserver -f RUN_MYINSTANCE</strong></p>
<p>During the boot phase you will see something like, e.g:<br />
New SSO password for sa:uvwxyz</p>
<p>You can also see this message in Sybase logs.</p>
<p><strong>3/ edit RUN_MYINSTANCE and remove the line you added in step 1/, so you do not reset it next time.</strong><br />
<strong><br />
4/Set your own password:</strong></p>
<p>isql -Usa -SMYINSTANCE (using &#8216;uvwxyz&#8217; password)</p>
<p>>sp_password &#8220;uvwxyz&#8221;,&#8221;my_own_password&#8221;<br />
>go </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecobuntu.org/database/how-do-i-reset-sa-password-in-sybase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increasing the number of &#8216;user connections&#8217; in SYBASE</title>
		<link>http://www.ecobuntu.org/database/increasing-the-number-of-user-connections-in-sybase/</link>
		<comments>http://www.ecobuntu.org/database/increasing-the-number-of-user-connections-in-sybase/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 11:27:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[sybase]]></category>

		<guid isPermaLink="false">http://www.ecobuntu.org/?p=112</guid>
		<description><![CDATA[<br/>Default value : 25 $isql -Usa -SMYINSTANCE >sp_configure &#8216;user connections&#8217;, 100 No reboot is required since this option is dynamic. Changing the value of &#8216;number of user connections&#8217; to &#8217;100&#8242; increases the amount of memory ASE uses by 17740 K.]]></description>
			<content:encoded><![CDATA[<br/><p>Default value : 25</p>
<p>$isql -Usa -SMYINSTANCE</p>
<p><strong>>sp_configure &#8216;user connections&#8217;, 100</strong></p>
<p>No reboot is required since this option is dynamic.<br />
Changing the value of &#8216;number of user connections&#8217; to &#8217;100&#8242; increases the amount of memory ASE uses by 17740 K.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecobuntu.org/database/increasing-the-number-of-user-connections-in-sybase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stored Procedures in Sybase</title>
		<link>http://www.ecobuntu.org/database/stored-procedures-in-sybase/</link>
		<comments>http://www.ecobuntu.org/database/stored-procedures-in-sybase/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 11:16:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[sybase]]></category>

		<guid isPermaLink="false">http://www.ecobuntu.org/?p=101</guid>
		<description><![CDATA[<br/>sp_configure &#8211; set db parameters sp_dboption &#8211; set db options sp_displaylogin &#8211; Show login details sp_help object_name &#8211; Object definitions sp_helpdb dbname &#8211; db info sp_helpdevice - device info sp_helpindex - index per table info sp_helpprotect userid &#8211; Privileges info sp_helpsegment &#8211; Monitor db sizing sp_helptext stord_proc &#8211; Show stored procs code sp_helpuser userid - [...]]]></description>
			<content:encoded><![CDATA[<br/><p><strong>sp_configure</strong> &#8211; set db parameters</p>
<p><strong>sp_dboption</strong> &#8211; set db options</p>
<p><strong>sp_displaylogin</strong> &#8211; Show login details</p>
<p><strong>sp_help object_name</strong> &#8211; Object definitions</p>
<p><strong>sp_helpdb dbname</strong> &#8211; db info</p>
<p><strong>sp_helpdevice </strong>- device info</p>
<p><strong>sp_helpindex </strong>- index per table info</p>
<p><strong>sp_helpprotect userid</strong> &#8211; Privileges info</p>
<p><strong>sp_helpsegment</strong> &#8211; Monitor db sizing</p>
<p><strong>sp_helptext stord_proc</strong> &#8211; Show stored procs code</p>
<p><strong>sp_helpuser userid </strong>- User info</p>
<p><strong>sp_spaceused</strong> &#8211; db sizing</p>
<p><strong>sp_who userid</strong> &#8211; Users logged in info</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ecobuntu.org/database/stored-procedures-in-sybase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
