Viewing 15 posts - 1,366 through 1,380 (of 2,486 total)
Are you able to modify the table structure at all?
As the warning message suggests, if you have more than 8060 bytes in an INSERT or UPDATE operation it WILL fail....
March 29, 2005 at 3:50 pm
As I mentioned above the main difference is if you use the Multi Phse datapump in data transformations. This switches the datapump into row-by-row processing instead of a bulk load.
If...
March 29, 2005 at 3:39 pm
In that case the fields MSR_Incent.Teller, MSR_Incent.Branch, MSR_Incent.Acct, MSR_Incent.Sfx, MSR_Incent.DOS & MSR_Incent.Base_Serv do not make up a unique key.
You'll need to specify all necessary fields that make up the...
March 29, 2005 at 3:28 pm
For the log files information, check the topic "Reporting Services Trace Logs" in the Reporting Services Books Online. There is also a link on that page for the configuration file...
March 29, 2005 at 3:24 pm
Try using a LEFT JOIN instead.
blah... blah... Msr_Incent_I.Has5Da FROM Msr_Incent_I LEFT JOIN Msr_Incent ON MSR_Incent_I.Teller = MSR_Incent.Teller AND MSR_Incent_I.Branch = MSR_Incent.Branch AND MSR_Incent_I.Acct = MSR_Incent.Acct AND MSR_Incent_I.Sfx = MSR_Incent.Sfx AND MSR_Incent_I.DOS = MSR_Incent.DOS AND MSR_Incent_I.Base_Serv = MSR_Incent.Base_Serv WHERE...
March 29, 2005 at 12:54 am
There is no "simple" way
One option is to write a VBScript to programatically open the package change the properties and save the package...
March 29, 2005 at 12:48 am
Take a look at the Custom FTP task available at http://www.sqldts.com
March 29, 2005 at 12:36 am
Nice article, but would have liked a mention that using the Multi-phase Datapump to transform data will switch the datapump to row-by-row processing. This is something that people should be...
March 29, 2005 at 12:33 am
Maybe a bit more information about what you're trying to achieve would allow a more informative answer
March 28, 2005 at 9:48 pm
Do the log files located at, "C:\Program Files\Microsfot SQL Server\MSSQL\Reporting Services\LogFiles" give you any clues? You should be able to see when your subscription runs. The following is the sequence...
March 28, 2005 at 8:17 pm
How about adding a column to the input table that signifies that that data belongs to User1 or User2. Then have your stored procedure work on the data for the...
March 28, 2005 at 5:23 pm
For the ActiveXScript task you'll need to supply the correct parameters for the Load method.
object.LoadFromSQLServer ServerName, [ServerUserName], [ServerPassword], _
[Flags], [PackagePassword], [PackageGuid], [PackageVersionGuid], _
[PackageName], [pVarPersistStgOfHost]
The "Flags" parameter takes one of two...
March 28, 2005 at 4:42 pm
Greg
Where do you hail from?
You might have noticed the links in my signature, that's a start if you're an Aussie
Otherwise checkout MSDN Connections, they...
March 23, 2005 at 8:02 pm
The sp_OA... procs are kinda handy, but it gets a bit hairy when you're passing in more than a couple of global variables for your package.
That's one of the reasons...
March 23, 2005 at 4:21 pm
This seems to be one of those irritating intermittent bugs that has no definite reproducible steps. I have a couple of Packages that...
March 23, 2005 at 4:00 pm
Viewing 15 posts - 1,366 through 1,380 (of 2,486 total)