|
|
-
6 Liked
| 7 Learned
| 1 Comments
|
|
Recently I am surfing on net I found useful post for LINQ there is a Zip Operator is introduce in LINQ thread two list together
eg.
[code]
string[] codes = { "CAD","HRK","ILS", "JOD", "LTL"};
string[] states =
{
" Canadian Dollar",
"Cr......
|
|
-
|
|
How to make a package dynamic or parameterize the package. ...
|
|
-
|
|
This week, I resolved one issue which I received continuously which is noting but exactly displayed in post title. The issue occurred when I ran ssis package with batch file or scheduled job and same error message raised. Source: Start Exe...
|
|
-
|
|
You all know about the database file structure as whenever we created databases without specifying file location and filegroups , they will be created in default path and default filegroup. Here i have tried to created a new database without defining an...
|
|
-
13 Liked
| 11 Learned
| 10 Comments
|
|
Microsoft has a free SEO toolkit, which can be used to identify the SEO problems in your website. You can install it from here.
http://www.microsoft.com/web/seo/
Once, you install the tool, you can open IIS and analyze any website. Once analysis ......
|
|
-
|
|
A while before few weeks, I discussed about an error of replication “The row was not found at the Subscriber when applying the replicated command”. We had a tricks to get discrepancies for error table and resolved issue. Let me put another method (Actu...
|
|
-
|
|
Last time I have wrote about pivoting and the next after that post describes for dynamic columns which used for pivoting. We have seen the example and the same example implemented with dynamic columns. You can read both posts which are following, 1. S...
|
|
-
|
|
During working with one logic, i got chance to work with PIVOT operation. Sometime we need do require rowdata as column in our custom logic, then we can use some temp table and then populate agreegate data in temp table. But With PIVOT w......
|
|
-
|
|
BCP is one of the fastest methods to export data to various formats like csv,txt,etc and doing this in a command mode is faster than doing it via SSMS.
Let us create this simple tablecreate table test(id int, name varchar(50))
insert into test(id,name)...
|
|
-
|
|
This article talks about ETL and gives a brief overview of SSIS...
|
|