rsivam

Stories kicked by rsivam

Asp.Net Audio Converter(alvas.net)

submitted by alvasnetalvasnet(550) 1 year ago

Converts audio files with Alvas.Audio in Asp.Net application as easy as in Windows Forms, WPF, Windows Service and Console Apps. You need Upload audio file. Select your audio file from list on the server. Select audio format from list with available audio formats. Press “Convert” button and download result audio file. ... read more...

add a comment |category: |Views: 27

tags: another

Copy Database from Instance to Another Instance – Copy Paste in SQL Se(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year ago

SQL Server has feature which copy database from one database to another database and it can be automated as well using SSIS. Make sure you have SQL Server Agent Turned on as this feature will create a job. The same job will execute the task. Make sure that SSIS is properly configured as well with necessary security permissions. You can automate this process as well control error logging. Following are the steps to copy database from one instance to another instance. read more...

add a comment |category: |Views: 43

tags: another

SQL Server: Create/Drop Scripts for All Existing Foreign Keys(connectsql.blogspot.com)

submitted by lionofdezertlionofdezert(1110) 1 year ago

How to get create and drop script for all of your existing foreign keys in a specific table or whole database. read more...

add a comment |category: |Views: 9

tags: another

Lighthouse – Silverlight Unit Test Runner Project released(blog.roboblob.com)

submitted by spavkovspavkov(1713) 1 year, 2 months ago

Since the initial release of Silverlight i was really annoyed by the fact that Unit Testing had very slim support. Even later when Silverlight Unit Testing Framework was introduced by Microsoft things became little better but still it was far from good. You could create Unit Tests, but you had to start your Visual Studio in order to run them – eventually looking at the results of tests in your favorite Web Browser... read more...

add a comment |category: |Views: 105

tags: another

How To Debug WPF and Silverlight Binding Errors In Visual Studio(www.falconerdevelopment.com)

submitted by karl_falconerkarl_falconer(70) 1 year, 2 months ago

Learn about the Visual Studio settings that will reduce the amount of time spent debugging WPF and Silverlight binding errors. read more...

add a comment |category: |Views: 192

tags: another

A Hidden Performance Bottleneck - Discover and Resolve(blog.sqlauthority.com)

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

I have been working a lot on Wait Stats and Wait Types recently. Last Year, I requested blog readers to send me their respective server’s wait stats. I recorded the wait stats and my recommendations and did further research. At some point at time, there were more than 10 different round trips of the recommendations and suggestions. Finally, after six month of working my hands on performance tuning, I have collected some real world wisdom because of this. Now I plan to share my findings with all of you over here. read more...

add a comment |category: |Views: 531

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

SQL Server DMVs - where to start and how to use?(beyondrelational.com)

submitted by jacobsebastianjacobsebastian(3639) 1 year, 8 months ago

When you need to troubleshoot a problem, prior to SQL Server 2005 you have to depend upon PROFILER or query system tables constantly or some other means to trace the system usage. read more...

add a comment |category: |Views: 88

tags: another

How to Remove .SVC from WCF REST Service : The CodeGain(www.codegain.com)

submitted by codegaincodegain(2794) 1 year, 8 months ago

In this article you will learn, How to Remove .SVC from WCF REST Service read more...

add a comment |category: |Views: 133

tags: another

Add OpenID Login Support In Your ASp.NET Application(midnightprogrammer.net)

submitted by prashantmx4prashantmx4(815) 1 year, 8 months ago

A simplest and easiest way to implement OpenID login support in ASP.NET webform applications. read more...

add a comment |category: |Views: 205

tags: another

ASP.NET MVC 3 Preview 1 - Razor View Engine(www.dotnetcurry.com)

submitted by flyingkickflyingkick(331) 1 year, 9 months ago

The following article demonstrates how to use the new Razor view engine in ASP.NET MVC 3 Preview 1 release. read more...

1 comment |category: |Views: 334

tags: another

IRC.NET Released(blog.noldorin.com)

submitted by NoldorinNoldorin(829) 1 year, 9 months ago

IRC.NET is here. Yes, after months of (arduous) labour I have finally created a stable and usable release of my IRC client library for .NET 4.0. You may find the project hosted over at Launchpad, where you can currently download source, binaries, and documentation for all releases up to 0.3. read more...

add a comment |category: |Views: 214

tags: another

Why SQL Server is better than any other RDBMS Applications?(blog.sqlauthority.com)

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

I strongly suggest that you bookmark this post as this post can be used in future when you might want to write why SQL Server is better than any other RDBMS application. read more...

1 comment |category: |Views: 710

tags: another

What is Silverlight(beyondrelational.com)

submitted by sdineshsdinesh(610) 1 year, 9 months ago

In this article I attempted to explain what Silverlight is and how it fits into the web spectrum. This article explains how Silverlight fits in Building Business Applications. This article demonstrates the programming model for Silverlight. This article will be very helpful for the beginners who want to know and start development on Silverlight projects, if you are already working on Silverlight you will find complete understanding of Silverlight Introduction. read more...

add a comment |category: |Views: 225

tags: another

SQL Server - Count(*) or Count(1) ? - Which is better?(beyondrelational.com)

submitted by ashish.gilhotraashish.gilhotra(354) 1 year, 9 months ago

Every so often on the on-line forums, the question of : Which is better Count(*) or Count(1) ? will occur. So can it categorically be proved than one is better than the other ? What we need to do is populate a table and use both count(*) and count(1) and see if we get any performance difference between the two. read more...

add a comment |category: |Views: 675

tags: another

Statistics without Index - Possible and Helpful(blog.sqlauthority.com)

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

A Simple note about the subject, how statistics can be helpful and how they are created. read more...

add a comment |category: |Views: 206

tags: another