Viewing 14 posts - 121 through 134 (of 134 total)
Hi,
Add the execute DTS 200 package task first and access/add the DTS package from there. If you have migrated, then you can see the packages under SSMS, management legacy node...
May 8, 2008 at 11:15 am
Hi,
First make sure as everyone said, permission level.
Then try re-deploying your package to the server, where you want your job to run that package.
-V
May 7, 2008 at 2:35 pm
Thanks for your suggestion Jim..
Thats how we did also..we keep transaction Db maintenance plan to keep backup for 3 days and we have non-transactional Db maintenance plan to keep backup...
May 6, 2008 at 11:10 am
I think I got it !!!
Search for folder and delete specific file option , folder S:\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\DB1Archive , file extensio bak
and uncheck the traverse sub folder
Let me know,...
May 6, 2008 at 10:51 am
Hi,
I think this is the prblem with the deployment of your package. Redeploy your package to your server, but this time make sure check the box, rely on server storage...
May 5, 2008 at 2:25 pm
Hi,
What I am saying is instead of using Excel destination, use falt file destination as dataflow destination and a Flat file connection manager (Not a interim task). At the faltfile...
May 2, 2008 at 2:09 pm
Hi,
I had the same problem...We used flatfile destination connection string for excel, though the file is pointing to actual excel file and mapped the columns in the editor. If you...
May 1, 2008 at 3:00 pm
soved it anyway..I unchecked keep the identity column checkbox...
April 22, 2008 at 12:08 pm
Did you register the server first ?
April 15, 2008 at 2:55 pm
SQL Server 2008 has better solution. Now we can declare table valued parameter.
http://technet.microsoft.com/en-us/library/bb510489(SQL.100).aspx
April 11, 2008 at 11:54 am
Hi,
You can use extended sp Exec Xp_RegRead to get the port number.
Declare @PortNumber VarChar(7)
Exec Xp_RegRead
@RootKey='HKEY_LOCAL_MACHINE',
@key='Software\Microsoft\MSSQLServer\MSSQLServer\SuperSocketNetLib\Tcp',
@Value_Name='TcpPort',
@Value=@PortNumber OutPut
Print 'Port Number:'
Print @PortNumber
April 11, 2008 at 10:38 am
You will then need to delcare where you are sending the email from:
HELO local.domain.name - dont worry too much about your local domain name although you really should use your...
April 2, 2008 at 6:33 pm
Hi,
Thank you for the link.
I don't have much knowlwdge on windows side. My understading the link says : For example, if you are having problems sending over SMTP between two...
April 1, 2008 at 3:15 pm
Viewing 14 posts - 121 through 134 (of 134 total)