Viewing 15 posts - 16 through 30 (of 153 total)
There is no dynamic import of data....
I was struggled the same for Siebel to SFDC of one of Data Migration Project.
But you can try with SQL Commands..
June 11, 2015 at 3:25 am
Use coalesce for (after applying SUM() and Groupy by) as A
February 25, 2015 at 5:19 am
Please try the below one for your requirement
---------------------------------------------------------------------------
Selectid,
SumAmt,
Typ,
code ,
createdDt,
CCY,
AppNo
from (
select S.Id,
S.SumAmt,
M.typ,
M.code ,
M.createdDt,
M.CCY,
M.AppNo,
ROW_NUMBER() over (Partition by M.Id Order by M.Typ Asc) Rn...
February 22, 2015 at 10:58 pm
Step1:Load SQL to AS400
Step2: Update SOurce table flag with Destination data for matched as 1 and mismatched with 0
February 20, 2015 at 12:36 am
It means that some LF of CRLF or some text code is missed in your Flat file...Check your flat file is with correct format or not...
Change CR , LF ,...
February 12, 2015 at 12:26 am
Correct if you are looking for the below one
The select is of a.* not b.*
if this is one you are at...
Delete the matched records from source table(Second) with First...
January 28, 2015 at 11:46 pm
For huge amount of data :-
Load Excel data into Intermediate table (create this) and then do MERGE with primary table if they( Primary & Intermediate) have any joining Columns...
For...
January 27, 2015 at 12:19 am
CONCAT is the System function..no need to specify as dbo.CONCAT, if you specify like this ...the SQL will go search an object exists with CONCAT in your User Objects....
plz...
January 22, 2015 at 2:37 am
Below is for your information..... It may be depends on Server Envioronmrnt also....
1. In-place upgrade
Easy to implement
...
January 22, 2015 at 2:05 am
Use CHARINDEX and SUBSTRING functions...
November 27, 2014 at 2:30 am
The query executing successfully in Query window?
If yes... then Security permission issues are there ..
The problem with the SQL Agent is that it runs under an account which does not...
November 27, 2014 at 2:29 am
Use below query on your DB
select name,modify_date from sys.objects where type='P' order by modify_date desc
November 16, 2014 at 11:53 pm
Use ANSI files only for extraction...
Once all files are extrcted then do Conversion using script task.....
Dont use Code page as 65001 in advance editor or in Flat file manager
September 25, 2014 at 3:37 am
Thanks to all for your inputs.....
Even though we followed the 65001 in OLEDB data source & Connectin Manager...i came to know some data ( pound symbol & euro symbole )...
September 9, 2014 at 3:10 am
Viewing 15 posts - 16 through 30 (of 153 total)