﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQLServerCentral.com / Suggestions </title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Thu, 24 May 2012 13:33:18 GMT</lastBuildDate><ttl>20</ttl><item><title>Please fix the "Pretty Print" class in the forums and the article "Contribution Center"</title><link>http://www.sqlservercentral.com/Forums/Topic1246935-4-1.aspx</link><description>One of the things I like the most about SQLServerCentral.com is how easy is usually is to post formatted code.  It's come a long way but there are still some problems with the "Pretty Print" class code block both in the forums and the article "Contribution Center".  I don't know if it's possible but it would be a wonderful thing if some of these minor problems could be repaired in the near future.1. Neither preserves the color of comments when an apostrophe is present in the comment.  Instead, it reads the apostrophe as a single quote and colors everything after that Red.  For example…[code="sql"]WITHcteSomeCTE AS(--==== This is Jeff's 1st test comment SELECT yadayada   FROM sometable)--==== This Jeff's 2nd test comment SELECT *   FROM cteSomeCTE;[/code]2. Observing the same example above, neither preserves comments when the comment is a trailing comment immediately after either a left or right parenthesis.  The work around, of course, is to insert a space between the parenthesis and the first dash of the comment but most folks don't expect this.3. Both use light gray coloring for some symbology which, at best, is difficult to read.  See the NULL, parenthesis, and the mathematical operatior in the following.[code="sql"] SELECT ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) + 1;[/code]Further, some of the functions also appear in light gray (Left and Right below).[code="sql"]ABS()SUBSTRING()LEFT()RIGHT()CHARINDEX()PATINDEX()SIGN()SUM()[/code]4. In the "Contribution Center", by default, if a line is long enough to trigger the scroll bars, it also makes the code block window much too long.  This can be (apparently) manually adjusted in the contribution center but only if the width of the window is small enough (it usually is) so that you're actually aware of the problem.  This problem no longer appears on the forums.5. During copy and paste operations from such a rendered code block, the code appears as a single line when pasted into SSMS.  There was a time when this all worked perfectly and wonder if it can be brought back.6. Occasionally, characters such as "&amp;lt;", "&amp;gt;", etc show up as their entitized value instead of being displayed correctly. (or course, it works correctly for me now... go figure).[code="sql"] SELECT *    FROM sometable  WHERE A &amp;lt; B[/code]As a sidebar, most of these problems where repaired in previous editions of the code blocks and the latest "upgrade" has resurrected these problems.</description><pubDate>Sat, 04 Feb 2012 14:29:30 GMT</pubDate><dc:creator>Jeff Moden</dc:creator></item><item><title>Member should be able to mark post as "Answered".</title><link>http://www.sqlservercentral.com/Forums/Topic1287476-4-1.aspx</link><description>I feel without marking a post as "Answered", it always doubtful whether the answer submitted proved useful or not.My suggestion is to have a top-level category: Answered. There can be two or more correct answers, so the member should be able to mark:- Best Answer- Alternate or something like that.</description><pubDate>Fri, 20 Apr 2012 13:56:05 GMT</pubDate><dc:creator>Rohit Khare</dc:creator></item><item><title>Can we have Android &amp; IOS mobile App please</title><link>http://www.sqlservercentral.com/Forums/Topic1239187-4-1.aspx</link><description>Hi All,Can some one please take an initiative to build mobile app for this site. and include forum discussion &amp; QotD &amp; few other articles in App to begin with. It would be such an asset to have it on the go.I can try in generating funding if required.Thanks,</description><pubDate>Thu, 19 Jan 2012 20:41:20 GMT</pubDate><dc:creator>Dhruvesh Shah</dc:creator></item><item><title>Filter the contribution center</title><link>http://www.sqlservercentral.com/Forums/Topic1221945-4-1.aspx</link><description>Please, please can we either get a filter on the contribution center for blog posts/articles/scripts/QotD or can they be listed separately? It's incredibly hard now to search through all the blog posts for the articles (when looking for a link to post in the forum)</description><pubDate>Wed, 14 Dec 2011 12:13:47 GMT</pubDate><dc:creator>GilaMonster</dc:creator></item><item><title>Sharing new things from other websites</title><link>http://www.sqlservercentral.com/Forums/Topic1217814-4-1.aspx</link><description>Is there any way by which we could share some interesting things which we come across from other sites.Like today, I came across this link which I found to be really informative. If I am not wrong, SQL Server is used as backend database in some critical applications for NASDAQ, Hilton, FAC etc. I thought it would be nice to have a discussion where we could get points from members regarding usage of SQL server as a backend database for mission critical applications.[url=http://gigaom.com/cloud/facebook-shares-some-secrets-on-making-mysql-scale/]link[/url]I was just wondering if there is any way we could share any new things especially from other sites apart from writing blogs or forums?</description><pubDate>Wed, 07 Dec 2011 06:00:03 GMT</pubDate><dc:creator>mohammed moinudheen</dc:creator></item><item><title>Suggestion: Let author of thread flag thread as "solved", along with post within thread as "solution"</title><link>http://www.sqlservercentral.com/Forums/Topic1128401-4-1.aspx</link><description>Hi all,Simple suggestion, though one which I'm not sure is possible under the current forum structure.It would be very neat if there were to be a way for the author of a thread to indicate that their problem was solved, and have that indication be visible from the main forum menu. This would allow people who are looking to aid others, to look at the threads which do not have a solution already posted, or, alternatively, for people who are looking for solutions, to glance at the threads which are already marked as solved.Also, would be nice to have the solution post within the thread be markable by the author as well.These are suggestions in the same vein that the social.msdn.microsoft.com forums have going.</description><pubDate>Mon, 20 Jun 2011 10:52:45 GMT</pubDate><dc:creator>kramaswamy</dc:creator></item><item><title>Solution - Decreasing initial datafile size of an user database</title><link>http://www.sqlservercentral.com/Forums/Topic1187384-4-1.aspx</link><description>The following issue occurred:The datafile of the database has an initial size of 48GB while the data only occupies 29GB of the file.DBCC SHRINKFILE only shrinks the MDF file to the initial size, but doesn't release the space held by the initial filesize or decreases the size of the datafile. Database files are not meant to be shrunk, however sometimes the  "overhead" of free space claimed is not in scope with the size of the database.Following steps solved the issue for me:* Make a full database backup, of the database you want to change.* Make sure you have sysadmin rights and bring the database into [u]restricted user mode[/u].* Select tasks --&amp;gt; shrink --&amp;gt; files from the database menu.* Choose the “Reorganize pages before...” option and enter the desired file size.   Make sure the file size is larger than the minimum needed space for the data.* Check the properties of the database files and decrease the initial size of the datafile (if not already changed)* After finishing bring the database back in Multi User mode.This shrinks the files to the desired file size, without having to migrate data between datafiles (empty file solution) or having to bring the database or instance down.As any DBA can tell you, be aware of (and know) what you're doing, before you start an action like this. It's not certain this will solve a similar issue for anyone else, but it's worth to investigate.</description><pubDate>Fri, 07 Oct 2011 14:27:26 GMT</pubDate><dc:creator>arjen.schrier</dc:creator></item><item><title>Notifications email</title><link>http://www.sqlservercentral.com/Forums/Topic1184823-4-1.aspx</link><description>I have recently started to try and answer a few questions on the different forums.  I have found that the Notification email is a bit cryptic.  So my suggestion would be to add the first 255 characters of the new post to the email.  In some cases it would help identify which post is what.</description><pubDate>Mon, 03 Oct 2011 13:26:26 GMT</pubDate><dc:creator>bkubicek</dc:creator></item><item><title>SQL Server Website</title><link>http://www.sqlservercentral.com/Forums/Topic1171805-4-1.aspx</link><description>Have a way so that i can see all the Topics that i posted and am subscribed to.</description><pubDate>Thu, 08 Sep 2011 08:46:36 GMT</pubDate><dc:creator>kapfundestanley</dc:creator></item><item><title>Stairway to XML</title><link>http://www.sqlservercentral.com/Forums/Topic1166754-4-1.aspx</link><description>I'm sure I'm not the only SQL Admin to look at the XML Datatype and respond "Ugh!"In my recent reading, I'm starting to get the hint that there might be something to this XML thing-- it's not just a buzzword from a previous decades.  How about a series of articles which starts with 1. an introduction to XML and explains the important parts of XML (it looks like HTML, but obviously it's different)...   continuing with 2. The XML Datatypethen3. Creating XML Indexes ('cause them seem to be different from normal indexes in the same way that full-text indexes different from normal indexes.)and4. Generating XML from Queries.and I'm hoping somewhere in there that XSD will be explained.And I have the sneaking suspicion that there is more to the topic, but I've barely scratched the surface.  I don't yet know what I don't know!(I toss this out there in case there are some terribly smart potential series writers looking for a topic.  :-) )</description><pubDate>Sun, 28 Aug 2011 20:12:52 GMT</pubDate><dc:creator>Rich Weissler</dc:creator></item><item><title>Stairway to SQL Security</title><link>http://www.sqlservercentral.com/Forums/Topic1163486-4-1.aspx</link><description>First I'll say that the Stairway series of articles are one of the most useful set of resources I've seen on-line for SQL.  I'm one of those 'Accidental DBAs' who is trying to make good.  I'm actually a little surprised there isn't already a Stairway series for SQL Security, but might suggest it as a viable topic.Possible topics (off the top of my head as a neophyte) might include:[b]Logins, Users, Schema, and Roles[/b]Building [b]Custom Roles[/b]Using [b]Schemas, Views[/b], and protecting data[b]Procedure [/b]scope[b]Certificates [/b]in SQL - creation, use, and gotchas[b]Backups, Restores, and Storage[/b] - (More than just backing up the database... what to store, and what not to keep together.)[b]Encryption[/b] - TDE, encrypting pwds/credit card numbers, etc.And I'm sure there are books worth of other advanced topics that I don't even know to reference yet...</description><pubDate>Mon, 22 Aug 2011 10:55:55 GMT</pubDate><dc:creator>Rich Weissler</dc:creator></item><item><title>Forum Topic Twitter Feed</title><link>http://www.sqlservercentral.com/Forums/Topic875661-4-1.aspx</link><description>I've found the RSS feeds can be somewhat flaky, how about setting up a process that would post to twitter with a search tag dependent upon the forum and include the subject? This would just be based upon a new topic being submitted and not based upon individual posts.Example based upon this topic:  [code="plain"]Forum Topic Twitter Feed #SSCSuggest[/code]Other example search tags:[ul][li]#SSC2K8Gen - SQL 2008 General[/li][li]#SSC2K8TSQL - SQL 2008 T-SQLl[/li][li]#SSC2K5Sec - SQL 2005 Security[/li][/ul]Nic</description><pubDate>Tue, 02 Mar 2010 21:02:06 GMT</pubDate><dc:creator>Nicholas Cain</dc:creator></item><item><title>How to add a signature to forum posts.</title><link>http://www.sqlservercentral.com/Forums/Topic1158611-4-1.aspx</link><description>I'm searching all over and don't see anything for profile.   I see my account, but that only has the ability for me to change my name and password.   I see others with signatures or is that someone pasting from notepad each time?Gavin</description><pubDate>Thu, 11 Aug 2011 09:55:13 GMT</pubDate><dc:creator>Gavin Landon</dc:creator></item><item><title>Mreging forum accounts</title><link>http://www.sqlservercentral.com/Forums/Topic1153473-4-1.aspx</link><description>Embarrassingly, I appear to have registered, over time, with more than 1 account. Searching for "merge forum accounts" brought up ton's on merge repliciation, and the ,erge statement, but nothing to help me.Not sure if I'm the only one silly enough to have done this - would be great to "de-dup"/"merge" my accounts together...Thoughts? Links to where to do this if it is already possible</description><pubDate>Wed, 03 Aug 2011 06:49:00 GMT</pubDate><dc:creator>Regan Galbraith</dc:creator></item><item><title>SQL Azure</title><link>http://www.sqlservercentral.com/Forums/Topic839627-4-1.aspx</link><description>Hi!I think that it would be better if we have also the section for the SQL Azure in SQL Server 2008 forum, because we know that SQL Azure will be the Cloud Database Server in the near future, also the SQL Server R2 has done some changes especially for SQL Azure purposes!I think that many users have seen the articles and news for the SQL Azure, and maybe they want to know more about or to explain anything that is avaiable with SQL Azure &amp; SQL Server 2008 R2 etc.Finally I suggest one section for SQL Azure, in SQL Server 2008!;-)</description><pubDate>Mon, 28 Dec 2009 15:38:57 GMT</pubDate><dc:creator>Dugi</dc:creator></item><item><title>New code IFCode</title><link>http://www.sqlservercentral.com/Forums/Topic1120503-4-1.aspx</link><description>Add IFCode support for:&amp;gt; PowerShell: &amp;#91;code="ps"] or &amp;#91;code="powershell"]&amp;gt; Windows Cmd Shell: &amp;#91;code="windows-cmd"] or &amp;#91;code="cmd"]I know it's been posted before in this forum but it would also be great to get [url=http://www.sqlservercentral.com/Forums/Skins/Classic/Dialogs/InsertIFCode.aspx?ControlID=txtPost]this page[/url] updated to show all currently available IFCodes (e.g. C# is still missing).</description><pubDate>Mon, 06 Jun 2011 12:05:17 GMT</pubDate><dc:creator>opc.three</dc:creator></item><item><title>Who's On link</title><link>http://www.sqlservercentral.com/Forums/Topic1118421-4-1.aspx</link><description>Please remove anonymous and google.com from displaying in the who's on list.  They're useless to end users who just want to poke around and see if certain people are active or not, and they bloat the list to near unusability.</description><pubDate>Wed, 01 Jun 2011 15:05:22 GMT</pubDate><dc:creator>Evil Kraig F</dc:creator></item><item><title>Question of the Day Suggestions</title><link>http://www.sqlservercentral.com/Forums/Topic1092873-4-1.aspx</link><description>Hi everyoneI've submitted a few QotDs now and some have proved more popular than others. I'd therefore be interested to know what sort of questions people like, any formats they prefer, subject matter they like and so on. That way people who feel like submitting questions have some idea as to what might be useful or interesting to others.If anyone has criticisms of questions that would be interesting too, although it would be better to keep it constructive!Duncan</description><pubDate>Wed, 13 Apr 2011 08:33:25 GMT</pubDate><dc:creator>Duncan Pryde</dc:creator></item><item><title>Unable to Start SQL Server service for SQL 2005 Server</title><link>http://www.sqlservercentral.com/Forums/Topic1091329-4-1.aspx</link><description>Hi,Not able to start the SQL server service its throwing an error in log file asError :3414,Severity :21 ,State:2An error occured during recovery, preventing the databese 'Master' (databse ID 1) from restarting.Diagnose the recovery errors and fix them, or restore  from a known good backup.I don't have the backup and  not even able to get login as the sql server service itself is not starting.Thanks.</description><pubDate>Mon, 11 Apr 2011 04:40:26 GMT</pubDate><dc:creator>hidayath</dc:creator></item><item><title>Subscribed Topics list</title><link>http://www.sqlservercentral.com/Forums/Topic1090365-4-1.aspx</link><description>We've got recent posts and the like, but I'd like to see an option that would bring up my 'subscribed topics', say with the last four pages of them in recent postings.  I seem to lose posts a lot (recent posts/daily don't always show everything) and that would help me keep track of the posts I've responded to.</description><pubDate>Thu, 07 Apr 2011 22:01:29 GMT</pubDate><dc:creator>Evil Kraig F</dc:creator></item><item><title>SQL Architecture Articles</title><link>http://www.sqlservercentral.com/Forums/Topic748523-4-1.aspx</link><description>Hi,    I did not find any articles related to sql server 2005 architecture here. Even in the forums when a user ask about the sql architecture I had seen replies that ask the user to refer BOL. But why dont we have an article which explains sql server architecture. Because most people rely on SSC rather than BOL and in BOL it is difficult for a newbie to understand the architecture.</description><pubDate>Tue, 07 Jul 2009 07:23:10 GMT</pubDate><dc:creator>Chand00</dc:creator></item><item><title>Suggestion: Tweet this topic button</title><link>http://www.sqlservercentral.com/Forums/Topic1090359-4-1.aspx</link><description>I have seen the SSC twitter account post some of the topic questions that have gotten posted but not alot of answers too, or that where interesting.  I would do the same thing every-now-and-then as well if I learned something from the post or new someone on twitter that may have had the same issue.I don't know if you could do it where it would post automatically to the user's Twitter account with some default message like "Hey you should check this SSC topic out: link", or just offer us a short URL link to copy to Tiwtter.com, Seesmic, or TweetDeck.Just a thought late at night...</description><pubDate>Thu, 07 Apr 2011 21:23:36 GMT</pubDate><dc:creator>Shawn Melton</dc:creator></item><item><title>New Forum Suggestion: 2008 Integration Services</title><link>http://www.sqlservercentral.com/Forums/Topic1080693-4-1.aspx</link><description>I think we are missing a forum specific to "SQL Server 2008 Integration Services". A couple options that popped in:Option 1:    a. Create a new Forum called "Integration Services" (similar to what we have for "Reporting Services")    b. Move "SQL Server 2005 Integration Services" from the "SQL Server 2005" forum into this new forum    c. Add new "SQL Server 2008 Integration Services" forum to this new forumOption 2:    a. Add new "SQL Server 2008 Integration Services" forum to existing "SQL Server 2008" forum</description><pubDate>Fri, 18 Mar 2011 13:53:38 GMT</pubDate><dc:creator>opc.three</dc:creator></item><item><title>SQL Beginner</title><link>http://www.sqlservercentral.com/Forums/Topic300762-4-1.aspx</link><description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm a beginner with SQL Server 2005 and trying to complete a project with the following question, can someone please help?&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in"&gt;&lt;FONT face="Times New Roman" size=3&gt;Use AdventureWorks database and HumanResources.Department table.&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman" size=3&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in"&gt;&lt;FONT face="Times New Roman" size=3&gt;Create a stored procedure called spDepartmentAddUpdate.&lt;SPAN style="mso-spacerun: yes"&gt;  &lt;/SPAN&gt;This procedure accepts two parameters: Name, and GroupName.&lt;SPAN style="mso-spacerun: yes"&gt;  &lt;/SPAN&gt;The data types are VarChar(50), and VarChar(50) respectively.&lt;SPAN style="mso-spacerun: yes"&gt;  &lt;/SPAN&gt;Define logic in this procedure to check for an existing Department record with the same Name.&lt;SPAN style="mso-spacerun: yes"&gt;  &lt;/SPAN&gt;If the department record exists, update the GroupName and ModifiedDate. Otherwise, insert a new department record.&lt;/FONT&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in"&gt;&lt;o:p&gt;&lt;FONT face="Times New Roman" size=3&gt; &lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;OL style="MARGIN-TOP: 0in" type=A&gt;&lt;LI class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;FONT face="Times New Roman" size=3&gt;Execute your stored procedure to show that the insert logic works.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;FONT face="Times New Roman" size=3&gt;Execute your stored procedure to show that the update logic works.&lt;/FONT&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-pagination: none; mso-layout-grid-align: none"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;Note:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; mso-pagination: none; mso-layout-grid-align: none"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 42pt; TEXT-INDENT: -24pt; mso-pagination: none; mso-list: l1 level1 lfo2; tab-stops: list 42.0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Courier New'"&gt;&lt;SPAN style="mso-list: Ignore"&gt;1.&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;        &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;DepartmentID is an identity column.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 42pt; TEXT-INDENT: -24pt; mso-pagination: none; mso-list: l1 level1 lfo2; tab-stops: list 42.0pt; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Courier New'"&gt;&lt;SPAN style="mso-list: Ignore"&gt;2.&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;        &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;You may use GETDATE() to insert or update the modified date.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description><pubDate>Wed, 09 Aug 2006 22:05:00 GMT</pubDate><dc:creator>Sean Anderson</dc:creator></item><item><title>Stairway series on SQL Server Data Modelling</title><link>http://www.sqlservercentral.com/Forums/Topic1076030-4-1.aspx</link><description>HiPlease start a Stairway series on SQL Server Data Modelling.That will help a lot...Stairway series is a super hit..!! Thanks a lot SSC!!</description><pubDate>Thu, 10 Mar 2011 00:04:24 GMT</pubDate><dc:creator>Junglee_George</dc:creator></item><item><title>Email Notification message body contents</title><link>http://www.sqlservercentral.com/Forums/Topic1066039-4-1.aspx</link><description>I understand this may cause overhead but just wanted to ask anyway...The message that is received once you post to a forum tells you that someone has posted a new reply. It then goes to provide the link to see it and a link to unscribe if desired. I was curious if the body/contents of the new reply/post, either partially or in full, could be added to that email notification? An example of what I am speaking of is the email notification sent out with Ask.SQLServerCentral.com, it tells me if a new comment was added to something I posted.This is not necessarily lazyness talking but in some situations you may be viewing your emails and not be able to access SSC immediatly. If the email notification included some or all of the text in the post/reply it would help in telling you if you needed to make post a reply right then to continue helping the original poster or if it could wait. There are a few people that try to respond in a timely manner when helping someone out and I just thought it might be more efficient for us to see the response.</description><pubDate>Thu, 17 Feb 2011 15:01:30 GMT</pubDate><dc:creator>Shawn Melton</dc:creator></item><item><title>Original message viewable when replying</title><link>http://www.sqlservercentral.com/Forums/Topic1059067-4-1.aspx</link><description>When replying to a message would it be possible to still be able to view the message you're replying to, so you can see the original message to refer to in your reply? An extreme example would be the Microsoft Technet forums, though I think that could be argued to be somewhat overkill with the mass of javascript / ajax they seem to use to do it. Simply including the post you're replying to at the bottom would be great.</description><pubDate>Fri, 04 Feb 2011 15:25:56 GMT</pubDate><dc:creator>Keith Langmead</dc:creator></item><item><title>SSRS Chart Line With Markets</title><link>http://www.sqlservercentral.com/Forums/Topic1044972-4-1.aspx</link><description>hello !i running .rdl report with chart line with markets.in the chart i define : series group - QCTypeIdcategroy group - timeStampvalues - valActual here is data for exaple :QCTypeId    timeStamp    valActual======================2    , 22/11/2010     , 52    ,23/11/2010      , 62    ,24/11/2010      , 73    ,22/11/2010      , 83    ,24/11/2010     , 10the problem is that the graph is draw all the markets but without all the lines.if i filter the report to view just the data for QCTypeId = 2 i see three points with lines between them. if i filter the report to view just the data for QCTypeId = 3 i see two points with line between them. but if i filter the report to view  QCTypeId = 2, 3 i see all the points but with lines between the points with QCTypeId = 2 only. the problem is that i don't have data for QCTypeId = 3 and timeStamp  = 23/11/2010. i go to properties of the chart series and set emptyPoint-&amp;gt;color to be "Lime" color for eample and than i saw i line between the 2 points  of QCTypeId = 3. the problem is that all the groups with "Missing points" will get the color "Lime" instead of random color as menthioned in the legened area. how can i fix the lines color to be randomly ?thank you,adi damty</description><pubDate>Sun, 09 Jan 2011 05:59:40 GMT</pubDate><dc:creator>adid</dc:creator></item><item><title>Error passing XML value to SQL Server store procedure</title><link>http://www.sqlservercentral.com/Forums/Topic1036872-4-1.aspx</link><description>When I pass the xmlDataValue to SQL server 2005 the error message show me that "[b]No mapping exists from object type System.Xml.XmlDataDocument to a known managed provider native type[/b]"This is my store procedure:CREATE PROC SaveToT1 @xml xmlAS	INSERT INTO dbo.T1(F1,F2)	SELECT	xmlVals.rowvals.query('StaffID').value('.','nchar(3)'),			xmlVals.rowvals.query('StaffName').value('.','nvarchar(30)')	FROM @xml.nodes('/R1/dbo.StaffInformation') as xmlVals(rowvals)My VB.NET Code is:Public Sub SaveToT1()        Dim ds As New DataSet("R1")        Dim adp As New OdbcDataAdapter        Dim cmd As New OdbcCommand        lasspCmd.Connection = lasspConn        lasspCmd.CommandText = "SELECT * FROM dbo.StaffInformation"        adp.SelectCommand = lasspCmd        adp.Fill(ds, "dbo.StaffInformation")        Dim doc As New XmlDataDocument(ds)        cmd.Connection = lasspConn        cmd.CommandText = "{CALL SaveToT1(?)}"        cmd.CommandType = CommandType.StoredProcedure        cmd.Parameters.AddWithValue("@xml", doc)        cmd.ExecuteNonQuery()        lasspCmd.Dispose()        cmd.Dispose()    End SubHow do I solve this Error? [b]Note[/b]: My connection I use odbcConnection with DSN Name</description><pubDate>Sat, 18 Dec 2010 06:12:44 GMT</pubDate><dc:creator>penphirom</dc:creator></item><item><title>Accessing old 'Technical articles'</title><link>http://www.sqlservercentral.com/Forums/Topic1031671-4-1.aspx</link><description>HiHow can I access 'Technical articles' published earlier.If any links are there, please share that.I can access new 'Technical articles'from the home page</description><pubDate>Wed, 08 Dec 2010 00:02:03 GMT</pubDate><dc:creator>Junglee_George</dc:creator></item><item><title>Starred topics</title><link>http://www.sqlservercentral.com/Forums/Topic1031720-4-1.aspx</link><description>Hi It will be very much useful if SSC introduces starring of topics in a forum.That will allow users to star the topic and the starred topics can be accessed for help for future reference in a single click.( similar to Starred mails)</description><pubDate>Wed, 08 Dec 2010 02:56:03 GMT</pubDate><dc:creator>Junglee_George</dc:creator></item><item><title>SharePoint Forum</title><link>http://www.sqlservercentral.com/Forums/Topic1022898-4-1.aspx</link><description>how about a forum for SharePoint related discussions?</description><pubDate>Thu, 18 Nov 2010 07:34:39 GMT</pubDate><dc:creator>OLDCHAPPY</dc:creator></item><item><title>New Forum</title><link>http://www.sqlservercentral.com/Forums/Topic1022736-4-1.aspx</link><description>Hi would it be possible to set up a new forum dedicated to Testing in SQL Server.This subject seems to be on the up recently (with the rise of test driven development and microsoft vs2010's unit tests for stored procs)I suggest it would coverunit testingfunctional testingStress testingLoad testingEnvironmental testingMaintenance testingStrategiesData Rollbacks and Data consistency etc This is an area i'm currently working in and sharing expertise would be invaluable. </description><pubDate>Thu, 18 Nov 2010 04:07:45 GMT</pubDate><dc:creator>michael vessey</dc:creator></item><item><title>Edit Attachments</title><link>http://www.sqlservercentral.com/Forums/Topic1015005-4-1.aspx</link><description>Under the control panel, we can edit attachments. Can we add to this the ability to go to the post that has that attachment?</description><pubDate>Tue, 02 Nov 2010 20:00:47 GMT</pubDate><dc:creator>WayneS</dc:creator></item><item><title>Recent Posts inquiry</title><link>http://www.sqlservercentral.com/Forums/Topic1014199-4-1.aspx</link><description>In 'Recent Posts',We have show posts since last visit, and show posts today.Now, for giggles, I started flipping between the two and have realized I've been missing posts.  A lot of them.  Right now 'The Thread' appears (with posts in it today) in 'since last visit', but not 'added today'.  I've closed and re-opened my browser to 'leave', and getting the same results.What is/are the rulesets behind these two queries?  The results are not intuitive, as I had assumed.</description><pubDate>Mon, 01 Nov 2010 17:17:40 GMT</pubDate><dc:creator>Evil Kraig F</dc:creator></item><item><title>Change section header colors in email</title><link>http://www.sqlservercentral.com/Forums/Topic1004449-4-1.aspx</link><description>I've noticed for the last while that headers that outline the different sections of the email have changed to a dark green font on darker blue, this makes it hard to read without highlighting each header.  An improvement would be to use white font on blue background.Thanks</description><pubDate>Thu, 14 Oct 2010 09:00:09 GMT</pubDate><dc:creator>upperbognor</dc:creator></item><item><title>Provide account setting to disable forum email subscriptions</title><link>http://www.sqlservercentral.com/Forums/Topic997752-4-1.aspx</link><description>I would like an account option to permanently disable forum topic email subscriptions.Occasionally, it gets turned on (not by me intentionally), and I end up with 50 or a 100 emails that I don't want.I never want email notifications, so if there was a way to completely disable them, that would be great.</description><pubDate>Mon, 04 Oct 2010 11:48:10 GMT</pubDate><dc:creator>Michael Valentine Jones</dc:creator></item><item><title>Subscription Email target="_new"</title><link>http://www.sqlservercentral.com/Forums/Topic1001722-4-1.aspx</link><description>In the subscription emails, when you click on a link, the target page opens in the same &amp;#119;indow.  Many of the target pages have links that one follows to understand the articles.  This reuse of a single window makes navigation more difficult and getting back to the subscription a tedious process.A workaround is to right click the link and specify "open in a new window". but making a new window the default would be helpful.An example is from the "Database Weekly" for 10/11/2010 with element:&amp;lt;a rel="nofollow" target="_blank" href="http://www.sqlservercentral.com/links/4614/176192"&amp;gt;(more)&amp;lt;/a&amp;gt;Prefered is having a target of a new window:&amp;lt;a rel="nofollow" target="_new" href="http://www.sqlservercentral.com/links/4614/176192"&amp;gt;(more)&amp;lt;/a&amp;gt;</description><pubDate>Sat, 09 Oct 2010 09:21:05 GMT</pubDate><dc:creator>Carl Federl</dc:creator></item><item><title>Moving a forum?</title><link>http://www.sqlservercentral.com/Forums/Topic1001347-4-1.aspx</link><description>Would it be possible to move the Working with Oracle forum out of the SQL Server 7/2000 group, perhaps into its own?  Seems to make sense to me, what do others think?</description><pubDate>Fri, 08 Oct 2010 08:28:49 GMT</pubDate><dc:creator>Lynn Pettis</dc:creator></item><item><title>Performance Point 2010 forum</title><link>http://www.sqlservercentral.com/Forums/Topic989940-4-1.aspx</link><description>Hi,Can we have a dedicated zone where users can post and learn about the Performance Point Server 2007 and 2010 or related technologies for Business Analytics and Data Mining.</description><pubDate>Mon, 20 Sep 2010 23:26:17 GMT</pubDate><dc:creator>Raunak Jhawar</dc:creator></item></channel></rss>
