1 0
post icon

TSQL – Passing a list to a Stored Procedure

  For different needs, often I had needs to send a list of values ​​to a Stored Procedure. To achieve this goal it is possible to use a workaround with the TSQL function nodes(XQuery) on the types of XML data. We’ll see two examples to better understand the proposed solution. Example 1: How to send [...]

More »
post icon

The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state.

In the SOA-oriented programming, one of the major mistakes that you make when use WCF services is create an instance of the Transparent Proxy statements within the using statement, as follows: The error you get is the following: Type: System.ServiceModel.CommunicationObjectFaultedException. Message: The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the [...]

More »
30 Nov, 2011
post icon

Google Maps Indoors on Android, new challenge by Google

Google Maps for Android ranks maps for some indoor shopping malls, airports and railway stations. Currently available only for the United States and Japan. Until now, the indoors maps were domain of Micorosoft, on Bing Maps. As of today, Android users can also view the indoors maps for places like the San Francisco International Airport, [...]

More »
post icon

Official confirmation of Instagram for Android

I admit I was waiting a long time, even with a hint of envy iPhone owners, the famous Instagram application on the Android platform. It came, finally, the official confirmation from the CEO of Instagram (rif. Nexus-Lab), Kevin Systrom, who has announced that work began on the version of Instagram for Android. The first release [...]

More »
post icon

T-SQL rename Table Sql Server

When you modify database schema on Sql Server with Microsoft SQL Server Management Studio you can simply create script with Generate Change Script function. This is not allowed when you rename a database object, for example when you rename a table (F2 key) or rename Stored Procedure, but also when you rename a table column [...]

More »