Viewing 15 posts - 421 through 435 (of 566 total)
If your looking for specific examples, go to http://www.sqlis.com. All of the tasks, transformations (above) are available here with detailed instructions.
November 6, 2007 at 1:57 pm
As suggested earlier, you can pull these files down via a script task or use xp_cmdshell to build a command file for FTP and executed in a batch file (execute...
November 6, 2007 at 10:15 am
Corey Bunch wrote a good article -
http://www.sqlservercentral.com/articles/Administration/introtodatabasemailinsql2005/2197/
"The main difference between SQL Mail in SQL 2000 and Database Mail in 2005 is this: SQL Mail is a headache and...
November 6, 2007 at 9:58 am
This post might help -
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=389519&SiteID=1&mode=1
November 6, 2007 at 9:53 am
Are there any errors in the log -
SELECT * FROM msdb.dbo.sysmail_event_log
Use telnet to verify your SMTP relay, ensure that TCP 25 isn't being blocked by an FW, anti-virus, etc.
SELECT...
November 6, 2007 at 9:45 am
"FIX: Error message when you try to use Database Mail to send an e-mail message in SQL Server 2005: "profile name is not valid (Microsoft SQL Server, Error 14607)" is...
November 6, 2007 at 9:40 am
Use nvarchar for the parameter datatype. I was able to reproduce this without error using the settings above. The table I used to test it out on -
create table...
November 6, 2007 at 8:30 am
What build are you running? Cumulative update package 4 (build 09.00.3200) for SP2 is now available. Cumulative update package 3 (09.00.3186) for SP2 has been out for while now.
November 6, 2007 at 8:21 am
November 6, 2007 at 8:14 am
You can use the execute SQL task to populate an Int32 variable with the count of rows. This article has some good examples - http://www.sqlis.com/58.aspx
November 6, 2007 at 8:10 am
Your first example was correct, should be something like:
delete from TableName where (strval=?) and (year=?)
Perhaps your parameters are mapped incorrectly? For example -
Variable Name ...
November 6, 2007 at 8:07 am
Hi David, database mail in MSSQL 2005 does not require any MS Office components, just connectivity to your SMTP relay.
November 5, 2007 at 1:53 pm
A couple of links to help get you started 🙂
http://msdn2.microsoft.com/en-us/library/ms167031.aspx
http://www.sqlservercentral.com/articles/whatsnewwithssis/2234/
November 1, 2007 at 12:01 pm
SSIS doesn't come with express, you'll need developer,standard or enterprise.
Refer to the section, "Integration and Interoperability":
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
November 1, 2007 at 11:57 am
These types of errors suggest that the disk subsystem is unable to keep up with the level of I/O MSSQL is asking. MSSQL waits and retries these requests. These errors...
November 1, 2007 at 7:21 am
Viewing 15 posts - 421 through 435 (of 566 total)