Viewing 15 posts - 211 through 225 (of 3,738 total)
I put everything on 1 line:
CD C:\RefreshTestFromProduction\SSIS\Drop_Constraints_629 Foreign_Key_ConstraintsDrop.dtsx /COPY SQL;Drop_Constraints_629 Foreign_Key_ConstraintsDrop /DESTSERVER "PRODDATA6"
I get the error 'system does not recognize the path specified'
Any ideas?
April 20, 2016 at 8:32 am
I tried executing the following from the command line:
CD C:\RefreshTestFromProduction\SSIS\Drop_Constraints_629 Foreign_Key_ConstraintsDrop.dtsx
/COPY
SQL;Drop_Constraints_629 Foreign_Key_ConstraintsDrop /DESTSERVER "ServerName"
I get the following error:
'SQL' is not recognized as an internal or external command
What is the correct...
April 20, 2016 at 8:19 am
April 20, 2016 at 7:27 am
I specified SQL Server and the path within MSDB.
I click next and it displays a Windows path.
I added a package just prior to this and it worked fine.
I probably need...
April 19, 2016 at 1:20 pm
I had changed the protectionlevel property to Don't save sensitive but I did not save the package\project.
April 19, 2016 at 12:31 pm
John Rowan (4/19/2016)
Are you using the .ispac file for deployment?
When I use .ispac I get an error that it failed to encrypt and XML node.
When I click build it does...
April 19, 2016 at 12:28 pm
John Rowan (4/19/2016)
Are you using the .ispac file for deployment?
I'm using the manifest file.
Thanks.
April 19, 2016 at 12:16 pm
TheSQLGuru (4/7/2016)
After...
April 7, 2016 at 10:59 am
P Jones (4/6/2016)
April 6, 2016 at 3:33 am
I have everything taken care of.
Thanks.
April 5, 2016 at 3:17 pm
I discovered that if I perform a Truncate I do not get a table name but if I do a Delete from SSMS I do get the table name.
I would...
April 5, 2016 at 11:43 am
ok, I dropped the constraint but sometimes the error message does not include the table name.
April 5, 2016 at 10:32 am
ok, I'm missing something?
DELETE
FROM Postal_CountyRegion
Msg 547, Level 16, State 0, Line 2
The DELETE statement conflicted with the REFERENCE constraint "FK_ContractorCoverage_Postal_CountyRegion". The conflict occurred in database "PrData", table "dbo.ContractorCoverage", column 'CountyRegionID'.
The...
April 5, 2016 at 10:08 am
My bad. I thought that I delete would work.
The delete works sometimes
I execute the following and I get a FK error:
DECLARE @ServerName VARCHAR (25)
SET @ServerName = @@ServerName
IF @ServerName = 'TESTDATA2V'
BEGIN
---...
April 5, 2016 at 8:58 am
Phil,
Thanks for your input.
I had already tried deleting before making this post but I got the same error.
Do I DROP the constraint from the referenced table or the table I'm...
April 5, 2016 at 7:42 am
Viewing 15 posts - 211 through 225 (of 3,738 total)