Vermont IT Jobs: Website Administrator

Country Walkers

Immediate full-time Website Administrator/Ass’t Marketing Coordinator. This person manages all website content including images, as well as coordinates and oversees additional desigh and SEO. Also assists Media Director with writing, editing and production of all marketing brochures.

Pluses: MS Office, Photoshop, Quark, Dreamweaver & Adobe Indesign

more info

jamen@countrywalkers.com

 

Don’t Forget: www.acehaid.org

SQL Query Notification Database Account permissions problems?

I went around and around (and dragged poor Sushil Chordia and blogless Leonid Tsybert along for the ride) with an access permission problem that my ASPNET account was having when trying to do SqlDependency.Start. All of the correct permissions (listed below) had been applied to the account, which could be verified with sp_helprotect,NULL,ASPNET

Finally, I just gave up and removed the ASPNET account from SQL Server in its entirety and recreated it with the necessary permissions and everything worked just fine.

Though I’m very frustrated not to have figured out what was causing the problem, I’m satisfied in knowing that there is a solution (remove & recreate.)

Here, as listed in Sushil’s fantastic blog post from late September, which listed all of the RTM changes for Query Notification, is how to set up the perms.Note that this is for IIS5 whereas in IIS6 you would use the NT Authority\NetworkService account.

All of this is run against the database that you want the perms for, not in Master.

sp_grantlogin ‘myMachineName\ASPNET’     –this gives the ASPNET account login access to SQL Server
sp_grantdbaccess ‘MyMachineName\ASPNET’, ASPNET   –this gives the login access to the database with the “nickname” ASPNET

GRANT CREATE PROCEDURE to ASPNET
GRANT CREATE QUEUE to ASPNET
GRANT CREATE SERVICE to ASPNET
GRANT REFERENCES on CONTRACT::[http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification] to ASPNET  –note that the schema is case sensitive!
GRANT VIEW DEFINITION to ASPNET

The above are to call Start(), to do the actual notifications, you need:

EXEC sp_addrole ‘sql_dependency_subscriber’
GRANT SUBSCRIBE QUERY NOTIFICATIONS TO ASPNET
GRANT RECEIVE ON QueryNotificationErrorsQueue TO ASPNET
GRANT REFERENCES on CONTRACT::[http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification] to ASPNET
EXEC sp_addrolemember ‘sql_dependency_subscriber’, ‘ASPNET’
GRANT SELECT TO ASPNET

Don’t Forget: www.acehaid.org

Vermont IT Jobs: VBA/Excel programming contract work in Burlington

Dwight Asset Management is in search of an Excel/VBA Macro programmer to work on a contract basis for a few weeks with our firm. 

The position will require the contract programmer to be in the office.  It is a position requiring approximately 80-120 hours of work, hopefully to occur within the next six weeks.  Resumes and contact information may be e-mailed directly to me at this address.  Pay rate is competative and is commesurate with experience.

Thank you very much!

Sara Lynn
Tech Department
Dwight Asset Management Company
slynn@dwight.com
(802) 383-4088

Don’t Forget: www.acehaid.org

Getting Started with ASP.NET 2.0: Some Resources

At the Vermont.NET meeting (our Visual Studio Community Launch) Laura covered some of the most interesting of the UI basics that are new in ASP.NET 2.0. There were a lot of attendees to this meeting that are brand new to ASP.NET 2.0 and want to learn more. A really good starting point is the www.asp.net website. On there you can find a Guided Tour of Visual Web Developer 2005 Express, which is basically the web development only portion of Visual Studio – and therefore a fantastic place to get started with ASP.NET 2.0. Also, the ASP.NET Developer Center is a great launching pad, to find video training, the quickstarts, even a link to getting a free 3 hour training CD from AppDev.

There are amazing resources on the web.

There are also plenty of ASP.NET 2.0 books coming out that are great for beginners.

Bipin Joshi’s Developer’s Guide to ASP.NET 2.0 is aimed at ASP.NET 1.x developers moving to ASP.NET 2.0, but covers everything, not just “what’s new”.

From Wrox: Beginning ASP.NET 2.0 from Dave Sussman and a crew of excellent writers.

The ASP.NET v2 The Beta Version, which we raffled off when Rob Howard was at the group in November and also at Monday’s meeting, is pretty close to being current with the release version.

Professional ASP.NET 2.0 another WROX book by my buddies Bill Evjen, Farhan Muhammed and more!

Pro ASP.NET 2.0 from O’Reilly.

Murach has an ASP.NET 2.0 Upgraders Guide. One for C# and one for VB.

O’Reilly has ASP.NET 2.0 A Developer’s Notebook is another “what’s new in 2.0” book that has  50 hands on projects. They have a few other asp.net 2 books as well.

Laura also posted resources from her session here.

This is just a VERY SHORT list to get you started in case you don’t know where to turn next. There are so many online resources. In addition to the official microsoft ones above, there are many community sites like www.ASPAlliance.com and www.ASPAdvice.com. There are forums galore and of course blogs blogs blogs.