Speaking at the Prairie Dev Con!!

 I found out today that I will be presenting at Prairie Dev Con in Regina, Saskatchewan on June 2-3.

Please try to catch one of my sessions on the ASP.Net MVC framework!! 

 Many thanks go out to D'Arcy Lussier for selecting my talks!!  I hope to meet quite a few new friends up in the Great White North!

  -G


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: All About .Net | ASP.Net Thoughts.. | SQL Server

35 Comments
Actions: E-mail | Permalink | Comment RSSRSS comment feed

VSLive! Orlando

Hey everyone!

 Please join me in Orlando at VSLive! this fall!  The dates have been released!  It's happening October 4-7th at the beautiful Buena Vista Palace hotel right near Downtown Disney! This should be a GREAT conference. Come to the last conference before the release of Windows 7!  

   -G 


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: All About .Net | ASP.Net Thoughts.. | Ramblings | SQL Server

45 Comments
Actions: E-mail | Permalink | Comment RSSRSS comment feed

Twin Cities Pragmatic Beer

 

I am a little late popping this up on my site, however there is a new 'GROUP' to go to in the twin cities.  The Twin Cities Pragmatic Beer group.  This is going to be handled much like the 'Geek Dinners' in other areas that have had GREAT success!  I will not be able to attend the first meeitng; which happens to be TONIGHT?!  But I do plan on attending the next event next month!

 Please click the link above to get a description of the meeting.

 

  -G


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags: , , , , , ,
Categories: All About .Net | ASP.Net Thoughts.. | Ramblings | SQL Server

28 Comments
Actions: E-mail | Permalink | Comment RSSRSS comment feed

VS Live - Dallas!! Please join me!

Hey folks...

 I've been sick for the past weekend, and have finally gotten the new server online, and web-serving...  Now time for some cool advertising!

 I will be presenting in Dallas the week of December 8th, please come down and join me at the conference.  Even bring a friend!  If your a tech type person, you can't pass on this conference. By registering with the special code below you will recieve a special discount of $300 off of the conference!!  See the information below for your special code and a blurb from the Conference!

General Conference Information: 

VSLive! DallasThe Adolphus Hotel, Dallas, TX – www.vslive.com/dallas

December 8-11, 2008 Register online or call 800-280-6218 using Priority Code SPEME and receive $300 off the package of your choice.VSLive! Dallas 

For 15 years, VSLive Events have led the ranks as the trusted independent conference for .NET professionals. No other conference, no corporate trainers, no one else will compare to VSLive's standard of editorial excellence and commitment to real-world, practical information designed to take your skills to the next level. Join me and other professional developers, Microsoft product teams and executives at VSLive Dallas, December 8-11, 2008

At VSLive! Dallas, the old Windows/Web/SQL delineations are gone and we have 50% more breakout sessions to choose from. This improved format allows us to offer a huge range of topics, including cloud computing, WPF, ASP.NET ALM, and SQL Server Data Services.  Deep material on mainstream Web development, Architecture, and Data Management honor our tradition of supporting your production needs with today’s technology.  

If you’ve only one opportunity to attend a conference this Fall or Winter: VSLive! Dallas is it! 

www.vslive.com/dallas

 


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: All About .Net | ASP.Net Thoughts.. | Ramblings | SQL Server

66 Comments
Actions: E-mail | Permalink | Comment RSSRSS comment feed

Server Issues...

Wow..   That is all that I can say.. The blog has been down, and my server had a mini-meltdown!

 I have purchased a new box to replace this server.  I got a really good deal from MicroCenter on a PC that did not have Windows installed on it.  I wish I could run this server on a non-Microsoft technology, because the Ubuntu Linux that is installed on this box looks REAL cool, not to mention that it loads quite QUICKLY....

 Anyway, I hope that the new box is online in the next week or so and I have no more blog issues...

 

  -G


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: All About .Net | ASP.Net Thoughts.. | Ramblings | SQL Server

18 Comments
Actions: E-mail | Permalink | Comment RSSRSS comment feed

Wholly Dynamic SQL Batman!

To catch everyone up that is not in the KNOW...  I no longer work for a testing company in Minnesota.  I now work for a consulting company.  This company has a GREAT reputation in the industry, and is a Microsoft GOLD Level partner.  I am currently working at one of their clients in the database area.  This is by far not my specialty, however I do know my way around a SQL Server!

Anyway, I have been working on a way to dynamically call across database servers to extract information that is needed for server health reporting.  The issue that this client faces; not any different than most; is that there are ALOT of servers on their network, and more and more popup every day.  Not to mention that scheduled jobs change! 

I thought in the beginning; Linked Servers!  That's the ticket. 

That didn't work, as most of them are not linked! :( 

I started looking at some of the commands that SQL 2k gave us; OpenDataSource and OpenRowSource.  I thought; Great, I'll plant variables in this command through a cursor and everything will be fine.  This also didn't work, since the two before mentioned commands do not work with variables.

After asking around, and beating my head into many hard objects, I came up with the following code...

  set @connect = 'server=' + @server + ';trusted_connection=yes'

  select @command = 'insert into {report_table} select * from  openrowset(''SQLOLEDB'', ''' + @connect + ''',''{database}.dbo.{procedure}')'

  execute sp_executesql @command

This works like a charm.. Oh, incase your SQL boxes will not support trusted connections; you can modify the @connect variable to the following.

  set @connect = 'server=' + @server + ';UId=' + @uid + ';pwd=' + @pass

And so the story goes, yet another day; another 50 lumps on my skull!


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: SQL Server

0 Comments
Actions: E-mail | Permalink | Comment RSSRSS comment feed