Viewing 15 posts - 7,546 through 7,560 (of 9,641 total)
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...
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.
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...
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...
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...
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...
September 10, 2008 at 11:23 am
When connected to the serer you can run:
Select ServerProperty('edition')
September 10, 2008 at 11:15 am
David.Poole (9/10/2008)
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...
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)?
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...
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...
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...
September 10, 2008 at 8:09 am
I have not had this error in DBMail, but I have had errors like this in other XML applications and the error is clear that one of your columns being...
September 10, 2008 at 8:04 am
Phil,
I think you posted in the right forum as you did have several SSRS type questions. I can say that I feel your pain as far as the dodgy...
September 10, 2008 at 6:51 am
Viewing 15 posts - 7,546 through 7,560 (of 9,641 total)