Viewing 15 posts - 7,471 through 7,485 (of 9,641 total)
How will you identify the bad data? Will it be based on an error when inserting into the destination?
If you will be identifying the bad data based on an...
September 17, 2008 at 9:24 am
You should use a Query as your source in SSIS. So your query would be something like this:
[font="Courier New"]SELECT
columns
FROM
TABLE
WHERE
-- all the calculation does is return midnight...
September 17, 2008 at 9:20 am
You use the SQL Server Configuration Manager.
September 17, 2008 at 9:11 am
Apparently you cannot use a variable set in the Row Count transformation in the same Data Flow. Check out the discussion on this blog post:
September 17, 2008 at 9:11 am
Here are a couple of articles I found based on the Exception:
http://support.microsoft.com/kb/892141
http://support.microsoft.com/kb/888843
http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic4751.aspx
September 17, 2008 at 8:57 am
Are remote connections allowed on the SQL Server? By default SQL Server 2005 does not have Named Pipes or TCP enabled.
September 17, 2008 at 8:36 am
You can also go to the Report Manager Web Page, select Properties and Click Edit Report. This allows you to download the rdl file.
September 17, 2008 at 8:33 am
I'm not sure that there is anyway to have dynamic columns in a report. Do you mean that one time you would return 10 columns and the next 7?
September 17, 2008 at 8:27 am
You could use SSIS to do this. You would want to do a Data Flow Task where your source query is the SP and your destination is the Excel...
September 17, 2008 at 8:25 am
I understood what you were looking for, which is why I said that the script I linked to would be a starting point. If you use the script I...
September 17, 2008 at 7:58 am
(Dt_STR,4,1252)
does not define a string large enough to hold the results you are returning. You need at least (Dt_STR,7,1252)
September 17, 2008 at 7:42 am
I actually expected that error because your varchar columns are all defined with a length of 1. This is the number in parentheses. When you define a character...
September 16, 2008 at 10:10 am
I would go with the job. I agree with Barry that using Profiler would help you identify what is currently happening, I also believe that the current design is...
September 16, 2008 at 9:39 am
What happens when you run this in SSMS:
Insert Into dbo.Individuals
(
FirstName,
LastName,
Address
)
Values
(
'John',
'Doe',
'1 First Street'
)
September 16, 2008 at 9:29 am
You may be able to use database mail with SQL Server Express with Advanced Services. If not you would have to create your own emailing process. You could...
September 16, 2008 at 9:26 am
Viewing 15 posts - 7,471 through 7,485 (of 9,641 total)