gavinjoyce

Stories submitted by friends of gavinjoyce

NuGet Package Management for .NET(www.itbully.com)

submitted by geochatzgeochatz(234) 1 year, 6 months ago

Most of us use third-party libraries when developing a web project, so you can easily understand how difficult is sometimes to find the latest version of the library you need, keep it updated or even uninstall it easily without having to spend two hours in order to remove dependencies and delete unnecessary code. If these are your needs then you should check NuGet. read more...

add a comment |category: |Views: 9

tags: another

Are you Database Developer or Database Administrator? (blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 6 months ago

Your opinion matters! Are you Database Developer or Database Administrator? read more...

add a comment |category: |Views: 250

tags: another

Silverlight Cached Assemblies and you can to!(timheuer.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 6 months ago

One of the new features I mentioned in my What’s new/changed post on Silverlight 3 is the fact that any application developer can take advantage of the cached assembly functionality provided by Silverlight. Let me show you how and start with the current situation. read more...

add a comment |category: |Views: 5

tags: another

Known Unknown of System Stored Procedure of sys.sp_tables(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 7 months ago

Do you know even simple query like sys.tables can kill the performance of your system. There are better thing to use: Read more... read more...

add a comment |category: |Views: 95

tags: another

SQL SERVER – Encrypted Stored Procedure and Activity Monitor(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 7 months ago

If you are using Encrypted Stored Procedure you not see them in Activity Monitor read more...

1 comment |category: |Views: 67

tags: another

The Limitations of the Views – Eleven and more…(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 7 months ago

I am confident that you may know few and you may know many. I am now interested to read what all of you have to offer on this subject. I encourage all of you to go through complete series and write your own on the subject read more...

add a comment |category: |Views: 191

tags: another

Silverlight: Embed IronRuby/DLR Scripting within XAML using IValueConv(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 7 months ago

After I wrote the “Intro to IronRuby/DLR Scripting in C# Silverlight 4 Application” post, I came across an interesting series on embedding DLR scripts in XAML with WPF. This is an interesting series, although the code doesn’t run in Silverlight, due to the fact that Silverlight is only a subset of WPF and doesn’t support the System.Windows.Markup.MarkupExtension class. I test out a couple things in Silverlight, and I was able to get similar DLR scripting functionality working under Silverlight using a combination of a simple, custom IValueConverter and a custom UserControl class. read more...

add a comment |category: |Views: 16

tags: another

Dynamic XAP Discovery with Silverlight MEF (www.wintellect.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 7 months ago

What's missing, it seems, is a mechanism to dynamically discover the XAPs that are available on the server. If I'm using MEF to support a plug-in architecture, for example, I might want to drop a XAP containing a new plug-in into a folder on the server and have the plug-in automatically show up in my browser the next time the application runs. MEF won't do that on its own, but it will if you lend it a helping hand. After discussing various ways to do dynamic discovery in MEF with Jeremy Likness, I wrote a sample to demonstrate a technique based on passing InitParams to the Silverlight control. The technique is pretty simple. You begin by modifying the ASPX file that hosts your Silverlight application. First, you add an empty InitParams <params> element to the <object> element that instantiates the Silverlight control, and you include an ID and a runat="server" attribute so you can manipulate the element from server-side code: read more...

add a comment |category: |Views: 45

tags: another

Intro to IronRuby/DLR Scripting in C# Silverlight 4 Application(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 7 months ago

I thought I’d share what I’m learning about adding IronRuby scripting to Silverlight 4 applications. I’m also focusing on C# as the host language, but the .NET object and methods used will be the same from VB.NET. read more...

add a comment |category: |Views: 18

tags: another

Embedding DLR Scripts in XAML- Part 2, A Simple DLR Markup Extension(www.thinkbottomup.com.au)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 7 months ago

This article demonstrates how to embed DLR scripts in XAML using a custom MarkupExtension. The scripting language can be any language supported by the DLR, such as Python or Ruby. read more...

add a comment |category: |Views: 20

tags: another

Wait Stats and Health Check - A Path to Performance (blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 7 months ago

Wait Stat Analysis is very crucial for optimizing databases, but it is often overlooked due to lack of understanding. We perform advanced resource Wait Statistics Analysis and provide you with suggestions to optimize your database server. We train your DBA to make them skillful enough so they can perform this analysis by themselves in the future. read more...

add a comment |category: |Views: 87

tags: another

COUNT(*) Not Allowed but COUNT_BIG(*) Allowed in VIEW(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 8 months ago

One of the most prominent limitations of the View it is that it does not support COUNT(*); however, it can support COUNT_BIG(*) operator. In the following case, you see that if View has COUNT (*) in it already, it cannot have a clustered index on it. On the other hand, a similar index would be created if we change the COUNT (*) to COUNT_BIG (*).For an easier understanding of this topic, let us see the example here. read more...

add a comment |category: |Views: 107

tags: another

How to Stop Growing Log File Too Big(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 8 months ago

A Simple Solution to Ancient Problem read more...

add a comment |category: |Views: 276

tags: another

Contextual Awareness - Making your container behave intelligently(www.lostechies.com)

submitted by jmeridthjmeridth(720) 1 year, 8 months ago

A smart container that can map an interface to multiple types, and then at runtime, automatically figure out which one of those types I really wanted read more...

add a comment |category: |Views: 1

tags: another

What is an MVP? – How to become an MVP?(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 8 months ago

A Direct Answer to Famous Question! read more...

add a comment |category: |Views: 552

tags: another

Soft Delete – IsDelete Column – Your Opinion(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 8 months ago

"Deleted records aren’t deleted. Look, they’re right there!” There is interesting conversation on the subject going on. If you are doing this, this one is for you - read more...

add a comment |category: |Views: 410

tags: another