Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MS SQL Server






SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





How To &&"refresh&&" Transformation In SQL2005 SSIS (I'm Trying To Transfer Random Sql Table Into Dbf)


Im from Russia, sorry if my english is not very good.

Here's the case:

1)-------------------------------
I made a DTS-package in sql2000 that transfers  the [sql table]  into [dbf file] via jet4.
First i create (in delphi) the empty dbf with the same name and columns same as in sql table.
Second, I run my DTS with variables - source and destination  table names

In DTS there is source, destination and  transformation . After I send the Variables(table names)
, the transformation "arrow" needs to be "refreshed" to make column names in both tables correspond each other.  For that in transformation I chose ActiveXScript Mode and wright VB Script:

'**********************************************************************
' Visual Basic Transformation Script
'************************************************************************

' Copy each source column to the destination column
Function Main()

dim i

For i = 1 To DTSSource.Count
DTSDestination(i) = DTSSource(i)
next

Main = DTSTransformStat_OK
End Function

And it works

2)------------------------------
I want to do same thing in sql2005 SSIS but don't figure out how...
I managed to make a package that recieves (in variables) table names and runs correctly.
But after I change those variable names into any other it crashes -
Description: "component "OLE DB Source" (1)" failed validation and returned validation status "VS_NEEDSNEWMETADATA".

Of cource this happens 'cause I didn't "refresh" the transformatoin (and maybe also source and dest), but I don't know how.

Anyone can help ?!




View Complete Forum Thread with Replies
Sponsored Links:

Related Messages:
Trouble With SQL2005/SSIS And Transfer SQL Server Objects
New to SQL2005/SSIS, somewhat experienced with SQL2000/DTS. I have two identical databases, "AppMaster" and "AppTest", on the same instance of SQL Server 2005 Developer. I make changes to the table structure of AppMaster, and then propagate the database structure (no data) to AppTest. This used to work fine with SQL 2000/DTS, but I can't get it to work with SQL 2005/SSIS.

I created an SSIS package with a single Transfer SQL Server Objects task with the following:
- single connection to server (local)
- SourceDatabase = "AppMaster"
- DestinationDatabase = "AppTest"
- CopyAllTables = True
- CopyAllStoredProcedures = True
- CopyIndexes = True
- CopyPrimaryKeys = True
- CopyForeignKeys = True

When I execute the package it completes successfully. I get several messages in the Output Windows stating that:
- "...There are no Logins to transfer."
- "...There are no Users to transfer."
and on and on... There are no references to tables, stored procs, or any of the other things for which I set Copy = True. When I check the AppTest database in Management Studio, the AppTest database has not changed.

BTW - I tried running the package using a single connection for both databases, then with separate connections. No difference.

So I'm at a loss. Am I missing something or is this a bug? Thanks for any help.

View Replies !   View Related
Sql2005 SSIS - Doesn't Transfer The PKs And Indexes Of Tables
Hello,

 

I created ssis package to transfer tables from one DB to another.

However, I don't find the option where I can make that the transfer with the indexes and pks of the tables. in sql2000 I had this option.

 

appriciate your help.

 

Kubyustus

 

 

View Replies !   View Related
How To Refresh Access Table From SSIS Package?
Hi all,
I have created an SSIS package to export rows of data from SQL to Access using SSIS package. The package is executed from asp.net web application. Below is what i want to achieve:
-User enters a date range
-SSIS package will export data between the date range from SQL to Access database.
-When user enter another date range, I want to clear the contents of the Access database. (Im using Execute Sql Task--- Delete tablename)
The problem is that when I look at the table after the second user request, the fields will show #deleted. Only after i click refresh will the new data appear. How can I make the data appear without manually refreshing the Access table.
 Thks alot.

View Replies !   View Related
Reg:SSIS Package To Transfer Data Between SQL Table And Olap Cube
 

Hi All,
can anybody help me in creating the SSIS package to transfer the data from SQL table in database engine to OLAP cube in Analysis services
 
 
Thanks in Advance.
Archana

View Replies !   View Related
Data Transfer From SQL200o To SQL2005
I need to transfer data from SQL Server 2000 to SQL Server 2005 nightly. Replication DB1.T1 table in SQL 2000 to DB2.T1 table (the same table structure) in SQL 2005. What are my options? I need to extract a daily data and do this daily. Some example would be greatly appreciated.
Thanks,
 
 

