<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7110412040908176167</id><updated>2011-08-23T08:54:43.858-05:00</updated><category term='Dynamically create primary keys for all tables SQL Server'/><category term='OLE DB Component'/><category term='SPLIT'/><category term='SATA Drive'/><category term='habit'/><category term='sql'/><category term='tsql'/><category term='TSql String Manipulation'/><category term='secondary storage windows xp'/><category term='termite'/><category term='Itzik Ben-Gan'/><category term='Sql Server Keys'/><category term='stored procedure meta data'/><category term='CharIndex'/><category term='SMO'/><category term='SNESSUG'/><category term='stored procedures and OLE DB Component'/><category term='Southern New England SQL Server User Group'/><category term='SSIS'/><category term='work'/><category term='SMO DatabaseStatus property'/><title type='text'>Business Intelligence ???</title><subtitle type='html'>Centered around process, thoughts, and Microsoft Products and tools that support Business Intelligence.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>14</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-1073440434107871869</id><published>2008-07-14T13:41:00.002-05:00</published><updated>2008-07-14T13:44:17.009-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SPLIT'/><category scheme='http://www.blogger.com/atom/ns#' term='CharIndex'/><category scheme='http://www.blogger.com/atom/ns#' term='TSql String Manipulation'/><title type='text'>Simple string parsing using TSql using the SPLIT and CharIndex functions</title><content type='html'>Simple string parsing using TSql using the SPLIT and CharIndex functions&lt;br /&gt;Here I need to extract the data AFTER the $ in the input.&lt;br /&gt;&lt;br /&gt;--Split out instance Name&lt;br /&gt;SELECT SUBSTRING('MSSQL$SQLDBT01',CHARINDEX('$','MSSQL$SQLDBT01')+1,len('MSSQL$SQLDBT01'))&lt;br /&gt;&lt;br /&gt;Here is the output&lt;br /&gt;------------&lt;br /&gt;SQLDBT01&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-1073440434107871869?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/1073440434107871869/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=1073440434107871869' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/1073440434107871869'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/1073440434107871869'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2008/07/simple-string-parsing-using-tsql-using.html' title='Simple string parsing using TSql using the SPLIT and CharIndex functions'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-2282816082448365528</id><published>2008-07-14T12:33:00.003-05:00</published><updated>2008-07-14T12:41:47.468-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Dynamically create primary keys for all tables SQL Server'/><category scheme='http://www.blogger.com/atom/ns#' term='Sql Server Keys'/><title type='text'>Simple way to add Clustered Primary Keys to multiple tables</title><content type='html'>I used this to create clustered primary keys for each table that i cared about within a database.  I joined the&lt;br /&gt;SELECT i.TABLE_NAME--, i.CONSTRAINT_NAME&lt;br /&gt;FROM INFORMATION_SCHEMA.TABLES i&lt;br /&gt;with a table that stored all of the objects that I cared about and created a list of all the obects.&lt;br /&gt;&lt;br /&gt;So for example&lt;br /&gt;SELECT i.TABLE_NAME--, i.CONSTRAINT_NAME FROM INFORMATION_SCHEMA.TABLES i&lt;br /&gt;INNER JOIN&lt;br /&gt;(select t.Trace_Table_Name + '_id' as Trace_Table_Name&lt;br /&gt;from Trace_Directory t&lt;br /&gt;join sysobjects o on t.Trace_Table_Name = o.name) t&lt;br /&gt;ON t.Trace_Table_Name =i.table_name&lt;br /&gt;ORDER BY i.TABLE_NAME&lt;br /&gt;&lt;br /&gt;Complete script&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;DECLARE cPK CURSOR FOR&lt;br /&gt;SELECT i.TABLE_NAME--, i.CONSTRAINT_NAME&lt;br /&gt;FROM INFORMATION_SCHEMA.TABLES i&lt;br /&gt;--Remember to remove this for all tables or add your own logic here&lt;br /&gt;INNER JOIN&lt;br /&gt;(select t.Trace_Table_Name + '_id' as Trace_Table_Name&lt;br /&gt;from Trace_Directory t&lt;br /&gt;join sysobjects o on t.Trace_Table_Name = o.name) t&lt;br /&gt;ON t.Trace_Table_Name =i.table_name&lt;br /&gt;ORDER BY i.TABLE_NAME&lt;br /&gt;DECLARE @PkTable SYSNAME&lt;br /&gt;DECLARE @PkName SYSNAME&lt;br /&gt;--Loop through all tables&lt;br /&gt;OPEN cPK&lt;br /&gt;FETCH NEXT FROM cPK INTO @PkTable--, @PkName&lt;br /&gt;WHILE (@@FETCH_STATUS = 0)&lt;br /&gt;BEGIN&lt;br /&gt;DECLARE @PKSQL NVARCHAR(4000) SET @PKSQL = ''&lt;br /&gt;SET @PKSQL = 'ALTER TABLE ' + @PkTable + ' ADD CONSTRAINT PK_' + @PkTable + '_1 PRIMARY KEY CLUSTERED ( id ASC , rowNumber ASC) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]'&lt;br /&gt;SET @PKSQL= @PKSQL + char(10) + char(13)&lt;br /&gt;SET @PKSQL= @PKSQL + 'GO '&lt;br /&gt;-- Print the primary key statement&lt;br /&gt;PRINT @PKSQL&lt;br /&gt;FETCH NEXT FROM cPK INTO @PkTable--, @PkName&lt;br /&gt;END&lt;br /&gt;CLOSE cPK&lt;br /&gt;DEALLOCATE cPK&lt;br /&gt;&lt;br /&gt;Here is the output&lt;br /&gt;&lt;br /&gt;ALTER TABLE Trace_johnsqlp66sqlprod02_20080707_0001_id ADD CONSTRAINT PK_Trace_johnsqlp66sqlprod02_20080707_0001_id_1 PRIMARY KEY CLUSTERED ( id ASC , rowNumber ASC) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]&lt;br /&gt;GO&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-2282816082448365528?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/2282816082448365528/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=2282816082448365528' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2282816082448365528'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2282816082448365528'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2008/07/simple-way-to-add-clustered-primary.html' title='Simple way to add Clustered Primary Keys to multiple tables'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-1616849289719785236</id><published>2007-11-28T10:08:00.000-05:00</published><updated>2007-11-28T10:15:55.667-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='secondary storage windows xp'/><category scheme='http://www.blogger.com/atom/ns#' term='SATA Drive'/><title type='text'>Very Easy Explination of Setting up a new storage SATA drive for windows XP</title><content type='html'>This one did save me some time.  I recently added another &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;SATA&lt;/span&gt; drive to my personal, non-gaming machine to save video and picture files.  After I installed the drive I was &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_1"&gt;frustrated&lt;/span&gt; to find that I could see it on post but within Windows I could not see the drive associated with a drive letter.   Stupid me I never thought about the fact that it was not partitioned or formatted.  This really helped quickly.&lt;br /&gt;&lt;a href="http://www.pcstats.com/articleview.cfm?articleid=1778&amp;amp;page=9"&gt;http://www.pcstats.com/articleview.cfm?articleid=1778&amp;amp;page=9&lt;/a&gt;&lt;a href="http://cid-04de702da42a5894.skydrive.live.com/self.aspx/Shared%20Video/Produce.wmv"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-1616849289719785236?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/1616849289719785236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=1616849289719785236' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/1616849289719785236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/1616849289719785236'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/11/very-easy-explination-of-setting-up-new.html' title='Very Easy Explination of Setting up a new storage SATA drive for windows XP'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-2212839986904673523</id><published>2007-06-07T15:05:00.000-05:00</published><updated>2007-06-07T15:07:35.521-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SMO'/><category scheme='http://www.blogger.com/atom/ns#' term='SMO DatabaseStatus property'/><title type='text'>SMO - Database Status Property</title><content type='html'>Have a very strange error - or what seems to be an error when running some SMO code...&lt;br /&gt;&lt;br /&gt;When doing a simple loop though all of the databases on a server I noticed something strange with one of the properties; the database.status property.  I was originally running my code against a 2000 server and there is one db on that server that is set to Offiline.  When looping though the dbs on that server and looking at the status property the offline db reported just like the rest - online.  When I switched to a 2005 server and set a db to offline I ran my bit of code and noticed that the status now reported 544 as a code for the offline db, this in turn reports to NOTHING as a code from the enum&lt;br /&gt;Debug.WriteLine([Enum].GetName(GetType(DatabaseStatus), db.Status)) again this return an empty value.&lt;br /&gt;Any ideas on this one?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-2212839986904673523?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/2212839986904673523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=2212839986904673523' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2212839986904673523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2212839986904673523'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/06/smo-database-status-property.html' title='SMO - Database Status Property'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-4244168074986105741</id><published>2007-05-23T10:10:00.001-05:00</published><updated>2007-05-23T10:10:53.591-05:00</updated><title type='text'>Datawarehouse or Business Intelligence</title><content type='html'>I know this is a post from last year but it is worth a look.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.sqlservercentral.com/columnists/vRainardi/businessintelligenceordatawarehouse.asp"&gt;http://www.sqlservercentral.com/columnists/vRainardi/businessintelligenceordatawarehouse.asp&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-4244168074986105741?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/4244168074986105741/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=4244168074986105741' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/4244168074986105741'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/4244168074986105741'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/05/datawarehouse-or-business-intelligence.html' title='Datawarehouse or Business Intelligence'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-2489817440304292683</id><published>2007-05-16T15:20:00.000-05:00</published><updated>2007-05-16T15:21:11.071-05:00</updated><title type='text'>Ms Build - A Start</title><content type='html'>I have been getting some questions about MSBuild so here is a start.&lt;br /&gt;I hope to look into creating a wrapper app for our MSBuild/DBPro projects very soon.&lt;br /&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/0k6kkbsd.aspx"&gt;http://msdn2.microsoft.com/en-us/library/0k6kkbsd.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-2489817440304292683?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/2489817440304292683/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=2489817440304292683' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2489817440304292683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2489817440304292683'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/05/ms-build-start.html' title='Ms Build - A Start'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-3324502809481410157</id><published>2007-05-16T08:56:00.000-05:00</published><updated>2007-05-16T08:59:57.951-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SSIS'/><category scheme='http://www.blogger.com/atom/ns#' term='stored procedures and OLE DB Component'/><category scheme='http://www.blogger.com/atom/ns#' term='stored procedure meta data'/><category scheme='http://www.blogger.com/atom/ns#' term='OLE DB Component'/><title type='text'>SSIS - OLE DB Source Component - Stored Procedure Error</title><content type='html'>Here is something we recently ran into when using a stored procedure inside OLE DB Source Component.&lt;br /&gt;&lt;br /&gt;A change was made to a stored procedure that was originally working and providing SSIS OLE DB Source Component with all of the mappings and meta data. After a change to that proc, the mappings could no longer be validated and the meta data was not available. when configuring the component were suddenly not seen. What happened...?&lt;br /&gt;Apparently the proc was changed in such a way that the original use of a table variable to store some temp results was removed and replaced with a #temp table. This stopped the transmission or access to the metadata from the proc. After some searching Dave M. was able to find this post &lt;a href="http://blogs.conchango.com/jamiethomson/archive/2006/12/20/SSIS_3A00_-Using-stored-procedures-inside-an-OLE-DB-Source-component.aspx"&gt;http://blogs.conchango.com/jamiethomson/archive/2006/12/20/SSIS_3A00_-Using-stored-procedures-inside-an-OLE-DB-Source-component.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I added the SET FMTONLY OFF and tried to validate the SQL, SSIS did not like this and it threw an error. The proc was being called with 2 parameters and I could not validate with the SET FMTONLY OFF hint and the two parameters present. So what did I do...???&lt;br /&gt;I punted...&lt;br /&gt;Actually the proc was changed back to using the table variable and all is working again - after a host of other issues.&lt;br /&gt;&lt;br /&gt;I plan on working on this again this week and will test out various methods to find a workaround that suits our needs. Stay tuned.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-3324502809481410157?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/3324502809481410157/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=3324502809481410157' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/3324502809481410157'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/3324502809481410157'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/05/ssis-ole-db-source-component-stored.html' title='SSIS - OLE DB Source Component - Stored Procedure Error'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-3442236408079811731</id><published>2007-05-11T07:04:00.000-05:00</published><updated>2007-05-11T07:17:06.139-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='termite'/><category scheme='http://www.blogger.com/atom/ns#' term='work'/><category scheme='http://www.blogger.com/atom/ns#' term='habit'/><title type='text'>Like a termite in a termite mound</title><content type='html'>They have just started a program here at work that forces us to change our network &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;log on&lt;/span&gt; password.  Now I know what your thinking, they are just doing this now???? Scott it is 2007!!  I know it is a big company and change happens slow which supports my discussion.   I spent 10 min yesterday and signed into the program to create my own new password; a password of my own &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_1"&gt;choosing&lt;/span&gt; - with the &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;mandatory&lt;/span&gt; mixture of numbers and letters.  My point is from the first time I had to re-&lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_3"&gt;log on&lt;/span&gt; to my workstation to the most recent time, I just cannot break out of the habit of typing in my old password and realizing, the moment I hit the enter key, I have become a termite in the termite mound.  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;Merely&lt;/span&gt; a worker siding creativity for compliance and redundancy; I am now scared!  I always took great pride in being creative, a go-getter, passionate, driven and now I see I am loosing a lot of that edge that got me to where I am now.  I need something refreshing - maybe a vacation in Vegas!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-3442236408079811731?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/3442236408079811731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=3442236408079811731' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/3442236408079811731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/3442236408079811731'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/05/like-termite-in-termite-mound.html' title='Like a termite in a termite mound'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-5406078274216062115</id><published>2007-03-09T08:19:00.000-05:00</published><updated>2007-03-09T08:20:43.667-05:00</updated><title type='text'>Not even a comment...</title><content type='html'>Wow this is killing me... Not a single reply or comment.  Looks like I need to up the content.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-5406078274216062115?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/5406078274216062115/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=5406078274216062115' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/5406078274216062115'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/5406078274216062115'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/03/not-even-comment.html' title='Not even a comment...'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-925750573190077071</id><published>2007-02-07T16:15:00.000-05:00</published><updated>2007-02-07T16:18:38.225-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql'/><title type='text'>SQL Server 2000 Constraints and scripting in Enterprise Manager</title><content type='html'>Recent post at SSC that I found the need to reply to - it eventualy lead to talk about scripting out of enterprise manager.  I wanted to talk about the pitfall of EM chaning the constraint signature when scripting this out.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&amp;messageid=342753&amp;amp;post=true"&gt;http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&amp;messageid=342753&amp;amp;post=true&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-925750573190077071?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/925750573190077071/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=925750573190077071' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/925750573190077071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/925750573190077071'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/02/sql-server-2000-constraints-and.html' title='SQL Server 2000 Constraints and scripting in Enterprise Manager'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-3426130649611276955</id><published>2007-02-06T15:32:00.000-05:00</published><updated>2007-02-06T15:57:31.848-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SNESSUG'/><category scheme='http://www.blogger.com/atom/ns#' term='Southern New England SQL Server User Group'/><title type='text'>Southern New England SQL Server User Group</title><content type='html'>I would like to invite everyone in the Southern New England area to become a member of SNESSUG (Southern New England SQL Server User Group). Myself and fellow colleagues have created this group and we are now a recognized PASS chapter &lt;a href="http://www.sqlpass.org/"&gt;http://www.sqlpass.org/&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;We are new so bear with us as we work out the kinks. We will be creating a web site listed under the sqlpass.org site listed above. Membership is free and the meetings will be held on the SECOND Wednesday of every month. If you are interested in more information contact me at &lt;a href="mailto:finalist2@comcast.net"&gt;finalist2@comcast.net&lt;/a&gt; and I will be happy to answer any questions you may have.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-3426130649611276955?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/3426130649611276955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=3426130649611276955' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/3426130649611276955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/3426130649611276955'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/02/southern-new-england-sql-server-user.html' title='Southern New England SQL Server User Group'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-2374428563859921842</id><published>2007-02-06T15:12:00.000-05:00</published><updated>2007-02-06T15:21:49.621-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql'/><category scheme='http://www.blogger.com/atom/ns#' term='tsql'/><category scheme='http://www.blogger.com/atom/ns#' term='Itzik Ben-Gan'/><title type='text'>TSQL Training - Well worth my time</title><content type='html'>Since my last posting I had the pleasure of attending a week long course on Advanced TSQL Programming.  This course was taught by Itzik Ben-Gan founder of Solid Quality Learning (S.Q.L).  Anyone who has had the opportunity to attend a course taught by Itzik will certianly confirm my feelings that Itzik is a fantastic teacher and has an incredible command of the subject matter.  I also urge anyone with a SQL background to pay attention to Itzik's postings and comments in the world of all things SQL Server; he is an amazing individual and a major contibuter to the SQL Server community.  Itzik, thank you for an amazing course and keep up the great work, it was an absolute pleasure to learn from one of the best in the field!&lt;br /&gt;&lt;br /&gt;Here is a link to Itzik's site : &lt;a href="http://www.sql.co.il/books/insidetsql2005/"&gt;http://www.sql.co.il/books/insidetsql2005/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-2374428563859921842?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/2374428563859921842/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=2374428563859921842' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2374428563859921842'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/2374428563859921842'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/02/tsql-training-well-worth-my-time.html' title='TSQL Training - Well worth my time'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-6829094216102705030</id><published>2007-01-22T09:08:00.000-05:00</published><updated>2007-01-22T09:49:59.801-05:00</updated><title type='text'>SOA and I will post more on this soon</title><content type='html'>Interesting link to some SOA and data talk.  I think the author hit this right on the head when he mentioned that data will never be as cool as application code and methods.  This is VERY evident at my place of employment as much, if not all, of the focus is on creating the services and the DBA will get the data that we need.  We went from tightly coupled systems to what is becoming tons of small services all over the place that would seem to be difficult to remember exactly what services were created for an application and where those services reside.  When I get more time I will elaborate on this more. &lt;br /&gt;So here is the link:&lt;br /&gt;&lt;a href="http://blogs.msdn.com/rogerwolterblog/archive/2007/01/19/soa-and-data.aspx"&gt;http://blogs.msdn.com/rogerwolterblog/archive/2007/01/19/soa-and-data.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-6829094216102705030?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/6829094216102705030/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=6829094216102705030' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/6829094216102705030'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/6829094216102705030'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/01/soa-and-i-will-post-more-on-this-soon.html' title='SOA and I will post more on this soon'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110412040908176167.post-8621589176850208015</id><published>2007-01-12T13:54:00.001-05:00</published><updated>2007-01-12T13:54:27.240-05:00</updated><title type='text'>The First Post</title><content type='html'>Well this is the first official post in my wonderful world of the blog.&lt;br /&gt;As you can see from the title (as sarcastic as it may seem) it will have some ties to Business Intelligence and many ties to technology;&lt;br /&gt;               VB.Net&lt;br /&gt;               Object Orientated Programming models and patterns&lt;br /&gt;               All things Sql Server&lt;br /&gt;               and fun things of course&lt;br /&gt;&lt;br /&gt;I should introduce myself here as well.  I am a Sql Server database developer for a major insurance company and have been a developer for about 12 years now.&lt;br /&gt;&lt;br /&gt;Now the personal stuff - My family consists of my wife Brenda and my two girls; Madison and Samantha.  At the time of writing this Sammie is 6 weeks old and the lack of sleep is a reality&lt;br /&gt;and may cause me to post some interesting items to say the very least.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110412040908176167-8621589176850208015?l=scotta-businessintelligence.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scotta-businessintelligence.blogspot.com/feeds/8621589176850208015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110412040908176167&amp;postID=8621589176850208015' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/8621589176850208015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110412040908176167/posts/default/8621589176850208015'/><link rel='alternate' type='text/html' href='http://scotta-businessintelligence.blogspot.com/2007/01/first-post.html' title='The First Post'/><author><name>Scott</name><uri>http://www.blogger.com/profile/03713648862958322271</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
