Viewing 15 posts - 181 through 195 (of 372 total)
Sounds like a password issue. If it is, here are two options.
1. Set the password for the FTP Connection in a Script Task before the FTP Task.
2. Use a...
May 2, 2008 at 3:52 pm
Could be wrong, but that Test button in the Agent properties looks to be for SQLMail only. I checked on a SQL 2005 SP2 and SQL 2008 CTP instance;...
May 2, 2008 at 2:29 pm
Don't know about the log, but if that's the DELETE statement it's removing all your current records and leaving the ones older than 6 months.
May 2, 2008 at 10:13 am
Is there a way that I can use one update query and subqueries to update my entire subset in certificate table?
To update all the records you could place your selection...
May 1, 2008 at 3:50 pm
For .mdf, .ndf and .ldf files there's the sys.master_files catalog view; the size column is in 8KB pages.
For .bak there's the msdb..backupfile backup history table. That would show where...
April 30, 2008 at 12:37 pm
Check how many files make up your database and the original locations.
RESTORE FILELISTONLY FROM DISK = 'C:\myBackup.bak'
Then check to see if any of those files are in use by another...
April 25, 2008 at 5:06 pm
If you're trying to update a part of the bspid column and maintain other parts of it then you could update like this.
UPDATE TableA
SET bspid= REPLACE(bspid, 'CI11','CIRC')
WHERE bspid LIKE '%CI11%'
April 25, 2008 at 9:54 am
In SSMS, connect to Integration Services from the Object Explorer. Under Stored Packages expand MSDB, right-click on the package and export.
April 25, 2008 at 8:31 am
acrouch (4/16/2008)
April 16, 2008 at 4:50 pm
How about creating a new junction table that has the rows you would normally join on?
SELECT ...
FROM
(SELECT t1.custid, t1.skillid
FROM
(SELECT t2.id AS CUSTID, t3.id AS skillid
FROM customer t2
CROSS...
April 14, 2008 at 7:33 am
To load a single XML file drag a Data Flow Task onto the Control Flow canvas. On the Data Flow canvas add an XML Source and a destination.
If...
April 12, 2008 at 5:29 pm
How about checking the active TCP endpoints external of SQL to get the port? Use something like TaskList to get the pid for the SQL service and Netstat to...
April 12, 2008 at 10:48 am
Why not ask you administrator for the password?
Since this sounds more like a problem with ePO than SQL, check the knowledgebase at McAfee support: https://knowledge.mcafee.com/SupportSite/supportcentral/supportcentral.do?id=m1
April 12, 2008 at 8:00 am
After awhile you might find SSIS is actually fun to use. There's two overall steps here, creating the package and deploying the package. Scheduling would the another step...
April 11, 2008 at 8:14 pm
A good way to get an indication of whether the server is running and accepting connections is to just run a query against the master database from within your script....
April 11, 2008 at 3:49 pm
Viewing 15 posts - 181 through 195 (of 372 total)