View Replies !   View Related
Transfer Logins With Passwords And SQL2005
I have versions of sp_hexadecimal and sp_help_revlogin I used with SQL 2000 to transfer logins. Will they work with SQL 2005 as-is? Might I need updated versions?

View Replies !   View Related
SSIS Package Refresh
Hi, I have a little problem with an xml package.

I'm a newbie in the XML field and in the new features of SSIS....so help me!

I want to import a complex xml file in SQL Server via SSIS; I've created a package that map the xml source files to many different destination table. When I try to execute the package, I've one error about data type specified on XSD (for example unsignedShort instead of unsignedLong). At this point I fix the XSD file, settings the correct data type, but I don't find a way to explain to the package that it have to reload the xsd file. The only way is to make a new package....

I'm looking for a way to refresh the package without rebuild it...

many thanks

lavez

View Replies !   View Related
SSIS Refresh Fails
When I use the OLB data source (SQL SERVER 2005), select * from tableA, then
use several steps and then Union ALL and Fuzzy Match, the process works
fine.  When I change the data source SQL to include two tables with a cross
join, the new fields in Table B do not appear in the Union ALL or Fuzzy
Match steps but do appear in all steps prior. The advanced editor refresh
does not fix the problem.  Deleting and recreating the Union ALL shows the
Table A and Table B fields.  Fuzzy Match is still incorrect. Deleting and
recreating Fuzzy Match fixes it.

View Replies !   View Related
Refresh SSIS Pkg To Get The Change
Hi, all,

How do you refresh a SSIS pkg to get the latest table schema change?

I have this data flow task that will load data from a flat file into a table.

I got a Warning: Truncation may occur due to retrieving data from database column "txtSNumber" with a length of 50 to data flow column "txtSNumber" with a length of 20.

Then I went into Management Studio and changed the column size.
Now in my dev BID I got next:
[SQL Server 05[82]] Warning: The external metadata column collection is out of synchronization with the data source columns. The column "txt..." needs to be updated in the external metadata column collection.

I think this means my change on the table did not get into my ssis, and I could not find a way to refresh.

Thanks!
 

View Replies !   View Related
Refresh SSIS Pkg To Get The Change
Hi, all,

How do you refresh a SSIS pkg to get the latest table schema change?

I have this data flow task that will load data from a flat file into a table.

I got a Warning: Truncation may occur due to retrieving data from database column "txtSNumber" with a length of 50 to data flow column "txtSNumber" with a length of 20.

Then I went into Management Studio and changed the column size.
Now in my dev BID I got next:
[SQL Server 05[82]] Warning: The external metadata column collection is out of synchronization with the data source columns. The column "txt..." needs to be updated in the external metadata column collection.

I think this means my change on the table did not get into my ssis, and I could not find a way to refresh.

Thanks!

View Replies !   View Related
SSIS Transfer Objects Report An Error: 0xC002F325 At Transfer SQL Server Objects Task
hi folks

i try to copy all objects from one dt to another db on the same SQL-Cluster.

The transfer work some minutes (generate skripts for creating objects) and will fail if the data would be copy

see errormessege below

 

SSIS package "AdminContent to MCAdminContent.dtsx" starting.

Error: 0xC002F325 at Transfer SQL Server Objects Task, Transfer SQL Server Objects Task: Execution failed with the following error: "ERROR : errorCode=-1071636471 description=An OLE DB error has occurred. Error code: 0x80040E37.

An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E37 Description: "Invalid object name 'dbo.AllDocs'.".

helpFile=dtsmsg.rll helpContext=0 idofInterfaceWithError={8BDFE893-E9D8-4D23-9739-DA807BCDC2AC}".

Task failed: Transfer SQL Server Objects Task

SSIS package "AdminContent to MCAdminContent.dtsx" finished: Success.

 

have any one an work arround for my problem or have i a bad configuration?

thanks for help

 

roland

View Replies !   View Related
SSIS XML Source With Random Child ID??
Hi,

I am trying to load a XML document using SSIS into relational tables and pulling my hair out.

 In it's simpliest form I have:

<Batch>

  <POSBasket>

    <Header>

      <SomeDetail/>

    </Header>

  </POSBasket>

  <POSBasket>

    <Header>

      <SomeDetail/>

    </Header>

  </POSBasket>

</Batch>

 

