Viewing 15 posts - 2,206 through 2,220 (of 2,897 total)
FYI, With help from naveenka on another forum, I think I found the problem.
The package uses an SSIS Package Configuration, that is pointing to the "SSIS Configurations" table in ...
September 22, 2008 at 9:43 am
"truncate table" as the first step in the package.
September 20, 2008 at 9:19 pm
Great script, Thanks !
I had a few databases offline, so I did this to ignore them:
-- I added the "status" field check for SQL 2000 & 2005
SELECT name
...
September 19, 2008 at 9:43 am
b roy (9/17/2008)
The msdn covers this topic pretty well:http://msdn.microsoft.com/en-us/library/ms141091.aspx
http://msdn.microsoft.com/en-us/library/ms141711.aspx
Enjoy
Those are links to SSIS 2008. Are they applicable to 2005 ?? Or are there big differences between 2005 SSIS...
September 17, 2008 at 7:02 am
randy.witt (9/16/2008)
September 16, 2008 at 12:16 pm
Are there any sites or links that show approximate price comparisons for the not-free tools?
Thanks again,
webrunner
I think SQL Server magazine has done some ratings of various tools.
Just call them up...
September 15, 2008 at 8:35 pm
Niyala (9/11/2008)
Thanks a lot! The interesting issue that the two databases are not on the same instance. DB1 and DB2 are in separate instances.Niyala
Then you would need linked servers to...
September 11, 2008 at 8:54 am
You could code something like this:
[font="Courier New"]SELECT MIN(Table_1) as Table_1, Fld1, fld2, fld3
FROM
(SELECT 'Table_1' as Table_1, a.Fld1, a.fld2, a.fld3
FROM Table_1 a
UNION ALL
SELECT 'Table_2' as Table_2, b.Fld1,...
September 11, 2008 at 8:32 am
What method are you using to restore when it fails ?? Perhaps it is pointing to the wrong drive ?? For example, you manually restore to E...
September 11, 2008 at 7:48 am
Do you want to know if the data in the tables is the same ? Or if the table schemas are the same ?? I wrote some...
September 11, 2008 at 7:22 am
Nice reply. GSquared !!
Wouldn't simply replacing the DELETE with TRUNCATE help a tiny bit ?
September 10, 2008 at 8:19 pm
You can buy a tool such as Idera's Compliance Manager. It will alert you about any number of SQL changes.
September 9, 2008 at 1:57 pm
I've never had a problem backing up or restoring via UNC path in SQL. I don't do it a lot, it's not ideal, and it's slow, but it does...
September 9, 2008 at 1:40 pm
Thanks for the replies. I think there are some hiccups on our VPN that's causing the problems. I heard a couple of others here are having the same problem, along...
September 9, 2008 at 12:21 pm
Sounds like you're referring to logical devices, not a separate machine that has tapes.
I prefer to keep all the databases separate. I don't use backup devices. I backup each database...
September 9, 2008 at 7:51 am
Viewing 15 posts - 2,206 through 2,220 (of 2,897 total)