Viewing 15 posts - 1 through 15 (of 16 total)
I'm sorry but "a Script Task with whatever C# code" is not really helping...
I would be surprised if nobody else would want to automate the SSRS feature to upload additional...
January 29, 2013 at 6:33 am
Not as a SSRS datasource, just store physical files (.csv's or .xlsx's) on the SSRS Report Server in addition to the .rdl reports. When I manually upload a file to...
January 24, 2013 at 8:55 am
Baskar B.V (7/27/2010)
July 27, 2010 at 10:13 am
b-singley (7/26/2010)
if it's a new disk, you might just need to add full control to everyone, or something similar. ran into this problem last time we created a new san.
Full...
July 27, 2010 at 10:03 am
Henry Treftz (7/26/2010)
Any chance you are doing this on a cluster?
No...
July 27, 2010 at 9:47 am
When I'm using this query
SELECT *
FROM [SERVER_B].database.dbo.table
EXCEPT
SELECT *
FROM database.dbo.table
to select the right data, I'm getting "Xml data type is not supported in distributed queries". I know there is a...
July 27, 2010 at 4:34 am
Baskar B.V (7/26/2010)
Is it also possible/necessary to adjust the max size of the transaction log? If yes, where can i do that?
And will this dataflow task be able to resume...
July 27, 2010 at 3:37 am
Baskar B.V (7/23/2010)
- Is there a way to 'repair' the imported db? Since the data seems physically there on the hdd, and the row importing process went till 100%
- Is...
July 26, 2010 at 6:45 am
Although another location, F:\Tmp, seems to be working fine without the annoying error 😀
So thanks for the advice BlueTiger!!
July 26, 2010 at 2:25 am
I've now changed it to C:\Temp in the Environment Variables, restarted SQL Server, but getting the same kind of error with now C:\Temp in the msg....
July 26, 2010 at 2:08 am
GilaMonster (7/23/2010)
ss_nl (7/23/2010)
- Is there a way to 'repair' the imported db? Since the data seems physically there on the hdd, and the row importing process went till 100%
It's not...
July 23, 2010 at 9:07 am
The problem with this query is that when a record matches an OUTER case condition it passes to the inner case. So for the above every record where DATEADD...
July 23, 2010 at 8:55 am
To make life a bit easier I made a workaround using two columns:
First column is telling whether or not it's a A)3months/year upgrade or just the b) basic one,
second column...
July 23, 2010 at 8:07 am
Chris Morris-439714 (7/15/2010)
WHEN DATEADD (year, 1, MAX(dd.ActualDate)) >= GETDATE() AND fo.Product IN (62,64) THEN 'Upgrade_Year'
WHEN DATEADD (month, 3, MAX(dd.ActualDate)) >= GETDATE() AND fo.Product IN (61,63) THEN 'Upgrade_3Months'
ELSE...
July 23, 2010 at 8:01 am
Gianluca Sartori (7/15/2010)
My bad. I ran into the same mistake...
...
Thanks, and sorry for the late reply.
This query however is also not giving the desired results....
Now I'm getting either 'Upgrade_3Months', 'Upgrade_Year'...
July 23, 2010 at 7:52 am
Viewing 15 posts - 1 through 15 (of 16 total)