Viewing 15 posts - 286 through 300 (of 372 total)
One way to do that is create an additional RDL file for the disclaimer and insert that as a subreport after your 1st and 3rd page, using appropriate pagebreaks; might...
March 15, 2008 at 5:11 pm
Or you could use online converters like these to generate the HTML.
March 15, 2008 at 11:31 am
Since xp_cmdshell appears to hang you should be able to see the username in Task Manager under the Process tab; look for cmd.exe or coreftp.exe.
Once you have the username you...
March 15, 2008 at 9:48 am
How about changing this line?
Row.outdenoteline. = byteBlob
to
Row.outdenoteline.AddBlobData(byteBlob)
I ran your code against a small table with a few 1MB IMAGE columns and they all made it to the Flat File destination...
March 14, 2008 at 9:07 pm
How about using an OUTPUT parameter in your stored procedure to return the column count?
For example:
CREATE PROCEDURE usp_myProc (@p1 INT, @p2 INT OUTPUT)
AS
IF @p1 = 1
BEGIN
...
March 14, 2008 at 7:00 am
Since perfmon counters tend to give an overall view of the server you might want to look into using SQL Profiler instead to narrow down the search to a specific...
March 14, 2008 at 5:34 am
Validating in the client application is one option. For example if this is an ASP.NET application then using the RegularExpressionValidator would allow the input to be checked and provide a...
March 13, 2008 at 8:19 pm
If the backup database is synchronized using SQL Data Compare then transactions are definitely occurring. That tool generates the DML statements needed to do the synchronization.
From the DBCC...
March 13, 2008 at 7:29 pm
Marios,
Glad it helped.
myServer is the name of any domain controller for myDomain.com. Ideally you'll want to pick one closest.
Running 'dsquery server' from a command line should get you a...
March 13, 2008 at 12:41 pm
If the default trace is enabled you should be able to get that information.
For example:
-- Check if default trace is enabled; id=1.
SELECT * FROM sys.traces
-- Change to suspect database so...
March 13, 2008 at 10:13 am
With two tables a Data Flow like this should work.
[Table1] --
|--> [Union All] --> [Fuzzy Grouping] --> [Output Table]
[Table2]...
March 11, 2008 at 8:20 pm
For a onetime cleanup operation the Fuzzy Lookup or Grouping transformations in SSIS would help out; Developer and Enterprise Edition only. The attached screen-shots show how both the Lookup...
March 11, 2008 at 12:42 pm
As well as the articles on this site take a look at Brian Knight's blog and videos on JumpstartTV.
http://pragmaticworks.com/community/blogs/brianknight/default.aspx
http://www.jumpstarttv.com : Look under Channels/Technology/Database/SQL Server/SQL Server 2005/SQL Server Integration Services.
March 10, 2008 at 6:05 pm
Those three tasks can be done within a Script Task. Just add that task to the Control Flow canvas and use methods available in the My.Computer.FileSystem namespace. You'll...
March 9, 2008 at 7:23 pm
The following example tries to answer the following 3 questions.
1) Is the server on the network?
2) Is the connection string in a valid format?
3) Can a connection be made to...
March 7, 2008 at 4:07 pm
Viewing 15 posts - 286 through 300 (of 372 total)