Now, when you have a parent child situation, you get a column in the output called xxx_Id, in my case, POSBasket_Id. This allows you to relate your header back to your root and SomeDetail back to header etc etc.

Loading all of this in parrallel does not work because there is nothing unique once the load has happened more than once. i.e. You will have repeating POSBasket_Id's as well as Header_Id's.

I ended up loading POSBasket into a table with an identity column. Once done, I would load the header details and do a lookup (eek) on the POSBasket table by using POSbasket_Id "where isComplete = 0" (A flag to tell me current import).

Great, this works find with 1 item in my document. Add a second (2 POSBaskets) and it randomly works. (???) Add more and it hardley works. The look ups are failing with "no match found".

 

On using Data Views, I see that each XML source creates different POSBasket_Id's. Some matching, some not. Also seem to randomly match.

My question is why? Why would there be the ID if they differ when loading them from the same document? They not even unique across sources.

 

Bug or "by design"?

Anyone got a better method for doing this?

 

Cheers,

Crispin

 

 

 

 

 

 

 

View Replies !   View Related
Transfer Data To New Table Then Transfer Indexes
Is it possible/advisable when transfering very large amounts of data from server to server to:
trasnfer the data to a new table first
second alter new table adding indexes, defaults, ets based on original table

if it is what flow item would be used to transfer/alter the indexes and defaults?

I'm very new to ssis so the more detail you can give the better.

Thanks

View Replies !   View Related
Transfer Data To Excel 2007 By Using SQL Server Data Transformation Services
My vendor requires data to be sent in Excel format.  Some of my tables have rows over 65,536 so I need to use Excel 2007 (Max of 1,048,576).  Right now my data sits in SQL 2000.  I am using MS SQL Enterprise Manager 8.0 to prepare the data.  Is there some kind of add on or selection I am missing to use DTS to export from SQL to Excel 2007?Thanks in advance. 

View Replies !   View Related
Refresh A Table
Can i referesh a open table?

The scenario is that i have two windows open... one is the table and the other is the query that modifies the same table. I was wondering if there is a way to refresh the table so that after i modify the table i don't have to close it and reopen it to verify the changes.

 

cheers

View Replies !   View Related
Refresh Table Adapters
How do I refresh a Table Adapter to reflect changes in SP or SQL statement?
I created a Table Adapter based on a SP.  I added a column to the SP (foo) which was added to the table adapter when I re-configured.  I next deleted foo in the SP but could not get the table adapter to reflect this change.  I then added a column (Foo) to the SP which was reflected in the table adapter.  Deleted it and could not get rid of foo and Foo in my table adapter.
Help!
Jay

View Replies !   View Related
Refresh Table In Access
 

Hello,
 
Now, that when I open a access I need to go to Data -> Databse Utilities - > Refresh Table Manager.  Then I select which table to refresh.  Is there a way to make it auto refresh when I the database?
 
Any help would be greatly appreciate.
 
Thank You

View Replies !   View Related
Returning Random Records And NOT Similar (random Questions)
Hi,I need to extract randomly 5 records from the table "Questions". Now I useSELECT TOP 5 FROM Questions ORDERBY NEWID()And it works. The problem is that I need an additional thing: if SQLextracts record with ID=4, then it should not extract record with ID=9,because they are similar. I mean, I'd like something to tell SQL that if itextracts some questions, then it SHOULD NOT extract other ones.How can I do it?Thanks!Luke

View Replies !   View Related
Replication - Scheduled Table Refresh
What is the time interval when you choose this option "Scheduled table refresh" to replicate and how do you find out? Thanks

-Hoang

View Replies !   View Related
How I Get The Random Row From The Table?
When I execute the following query several times, I get the same row if there is no new data inserted:

SELECT TOP 1 * FROM TableName

Is there a way to get a random row from the table? Thanks in advance.

View Replies !   View Related
SSIS Data Transformation
I have begun using SSIS and I am a little taken aback by the complexity of it especially since I just want to do a simple data transformation such as in DTS.
Are there any tutorials for data transformation for SSIS on the web/this forum and what if I want to do a simple transformation from Access to SQL Server?

View Replies !   View Related
Inner Join Transformation In SSIS
hi all,

My issue is the inner join transformation in SSIS.
See i ll explain my problem clearly now.....

Actually i m just checkin if the inner join performed in business intelligence studio usin the inner join transformation and the inner join performed in the management studio using queries are same. Logically both the resultset should match isn't but in my case it is not so. It is very important for me to figure out where the problem is because i m goin to use lotsa inner join transformations in my current project.

