Search Results

1
vote
4answers
747 views

Using SSIS to refresh a training database from a production database

Hey All, I have a particular system on out network where we need to maintain a training installation. The system uses SQL Server 2000 as its database engine and I need to set up a system f …
1
vote
6answers
498 views

SQL DTS Database Copy Fails

Hey All, I have been working on this problem for a while and the usual google searches are not helping :( I have a production database in SQL 2000. I want to copy it over the top of a train …
1
vote

What is the easiest way using T-SQL / MS-SQL to append a string to existing table cells?

I wanted to adjust David B's "Life Lesson". I think it should be "never use char for variable length string values" -> There are valid uses for the char data type, just not as many as some people t …
0
votes

Copying relational data from database to database

Are you clearing the destination tables each time and then starting again? That will make a big difference to the solution you need to implement. If you are doing a complete re-import each time the …
0
votes

Using SSIS to refresh a training database from a production database

Good questions Matt - I should have included that info. I am running it from Visual Studio at this stage as I am still testing. The database connection is set to use windows authen …
0
votes

Kerberos Delegation for Clients Ouside the Firewall

I'm not really in a position to tell you why kerberos isn't working for you, but did have a alternative suggestion for your configuration. You can use ISA services to expose the reporting server ra …
0
votes

Copying relational data from database to database

If you are adding each time then you may need to keep a permanent table to track the relationship between source database primary keys and destination database primary keys (at least for the parent …
0
votes

Reporting Service 2005 Anonymous Authentication for Report Subscription

I don't think it is possible to do that - in order to have a subscription reporting services needs to link it to an account for the email address. [Edit] I double checked and it doe …
-1
votes

Can foreign key constraints be temporarily disabled using TSQL?

I'm supporting ScottStonehouse - you most definitely can disable constraints when manipulating data. HOWEVER: as a general rule you should NEVER do this. One of the only exceptions would be when yo …
3
votes

Oracle considers empty strings to be NULL while SQL Server does not - How is this best handled?

My typical solution would be to add a constraint in SQL Server forcing all string values in the affected columns to have a length greater than 0: CREATE TABLE Example ( StringCol …
0
votes

SQL DTS Database Copy Fails

Thanks for the response hectorsosajr. the object aparrently causing the error (dbo.vwEstAssetStationAddress) is a view that references 2 underlying tables. I have tested querying the view, …
0
votes

SQL DTS Database Copy Fails

I was trying to avoid doing it via backup / restore. There are some users of the database that are SQL Server accounts (not Active Directory). This becomes a pain in the but if you need to do it fr …
0
votes

SQL DTS Database Copy Fails

I've run another test to try and isolate this. I removed the mentioned view from the destination database totally, then ran the DTS again. It failed with the same error. However, the view that apar …
2
votes

SQL DTS Database Copy Fails

I feel stupid, but am posting the answer I just found for prosperity (and so all you helpful fellows can stop stressing on my behalf. Even though I had selected all the user tables, views, …