Viewing 15 posts - 31 through 45 (of 140 total)
Do you get the error when you preview the report in VS2010? Or is it when the user is running it from Reporting Services, which hopefully is a 64-bit installation?
July 23, 2015 at 8:58 am
If I'm not mistaken VS2010 is a 32-bit application, so there is a 4GB limit. Have you tried to filter the report to reduce the number of rows of data?
July 23, 2015 at 1:16 am
linaw (7/16/2015)
We are upgrading from SQL 2008R2 to SQL2014 but we have discovered that a couple of our applications are not supported on 2014.
Have you set the compatibility level to...
July 17, 2015 at 3:10 am
RTaylor2208 (7/2/2015)
July 2, 2015 at 5:29 am
RTaylor2208 (7/2/2015)
July 2, 2015 at 4:56 am
Which account is running the job? SQL Server Agent account? If it's a domain account you need to assign permissions on the path/share/directory to that account.
If SQL Server Agent is...
July 2, 2015 at 3:20 am
What if you try to convert the float to a decimal first? Perhaps that will work for you.
SELECT CONVERT(varchar, CONVERT( decimal(10,3) , @a))
March 30, 2015 at 5:43 am
Add Style 128 and see if it works for you:
SELECT CONVERT( varchar , @a, 128)
Style 128 (along with 126 and 129) is included for legacy reasons and might...
March 30, 2015 at 3:55 am
AndrewSQLDBA (9/12/2013)
Like "SQL 2008 Databases\[DatabaseName]"
I have never liked that directory of Program...
September 13, 2013 at 3:37 am
HanShi (9/13/2013)
3. Check for orphaned users (exec sp_change_users_login 'report') and fix any issues
Thanks. Very useful. I'm right in the middle of cleaning up old user accounts after migration to a...
September 13, 2013 at 3:29 am
Have you tried running the query in SSMS logged in as the same user running the job?
September 13, 2013 at 3:14 am
tommy.tooten (9/12/2013)
Thank you.
September 12, 2013 at 7:59 am
GilaMonster (9/11/2013)
Grant Fritchey (9/11/2013)
Disable the 'sa' login completely and rely on AD logins to manage all the servers.This.
+1
September 12, 2013 at 6:07 am
The SQL Server Agent Account needs permissions on the network share and the directory where the file is.
September 12, 2013 at 6:01 am
Has the job worked before? Has there been any changes in permissions?
Have you tried running the query in SSMS logged in as the same user running the job?
September 12, 2013 at 5:57 am
Viewing 15 posts - 31 through 45 (of 140 total)