I ll appreciate if someone can help me to figure out this problem. May be you can also tell me the detailed steps in adding the inner join transformation and also how it works.

Thank you,

View Replies !   View Related
MAX And Lookup Transformation In SSIS
I have the following query:

SELECT EMPID,EMPNAME from EMPLOYEE
where EMPID = (SELECT MAX(EMPID) from EMPLOYEE group by EMPNAME,insert_date)

Here one can use above query in Dataflow of SSIS and specify SQL to create temporary table and later can use as lookup to join to other table.

Is there any way in SSIS to directly do the MAX of EMPID in lookup and join to the main source table.

Any help is really appreciated.

Thanks.

View Replies !   View Related
Transformation Script In SSIS
Hey all - got a problem that seems like it would be simple (and probably is : )

I'm importing a csv file into a SQL 2005 table and would like to add 2 columns that exist in the table but not in the csv file. I need these 2 columns to contain the current month and year (columns are named CM and CY respectively). How do I go about adding this data to each row during the transformation? A derived column task? Script task? None of these seem to be able to do this for me.

Here's a portion of the transformation script I was using to accomplish this when we were using SQL 2000 DTS jobs:


'**********************************************************************
' Visual Basic Transformation Script
'************************************************************************

' Copy each source column to the destination column
Function Main()
DTSDestination("CM") = Month(Now)
DTSDestination("CY") = Year(Now)
DTSDestination("Comments") = DTSSource("Col031")
DTSDestination("Manufacturer") = DTSSource("Col030")
DTSDestination("Model") = DTSSource("Col029")
DTSDestination("Last Check-in Date") = DTSSource("Col028")
Main = DTSTransformStat_OK
End Function
***********************************************************
Hopefully this question isnt answered somewhere else, but I did a quick search and came up with nothing. I've actually tried to utilize the script component and the "Row" object, but the only properties I'm given with that are the ones from the source data.

thanks in advance!


"Lord, beer me strength."

View Replies !   View Related
Lookup Transformation In SSIS
Hi Everyone,

I have created a SSIS pakage using the Lookup transformation in SSIS. The package seems to run too long (over 2 hours and still running)for a source table having records for 134 records and lookup table having just over 4000 records.

The two tables table are join using a key id mkmodyr, that is:

source table lookup table
field1 fld1
field2 fld2
field3 fld3
field4 mkmoyr
field5
field6
mkmoyr
.
.
.
field12

The sql statement in the Lookup Transformation editor is:

select * from
(select * from [dbo].[year_derived_series]) as refTable
where [refTable].[mkmodyr] = ?

The package bring all fields from the source table and one field from the lookup table into a new table.

Can anyone please help or let me know what I've done wrong? I would be appreciated.

Thanks in advance.

View Replies !   View Related
Getting Random Table Entries
Hi,I have a  form that should show 2 pictures based on table entries.I want those 2 pictures to be randomly selected based on a database table. So, my table has all the entries, and I want to pull out a random entry that has been approved to display it.Can someone help me with the sql query?I can do SELECT VoteId FROM tblVotes WHERE Approved=True..But how do I make selection a random one that changes every time the user gets another entry? 

View Replies !   View Related
Get Random Record From SQL Table
Hi,I am in a situation where our developer is on leave (annual leave for a month), and I have to add a control to my website, which is in aspx apges.To start with i have created a table in my SQL database. this table has records with one-liners from various movies, and the movie title. The tabel have 3 columns, i.e. ID, Liners, MTitle.So i want to get random records on the page when ever its refreshed. I am totally non-coder/programmer guy. I have got a SQL statement from the internet " SELECT TOP 1 * FROM <table name> ORDER By NEWID() "So would anyone please help me out with it, as is it correct, how can i apply in the aspx pages. Thank you. 

View Replies !   View Related
SSIS Execution Of Transformation Tasks.
I'm not exactly sure how to ask this question ... but here goes!!

I want to get an idea of how SSIS actually executes transformation tasks.

Do transformation tasks (eg a lookup) complie down to managed code or are the executed as SQL commands in a SQL server database?

Thanks.

View Replies !   View Related
SSIS Data Transformation Using Look Up Or Scripting???
Hi all,
 
I've got to change values in my source database as follows:
 
Source:        Target:
 
