Viewing 15 posts - 8,701 through 8,715 (of 8,760 total)
cooljagadeesh (3/27/2014)
which way is the better for 1 million records inserting into one table1) insert into destination
select * from source
2) BULK INSERT destination
FROM '\\computer\source.txt';
3) BCP
Quick...
March 28, 2014 at 1:57 am
sandeep.patel1 (3/27/2014)
I want to assing my Aggregate transformation output(Which Returns only one value like 5.50) into a Variable.
How can i do this.
I already created a variable in Package...
March 28, 2014 at 1:26 am
Well, this is what I got when I tried that:
Error1Error loading 'Weekly_FullSnapshots - Forecasts Live - xml edit.dtsx' : The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT)).G:\Mhub_Operations\DATA\SSIS\Archive_Snapshots\Weekly_FullSnapshots -...
March 27, 2014 at 10:55 pm
Create a variable which has high enough scope for all the tasks you want to use the variable in. Then assign the initial value to the variable where the value...
March 27, 2014 at 2:49 pm
The way I would do this is :copy the package file, open the package in a text editor, delete everything including the tags between any instances of <DTS:ConnectionManager> and <DTS:ConnectionManager...
March 27, 2014 at 2:10 pm
ErikMN (3/27/2014)
March 27, 2014 at 11:09 am
One suggestion is to use derived column and the replace function inside the left function.
March 27, 2014 at 10:58 am
kmdavisjr (3/27/2014)
March 27, 2014 at 10:37 am
You can query the xml package file to list all connections, look at this thread for more info;
http://www.sqlservercentral.com/Forums/Topic1380488-21-1.aspx
March 27, 2014 at 8:55 am
Quick question, are you using full-text search on the server?
Edit:
The server is pretty smart when it comes to interpreting even the strangest of user's naming :w00t:
As an example, this...
March 27, 2014 at 2:58 am
No "clean" function that I know of, manual labour I am afraid.
To speed the process, use the property (F4) window, lists connections etc. of data flow and control...
March 27, 2014 at 2:09 am
You could (protect your identity by 😉
1. Script the database
2. Run the create table part only at the destination
3. Use Import wizard to transfer the data, enable identity insert...
March 27, 2014 at 12:14 am
My 2 cent;
An apostrophe is a valid character in a surname so that should be catered for.
March 26, 2014 at 6:37 pm
Hi,
You can use the ROW_NUMBER function to produce the desired results.
Is this what you are looking for?
SELECT
A.[CHAIN VALUES]
,A.TIPE
,A.CORR
,A.OPERATION_ID
,A.[DUE DATE 1]
,A.[DUE DATE 2]
FROM (
SELECT
ROW_NUMBER() OVER
(PARTITION BY...
March 26, 2014 at 12:05 pm
The N denotes the N(VAR)CHAR type, without it the N it would be (VAR)Char.
😎
March 26, 2014 at 7:06 am
Viewing 15 posts - 8,701 through 8,715 (of 8,760 total)