<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "How large is your helpdesk database"]]></title>
		<link>http://www.ilient.com/Sysforums/posts/list/59.page</link>
		<description><![CDATA[Latest messages posted in the topic "How large is your helpdesk database"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ We are using MS SQL 2005 and currently the size is almost 4 GB. (Been using Sysaid for 9 month now and have 3500 ServiceRequests)<br /> <br /> Anyone else that would like to comment. I don't know if this is normal]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10465.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10465.page</link>
				<pubDate><![CDATA[Tue, 9 Jun 2009 04:55:54]]> GMT</pubDate>
				<author><![CDATA[ JSH]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ Hey JSH.<br /> <br /> Please check what is the size of the SysAid database LDF file.<br /> If it is bigger then a few hundred MB, you can shrink it by backing up your database.<br /> <br /> 4GB is a pretty large size but can be reasonable if you are using SysAid to audit a large number of assets or if you attached a lot of files into SysAid.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10468.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10468.page</link>
				<pubDate><![CDATA[Tue, 9 Jun 2009 05:20:07]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ The LDF-file is only 3-4 MB<br /> <br /> Just did a shrink on it. (shrinking the database on a weekly basis)]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10469.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10469.page</link>
				<pubDate><![CDATA[Tue, 9 Jun 2009 05:22:49]]> GMT</pubDate>
				<author><![CDATA[ JSH]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ Hi JSH,<br /> <br /> same found [url=http://www.ilient.com/Sysforums/posts/list/2098.page#9964]here[/url] <img src="http://www.ilient.com/Sysforums/images/smilies/8a80c6485cd926be453217d59a84a888.gif" /><br /> <br /> I've posted almost the same question a few weeks ago.<br /> <br /> I think it is all about windows updates. Everytime a client gets a windows update the table 'computer_history' grows <img src="http://www.ilient.com/Sysforums/images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" /> No secret that every 2 weeks there are a few updates available which leads to that issue, that the size of the table 'computer' gets added to the table 'computer_history'... and on my installation this is growing the database... <br /> <br /> So I've started a [url=http://www.ilient.com/Sysforums/posts/list/2176.page#10304]Feature Request[/url] to avoid those updates being logged, hoping that it'll keep my database lean. <br /> <br /> Can you find out WHAT database table is growing that fast?<br /> I found a real nice stored procedure* around the internet and will attach it here for your convenience <img src="http://www.ilient.com/Sysforums/images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" /><br /> <br /> Best regards,<br /> <br /> EbroIN<br /> <br /> [edit]<br /> * = This is only the executed part of the stored procedure! You must generate a stored procedure for your database to integrate this script! Thanks to JSH he informed me about my ambiguous post here. So create a new stored procedure and post the SQL statemenents here. I've left all comments from the author inside this script (as told, I've found this script in the internet).<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10472.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10472.page</link>
				<pubDate><![CDATA[Tue, 9 Jun 2009 06:25:12]]> GMT</pubDate>
				<author><![CDATA[ EbroIN]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ When running the SQL as a new query I get the error :<br /> <br /> Msg 102, Level 15, State 1, Line 46<br /> Incorrect syntax near 'END'.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10473.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10473.page</link>
				<pubDate><![CDATA[Tue, 9 Jun 2009 06:57:43]]> GMT</pubDate>
				<author><![CDATA[ JSH]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ [quote=JSH]When running the SQL as a new query I get the error :<br /> Msg 102, Level 15, State 1, Line 46<br /> Incorrect syntax near 'END'.[/quote]<br /> <br /> Oops, copied too much. You have to include this query into a stored procedure or this won't work. <br /> I've removed the END command so this won't bother you anymore -&gt; Thanks.<br /> <br /> I cannot provide a complete SQL Solution for you, so you need to use SQL Studio Express (or something like this) in order to wrap this script inside such a wrapper (assuming your database is named ilient as default):<br /> <br /> [code]<br /> USE [ilient]<br /> GO<br /> SET ANSI_NULLS ON<br /> GO<br /> SET QUOTED_IDENTIFIER ON<br /> GO<br /> CREATE PROCEDURE [dbo].[helpers_tableInfo]<br /> AS<br /> 	BEGIN<br /> 		SET NOCOUNT ON<br /> <br /> /* NOW PASTE THE ABOVE SCRIPT IN HERE! */<br /> <br /> 	END<br /> [/code]<br /> <br /> This will create a stored procedure....<br /> <br /> You then need to execute the stored procedure with the following SQL commands (still assuming that your database is named ilient and the freshly created stored procedure is named helpers_tableInfo)<br /> <br /> [code]<br /> USE ilient<br /> GO<br /> EXECUTE helpers_tableInfo<br /> GO<br /> [/code]<br /> <br /> Alternatively you can simply create a new stored procedure using the SQL Server Management Studio.<br /> <br /> SQL Server Management Studio --&gt; Ilient --&gt; Programmability --&gt; Stored Procedures &lt;-- RIGHT CLICK<br /> Select --&gt; New stored procedure<br /> <br /> Paste the above code (including the pasted script - use the text editor of your choice) inside the Query Window (clear all existing code before) and hit APPLY only ONCE. This will create the procedure.<br /> <br /> Afterwards you need to refresh the view (hit F5) and right click on your new stored procedure (it should show up by now).<br /> Select --&gt; Execute stored procedure --&gt; Confirm with OK<br /> <br /> This should do the trick...<br /> <br /> I'll just modify my previous post and cut the last line (containing the END command)<br /> <br /> Hope this helps,<br /> <br /> best regards, EbroIN<br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10474.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10474.page</link>
				<pubDate><![CDATA[Tue, 9 Jun 2009 07:13:39]]> GMT</pubDate>
				<author><![CDATA[ EbroIN]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ Just got another version of the SQL-statement and now I have the stored procedure - result:]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10494.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10494.page</link>
				<pubDate><![CDATA[Wed, 10 Jun 2009 02:13:08]]> GMT</pubDate>
				<author><![CDATA[ JSH]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ We have 10k service request and our sql server database in simple recovery mode have 3330 MB]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10495.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10495.page</link>
				<pubDate><![CDATA[Wed, 10 Jun 2009 02:52:34]]> GMT</pubDate>
				<author><![CDATA[ Mucho]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ Hi,<br /> <br /> back from my short holiday,<br /> <br /> my database hasn't grown too much, waiting for the update cycle today <img src="http://www.ilient.com/Sysforums/images/smilies/8a80c6485cd926be453217d59a84a888.gif" />...<br /> <br /> best regards,<br /> <br /> EbroIN]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10624.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10624.page</link>
				<pubDate><![CDATA[Tue, 16 Jun 2009 02:03:17]]> GMT</pubDate>
				<author><![CDATA[ EbroIN]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ We have nearly 600 service requests, and a database on 1 GB, still in the built in Derby database.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10626.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10626.page</link>
				<pubDate><![CDATA[Tue, 16 Jun 2009 02:46:19]]> GMT</pubDate>
				<author><![CDATA[ DK_Sysaider]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ [quote=DK_Sysaider]We have nearly 600 service requests, and a database on 1 GB, still in the built in Derby database.[/quote]<br /> <br /> Hi DK_Sysaider,<br /> <br /> how many assets are you monitoring using sysaid? <br /> I suppose that computer_history is the "largest" table within my complete configuration...<br /> <br /> Greetings - EbroIN]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10627.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10627.page</link>
				<pubDate><![CDATA[Tue, 16 Jun 2009 05:29:44]]> GMT</pubDate>
				<author><![CDATA[ EbroIN]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ Hello everyone.<br /> <br /> We have found that the "computer history" can grow too much in size on some cases.<br /> We have identified the issue and we are working on a minor patch that will resolve this issue.<br /> <br /> Meanwhile, if the computer history grow too much you can truncate it to keep the database size down until the fix will be available.<br /> <br /> We are very sorry for the inconvenience<br /> <br /> Best regards.<br /> Haim ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10633.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10633.page</link>
				<pubDate><![CDATA[Tue, 16 Jun 2009 06:50:52]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ [quote=Haim]...we are working on a minor patch that will resolve this issue.[/quote]<br /> <br /> Hi Haim,<br /> <br /> thanks for your feedback...<br /> <br /> Would you please inform us, when this patch is available?<br /> <br /> Thanks]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10680.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10680.page</link>
				<pubDate><![CDATA[Thu, 18 Jun 2009 06:30:08]]> GMT</pubDate>
				<author><![CDATA[ EbroIN]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ [quote=EbroIN][quote=DK_Sysaider]We have nearly 600 service requests, and a database on 1 GB, still in the built in Derby database.[/quote]<br /> <br /> Hi DK_Sysaider,<br /> <br /> how many assets are you monitoring using sysaid? <br /> I suppose that computer_history is the "largest" table within my complete configuration...<br /> <br /> Greetings - EbroIN[/quote]<br /> <br /> Sorry for the late responds, we are monitoring about 70 Assets..<br /> I think it's is, we have one problem in the Activity log, this is shown all over:<br /> <br /> [list]Software Product Windows Genuine Advantage Validation Tool (KB892130) version changed from null to 1.7.0069.2  [/list]<br /> Being "updated" at every inventory check, at the most assets. It gives quite an log I guess <img src="http://www.ilient.com/Sysforums/images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />. <br /> I saw something earlier on the forum that there was a fix for this underway, and it could be in the version 6, but its still an issue.<br /> But we can live with it. <img src="http://www.ilient.com/Sysforums/images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10681.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10681.page</link>
				<pubDate><![CDATA[Thu, 18 Jun 2009 07:00:49]]> GMT</pubDate>
				<author><![CDATA[ DK_Sysaider]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ DK_Sysaider,<br /> <br /> Please check if you are using version 6 of the agent on the machines who are having this issue as this issue should have been resolved in version 6 of the agent.<br /> <br /> EbroIN,<br /> We have postponed the official release of patch 6.0.07 to include this fix in the final edition, I hope we will have the patch ready by the end of the week.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10713.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10713.page</link>
				<pubDate><![CDATA[Sun, 21 Jun 2009 03:03:35]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ [quote=Haim]<br /> We have postponed the official release of patch 6.0.07 to include this fix in the final edition, I hope we will have the patch ready by the end of the week.[/quote]<br /> <br /> is it going to have a different version number then when it is finally released? as some of us are already on 6.07,  and that is going to get confusing if there are 2 versions with the same number.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10723.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10723.page</link>
				<pubDate><![CDATA[Sun, 21 Jun 2009 16:25:55]]> GMT</pubDate>
				<author><![CDATA[ techguy]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ [quote=Haim]DK_Sysaider,<br /> <br /> Please check if you are using version 6 of the agent on the machines who are having this issue as this issue should have been resolved in version 6 of the agent.<br /> [/quote]<br /> <br /> I thought so I read this should been fixed in v6, but I do still have this problem. But I'll try and check the computers still reporting it, how do you check the version of the agent on a computer?]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10727.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10727.page</link>
				<pubDate><![CDATA[Mon, 22 Jun 2009 02:01:57]]> GMT</pubDate>
				<author><![CDATA[ DK_Sysaider]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ [quote=DK_Sysaider][quote=Haim]DK_Sysaider,<br /> <br /> Please check if you are using version 6 of the agent on the machines who are having this issue as this issue should have been resolved in version 6 of the agent.<br /> [/quote]<br /> <br /> I thought so I read this should been fixed in v6, but I do still have this problem. But I'll try and check the computers still reporting it, how do you check the version of the agent on a computer?[/quote]<br /> <br /> The best way to see the agent version is to add the "SysAid agent version" column to the asset list using the "customize list" button.<br /> <br /> Let me know on what you find<br /> <br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10728.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10728.page</link>
				<pubDate><![CDATA[Mon, 22 Jun 2009 06:41:45]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ Did you miss my question above?]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10730.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10730.page</link>
				<pubDate><![CDATA[Mon, 22 Jun 2009 07:22:32]]> GMT</pubDate>
				<author><![CDATA[ techguy]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ [quote=Haim]<br /> The best way to see the agent version is to add the "SysAid agent version" column to the asset list using the "customize list" button.<br /> <br /> Let me know on what you find<br /> <br /> Haim[/quote]<br /> <br /> Okay thank you Haim. <br /> I was sure I had a regular agent update scheduled long time ago when I moved SysAid, but must have forgotten to save. I also forgot to update the package for our group policy, so new computers get the old version. I ran a update and scheduled one every week, and the agents are updating just fine now, and I think the problem with changing version from null stopped at least it looks like. I'll monitor it the following days, but think its okay now.<br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10732.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10732.page</link>
				<pubDate><![CDATA[Mon, 22 Jun 2009 08:13:49]]> GMT</pubDate>
				<author><![CDATA[ DK_Sysaider]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ [quote=techguy]Did you miss my question above?[/quote]<br /> <br /> Hey Techguy.<br /> <br /> The next patch that will be released will not be called 6.0.07, i'm not sure what will be the official name, and i will let you know in the next few days when it will be released.<br /> <br /> Best regards.<br /> Haim<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/10734.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/10734.page</link>
				<pubDate><![CDATA[Mon, 22 Jun 2009 09:32:06]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How large is your helpdesk database</title>
				<description><![CDATA[ well, two month later, running on Sysaid Server 6.0.0.7 and clientAgent 6.0.0.7<br /> <br /> Our database is now 8.2 GB, which I think i alarming. Shrinking the DB will only give us 5 MB.<br /> <br /> What to do?? is there no other way than a complete reinstall on a new DB?? ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/12074.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/12074.page</link>
				<pubDate><![CDATA[Tue, 25 Aug 2009 03:28:08]]> GMT</pubDate>
				<author><![CDATA[ JSH]]></author>
			</item>
			<item>
				<title>How large is your helpdesk database</title>
				<description><![CDATA[ JSH,<br /> <br /> Please upgrade to version 6.0.09.<br /> Also, if you are using MS-SQL, please check the size of the log file (LDF file), and if it take a big size, you can shrink it by backing up your database.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/2211/12097.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/2211/12097.page</link>
				<pubDate><![CDATA[Tue, 25 Aug 2009 10:13:18]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
	</channel>
</rss>