X                 1
Y                 1
Z                 2
 
Can I create a lookup table and us a look up task in SSIS to do this or do I need to script it?
 
Thanks
 
F

View Replies !   View Related
SSIS - Derived Column Transformation
Hello All,
 
Can someone help me out in providing the STEPS to solve this problem. My scneario is, I've a table which has got 2 fields and 5 default row values have been filled in. Now, using the above, duirng package runtime, it need to dynamically create additional field and has to store values like for.e.g (0001 America).  I'm getting the following error while executing the ssis package.
 
1. [DTS.Pipeline] Warning: Component "Derived Column" (1170) has been removed from the Data Flow task because its output is not used and its inputs have no side effects. If the component is required, then the HasSideEffects property on at least one of its inputs should be set to true, or its output should be connected to something.
2. [DTS.Pipeline] Warning: Source "OLE DB Source Output" (87) will not be read because none of its data ever becomes visible outside the Data Flow Task.
 
Please suggest with your valuable solution at the earliest.
 
Thanks
Vaiydeyanathan.V.S

View Replies !   View Related
Active X Transformation Tasks In SSIS
Hi
I have migrated a DTS that had some activeX transformation tasks within data pump flow tasks.

Those parts were migrated as "DTS 2000 tasks" .. so activeX transformation tasks aren't possible in SSIS ?
I know ActiveX script tasks are but for transformations ?

1. IF i leave these Encapsulated DTS 2000 tasks in the migrated SSIS package, will it run independently of the original
DTS or does it need the old DTS running to "call" that part from ? (I hope im making sense here)
is it possible to load this functionality internally into the new SSIS ?

