Viewing 15 posts - 1 through 15 (of 18 total)
This got resolved with the help of a consultant from our cloud hosting providers;
He found the solution from articles i actually came accross but didn't read fully so i didn't...
July 15, 2015 at 9:53 am
Do you have access to GRANT access to a user in SQL?
Try this:
grant execute on xp_cmdshell to user
You mentioned you login with different logins for each server; See if you...
June 15, 2015 at 1:26 pm
I came across this article saying xp_cmdshell isn't enabled by default on SQL Server ; Link[/url]
Try running this before running your query and see if that fixes it:
EXEC sp_configure 'xp_cmdshell',...
June 15, 2015 at 1:12 pm
See if you can try posting some sample data from your table(Just a few rows should suffice) and also paste in your code.
June 15, 2015 at 1:06 pm
hr.ppaul (5/12/2015)
We have quite simple SQL database sitting on Azure, we are developing it on the fly so no Dev/QA/Prod versions, is on SQL Express 2012
Sometimes we need to take...
May 12, 2015 at 2:14 pm
you can join the table to itself if the values are in the same table ( Or just join both tables if it's not the case) and use SUBSTRING; I...
May 11, 2015 at 9:25 am
Maybe it will help if i explain it this way.
In terms of what comes first, i would need a job to run periodcally ( Every 10 minutes or so) that...
January 20, 2015 at 8:33 am
I'm sure there's more than 1 to do it, but yes we want to be able to audit this data and also update it where those constraints fit.
Ex, if an...
January 20, 2015 at 7:52 am
Thank you again for your input, very much appreciated 🙂
Sorry for not providing more complete description, i'm still pretty much brand new to SQL Server and learning as much...
December 31, 2014 at 7:48 am
I got the following error message when i tried using your script:
Msg 325, Level 15, State 1, Line 31
Incorrect syntax near 'PIVOT'. You may need to set the compatibility level...
December 30, 2014 at 11:44 am
I'm using sub-reports because the report in question is getting the summary for 6 different item codes which are all PK from the same table; 4 of which are payables...
December 29, 2014 at 12:21 pm
Thank you!!! This worked great! Applied it as you suggested and the results are fairly close to previous month.
Thanks everyone else for your input!
December 16, 2014 at 6:47 am
I don't need the dates in the column headers, just the month, the data cells would be the sum amount for A, B, C and D; 12 columns, 4 rows...
December 15, 2014 at 2:31 pm
Ok now i see! Thank yo very much for the breakdown!
November 27, 2014 at 10:11 am
Viewing 15 posts - 1 through 15 (of 18 total)