Viewing 15 posts - 7,546 through 7,560 (of 9,643 total)
In the Flat File Source Editor you have areas you can select on the left: Connection Manager, Columns, Error Output. Select Error Output and then in the error column...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 11, 2008 at 7:09 am
I don't think, based on BOL, that xp_cmdshell will ever return an @@ERROR code. If the command being executed by xp_cmdshell fails then the return value of xp_cmdshell will...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 11, 2008 at 6:29 am
Have you tried configuring the error output so that it redirects any error rows? When I created a CSV out of your post, I get the warning but when...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 11, 2008 at 6:18 am
Without seeing the file I'd guess that either your second line is missing some data or you have a blank line at the bottom of the file.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 11:45 am
Mike,
I have to agree with Markus on this one. Performance Monitor does not do any writing to the database so it won't affect log size. I think removing...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 11:40 am
Where did you save the Report Project(s)? On your pc or to a network share that was backed up by your network admins?
If you go to IIS Admin on...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 11:28 am
What do you have the data stored in?
You can just do an SSIS package that loops through your server list and runs the query and updates a table.
If you have...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 11:26 am
I'm pretty sure this is what you want:
[font="Courier New"]USE RonnieProd
GO
DROP TABLE #emp
CREATE TABLE #emp
(
ID INT IDENTITY(1,1) NOT NULL,
Initals [varchar](4),
Name [varchar](50) NULL,
FirstName [varchar](30) NULL,
LastName [varchar](50) NULL
)
INSERT INTO #emp (Initals,[Name])
SELECT Initals,[Name]
FROM...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 11:23 am
When connected to the serer you can run:
Select ServerProperty('edition')
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 11:15 am
David.Poole (9/10/2008)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 11:10 am
I wrote an article on error handling in ssis that has code for this except I am creating XML. If you serch for error handling in ssis you should...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 8:55 am
Exactly to which one? Both?
Where did you save your BIDS reporting project? The report definitions should be there.
Have you checked the Report Server error logs (SQL, Windows)?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 8:24 am
One way to do it in SSRS is to use the ReportItems collection. You can reference the textbox that has each year value like this:
ReportItems!txtThisYearPlanned.Value = ReportItems!txtLastYearPlanned.Value
You may need...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 8:23 am
I'm not sure what you mean by dynamically creating the password. Normally, if you only want your application to access SQL Server, you would use a SQL Login in...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 8:13 am
There is no way I am aware of within SQL Server to restrict access to SQL Server based on IP or host name. I suppose in SQL Server 2005...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 10, 2008 at 8:09 am
Viewing 15 posts - 7,546 through 7,560 (of 9,643 total)