Viewing 15 posts - 1,426 through 1,440 (of 2,636 total)
I've heard of this problem before. It has to do with variable data lengths in the source. The usual advice is to try the workaround in this KB article:
August 2, 2007 at 9:28 am
Either drop the foreign key constraints before importing and recreate them after importing or import the tables in the corrrect order (parent then child, as you stated).
Here's a script I've...
August 1, 2007 at 6:22 pm
Here's one that I created to run a DTS package. Note that the DTSRun command is encrypted as I don't have one on hand that's in plain text. The entry...
August 1, 2007 at 6:18 pm
SQL 2005 gives the option to log step results to a table. You could check that for each step, then query the table in the last step of the job...
August 1, 2007 at 10:46 am
John,
See "SQL Server Agent Fixed Database Roles", particularly SQLAgentOperatorRole, in BOL.
Greg
August 1, 2007 at 10:25 am
Maybe Loner means she uses OPENROWSET?
Greg
August 1, 2007 at 10:08 am
If DBCC DBREINDEX is used in the plan, you're probably right that it's generating a lot of growth in the transaction log. I noticed that you have restricted log file...
July 31, 2007 at 10:35 am
I'm not sure how much help I can be. I'm able to create a connection in a DTS package for a SQL 2005 data source. The only time I've gotten...
July 31, 2007 at 8:58 am
Try logging on to the database server using that account and try executing the package manually.
Greg
July 31, 2007 at 8:46 am
Use sp_helpsrvrolemember. What do you want to do with the list of logins once you get them?
Greg
July 30, 2007 at 5:13 pm
If, by circular reference you mean a table referring to itself via a foreign key constraint, the query I posted should show that. You can get rid of them by...
July 30, 2007 at 12:07 pm
We've chosen to migrate rather than upgrade mostly because we wanted an easy way to fallback if something didn't work as expected in SQL 2005 and because some of our...
July 30, 2007 at 10:07 am
Try this query to get a list of all the foreign keys and referenced tables in a database:
select
t.name as 'Table', c.name
July 27, 2007 at 10:11 am
I generally work 40 per week with occasional after hours or weekend work for which I get hour for hour exchange time - no overtime pay. I work 7:00 AM...
July 27, 2007 at 9:16 am
I would use backup and restore, then sync up the users, etc. This article covers just about any problem you'll have:
http://support.microsoft.com/kb/314546/en-us
Greg
July 24, 2007 at 2:36 pm
Viewing 15 posts - 1,426 through 1,440 (of 2,636 total)