Viewing 15 posts - 2,206 through 2,220 (of 2,635 total)
Packages and jobs are stored in the msdb database. Back up the database.
Greg
Greg
October 5, 2005 at 5:16 pm
1. No issues with our clusters, but we've been using per process licensing since installation.
2. I don't think it will affect them at all.
3. I looked at several of our...
Greg
October 4, 2005 at 1:36 pm
Maybe you can use this query with a little tweaking.
select Object_name = o.name,
Object_type = o.xtype,
Data_located_on_filegroup = g.groupname,
Data_located_on_file = s.name
from sysobjects o, sysfiles s, sysindexes i, sysfilegroups g
where ...
Greg
September 30, 2005 at 10:24 am
It's okay to delete from the tables. There are even stored procedures in MSDB that will do it - sp_dump_dtspackagelog and sp_dump_dtssteplog, though your idea of keeping them for x...
Greg
September 28, 2005 at 11:18 am
To find dependencies for the stored procedure, run this in Query Analyzer:
sp_depends 'dpeter.storedprocedurename'
Greg
September 28, 2005 at 10:40 am
No. The columns are presented in the order they occur in the table.
Greg
Greg
September 28, 2005 at 10:31 am
One thing I've read about TargetServersRole is that it's not guaranteed to be supported by MS in the future. It's security was changed in SP3a and I'm sure that threw...
Greg
September 27, 2005 at 12:12 pm
Just ask for a full database backup of the database on whatever media your new ISP wants. I assume the database hasn't been created on the new ISP's server yet,...
Greg
September 27, 2005 at 11:54 am
Can you get a backup of the original database from the first ISP? That would be better than an export to Access because it would include all the database settings,...
Greg
September 26, 2005 at 5:00 pm
You might be stuck with something kludgy like having the child package update an error table when a task fails and having the parent package query the table on return from...
Greg
September 26, 2005 at 4:51 pm
Try setting in the child package properties logging Tab: Fail Package on First Error. Otherwise even if the task fails, the package does not - and your calling package still...
Greg
September 26, 2005 at 10:38 am
Also see "Clustered Indexes" in BooksOnLine.
Greg
Greg
September 26, 2005 at 10:19 am
Helen,
Here's an ActiveX Script that will overwrite the log each time the package runs.
Greg
http://www.sqldts.com/default.aspx?240
Greg
September 26, 2005 at 10:15 am
I've used this for a couplr of years and it seems to work pretty well:
-- search for string in stored procedures in DB
--
-- note: the reason this joins...
Greg
September 22, 2005 at 2:42 pm
Dan,
You could import into a "staging" table with separate name columns, then concatenate as you move the data from there to your "real" table.
Greg
Greg
September 22, 2005 at 1:04 pm
Viewing 15 posts - 2,206 through 2,220 (of 2,635 total)