2.
How could I (if i can't do ActiveX transformation tasks) achieve this is SSIS ?
can I achive this using the script tasks in SSIS ?

View Replies !   View Related
SSIS - Activex Script In Transformation.
I have a flatfile source to which different flatfiles will be passed as input,this is connected to an OLEDB destination which changes along with the sourcefile.
But when the new file is given as input, the OLEDB mappings are not getting refreshed.It is showing an error.

Actually this was implemented in DTS, and they have used an activex script for the transformation.
what shd I use in SSIS?

Please help me..

Sharmada

View Replies !   View Related
SSIS And Active X Transformation Tasks
Hi
I have migrated a DTS that had some activeX transformation tasks within data pump flow tasks.

Those parts were migrated as "DTS 2000 tasks" .. so activeX transformation tasks aren't possible in SSIS ?
I know ActiveX script tasks are but for transformations ?

1. IF i leave these Encapsulated DTS 2000 tasks in the migrated SSIS package, will it run independently of the original
DTS or does it need the old DTS running to "call" that part from ? (I hope im making sense here)
is it possible to load this functionality internally into the new SSIS ?

2.
How could I (if i can't do ActiveX transformation tasks) achieve this is SSIS ?
can I achive this using the script tasks in SSIS ?

View Replies !   View Related
Data Transformation Task In SSIS
Hi,

How I set the Transform Data Task Property in SSIS package

As I designed SSIS where I mapped my text file columns to database table columns but if I selected wrong input text file having less columns than database table then how I will get error that it will not found remaining columns

suppose my DB table contain 3 columns and my (wrong) text file contain 2 columns then i should get error message that column003 is not found????

T.I.A

View Replies !   View Related
Select Random Records From MS SQL Table?
Hello,I have 1000 of records in my table. I wanna select random 100 of them? How?regards

View Replies !   View Related
How Do I Select A Random Record From The Table
Hello,

I need to write a select statement where I need to select the record randomely. Is there any function to do that? What's the best way to do that? Please help...

Thanks in a million.

Sarika

View Replies !   View Related
SELECTing Random Record From TABLE?
Hello.
I need to select a random record from TABLE. It might look easy with using RAND() function, but the tricky part is that ID's which are the PRIMARY KEY, were assigned as a random number.
So right now ID's in that TABLE look some thing like that: -18745, 45809, 129, -5890023, 487910943, -209, etc...
If any one have any ideas please respond.
Thanks in advance.

View Replies !   View Related
Random Value From A Table Based On Timeframe ?
Hello Everyone,
 
I want to get a random value from a table only once a day, not on every page load.
 
With this SQL I can get a random value and everytime it gives me new value....
 

SELECT TOP 1 PRODUCTID

FROM PRODUCT

ORDER BY NEWID()
 
How the above query can be changed or there can be some sort of trigger set that same value for 24 hours....and it changes after that ?

View Replies !   View Related
How To Select Random Row In Table Using Sql Server...
I Got the Sql query "Select Top 1 * from Books order by NewId()"........ for select Random row in  a table .. any one can explain Above Query

Regards,

S.sajan

View Replies !   View Related
Random Loop Through Table Without Using The Same Records Over Again.
Hello,
 
Anyone have any suggestions on creating a query that will randomly select records from a table, but not use those records again. I have some code that does it, but it uses the same fields over again, and also throws in some blank records that I did not specify in the query. I am creating a test engine that has to randomly ask questions.

View Replies !   View Related
Insert Random Values In A Table
Hi all!

I want to fill a table with random values. In each line should be a different value - "independet" from the value the row above.

what i tried didnt work, it always produced the same value.



Maybe you have an idea

Thankx in advance and greetings from Vienna

Landau

View Replies !   View Related
SSIS Changing Column Order During Transformation
First let me say, I really can't believe this chain of events myself--and they are happening to me.

I am upgrading several DTS packages to SSIS on what will be my new production server.  These packages create tables, export them to a flat file, and ftp them off to other locations.

What is happening (on the SSIS side) is that the OLE DB Source is reordering some of the columns on its own (moving them to the end of the table/file.  Then when my pickup/load routines run, the data is out of place and they fail.

Can anyone please explain what is happening here with the mapping.  I have evaluated the table and the columns are in the order that I expect.  When I preview the source table in the OLE DB Source Editor the columns are in the correct order/alignment, but when them in the OLE DB Source Editor --Columns section within BIDS the order is changed arbitrarily.

I have been somewhat successful (2 out of 3) in being able to re-map the data, but this last table just doesn't want to change. 

Thanks in advance for any help and/or information you can provide

 

View Replies !   View Related
ActiveX Script Transformation Column In SSIS But How???
Dear all,
 
I€™ve made a SSIS package which might take source columns from a plain text file and copy them to the Sql table.
A long time ago, when you did the process I did by dts and that stuff included a pump task which had ActiveX Script transform column with VbScript stuff inside so that, how do I for to do the same with SSIS??
 
I€™ve got a couple of tasks: Flat File Source and OleDb Source Destination but it€™s useless at all for that goal.
 
Does anyone have ever used or faced this hended?
 
Thanks for any input,

View Replies !   View Related
SSIS Script Transformation: Loop Through Columns In A Row
 
HI,


How do I loop through all columns in a row using a script
transformation? For example if I want trim all columns.


If I want to trim one column this is a simple script:



Public Class ScriptMain
    Inherits UserComponent


    Public Overrides Sub MyAddressInput_ProcessInputRow(ByVal Row As
MyAddressInputBuffer)


        Row.City = Trim(Row.City)


    End Sub


End Class



But what if I want to do that for all columns? I don't want to name
them all like this:


 
Public Class ScriptMain
    Inherits UserComponent


    Public Overrides Sub MyAddressInput_ProcessInputRow(ByVal Row As
MyAddressInputBuffer)


        Row.Column1 = Trim(Row.Column1)
        Row.Column2 = Trim(Row.Column2)
        Row.Column3 = Trim(Row.Column3)
        ...
        ...
        Row.Column997 = Trim(Row.Column997)
        Row.Column998 = Trim(Row.Column998)
        Row.Column999 = Trim(Row.Column999)


    End Sub


End Class



Is there a simple foreach column in Row.columns option?


-- Joost (Atos Origin)

View Replies !   View Related
SSIS &&amp; Script Transformation (debug Vs Normal)
I just ran across an interesting problem, that makes no sense. I
built
an SSIS package that updates a column, using an transformation
script.
Testing in Debug mode everything runs perfectly, but when I have SQL
sever agent run the package it insert null into the new column.


Any thoughts or suggestions would be greatly appreciated.


r/ Anthony
 

View Replies !   View Related
Data Transformation: Copying A Table To A Table... How Does It Work?
Hello,

Probabaly a silly question yet as a DOTNET developer, I'm trying to simulate DTS when for example, I don't have permission to perform DTS on a production server.

In particular and interested regards caching of rows before the service decides to flush the buffer and write to the target table. Safe to assume DTS is cursor based?

View Replies !   View Related

Copyright © 2005-08 www.BigResource.com, All rights reserved