Viewing 15 posts - 1,636 through 1,650 (of 2,636 total)
Data Sheet,
Did you create a DTS package or an SSIS package? If you're just getting started in SQL 2005, I suggest you read up on SSIS and how it's different...
April 5, 2007 at 12:57 pm
Why do you want to execute the package from a stored procedure instead of executing it in a job step?
There are ways to execute a package in a stored...
April 5, 2007 at 12:53 pm
Are you using a mapped drive in the file path? If so, try using a UNC path. Does the Package fail and generate an error message?
Greg
April 5, 2007 at 12:36 pm
Sysjobhistory doesn't get written to until the job completes. You have to look at sysprocesses to see what's currently executing.
Try this:
select RTrim(J.Name),last_batch
from msdb..sysjobs J with (nolock)
inner join master..sysprocesses RP with...
April 4, 2007 at 1:15 pm
Yes, you can export to files then import the files to the new database. You'll just have to be able to either see the files from the new server or...
April 3, 2007 at 2:19 pm
Log shipping is a warm standby solution rather than hot standby because there is no automatic failover. Since log shipping isn't available in SQL 2000 Standard Edition, you'd need to...
April 3, 2007 at 1:02 pm
Use this query to find which Product_ids are duplicated:
SELECT
DuplicateCount = COUNT(*),
Product_id
FROM TableWithDuplicates
GROUP BY Product_id
April 3, 2007 at 12:48 pm
You can use DTS to copy the data after you've created the new database. Try the Import/Export wizard and choose "Copy objects and data between SQL Server databases".
Greg
April 3, 2007 at 9:20 am
What kind of backup is it? Database or log? I've seen that message when the job tries to do a log backup of a database that's set to Simple recovery...
April 2, 2007 at 9:14 am
Sorry, I don't know anything about that. Try http://www.sqlsecurity.com.
Greg
April 2, 2007 at 8:46 am
Arun,
There's a script in the script section of this site that will script out all the linked servers in an instance. I used it recently to transfer linked servers from...
March 30, 2007 at 11:40 am
Hi Eamon,
I'll bet the names you'd like to see are the descriptions you entered when you created the tasks. Unfortunately, those aren't stored in sysdtssteplog. Are you set on finding...
March 30, 2007 at 11:33 am
I don't know if you can get it in T-SQL, but you can see the version by looking at the properties of C:\Program Files\Microsoft SQL Server\90\DTS\Binn\MsDtsSrvr.exe, which is the executable...
March 29, 2007 at 5:04 pm
Bob,
You should be able to run the package with no changes. I've created a package in SQL 2000 that exports data to a database in a SQL 2005 instance and...
March 23, 2007 at 9:40 am
Viewing 15 posts - 1,636 through 1,650 (of 2,636 total)