Viewing 15 posts - 4,546 through 4,560 (of 5,111 total)
R.P.Rozema (1/10/2017)
January 10, 2017 at 4:46 am
The error message says "Error description: Attempted to perform an unauthorized operation."
Looks like you don't have permissions to install on your machine.
January 10, 2017 at 4:38 am
Unfortunately, if you have objects inside an object (and then in your case, another object inside that object), then you have to shrink each object before shrinking it parent.
SSRS won't...
January 10, 2017 at 4:08 am
To quote from the SSDT Page:
SSDT works best with Visual Studio 2015
January 10, 2017 at 2:48 am
Rechana Rajan (1/9/2017)
we have json getting stored in one of the tables and how can we search inside the json.
There is no native support for reading JSON in SQL Server...
January 10, 2017 at 2:31 am
I see your goal, however, I therefore think your datasets and way your using SSRS don't align. SSRS is happy to receive summarised values, if that's all your going to...
January 10, 2017 at 2:22 am
MMartin1 (1/9/2017)
Thom A (1/8/2017)
1. Log what you have processed thus far, then,...
January 10, 2017 at 2:05 am
Should these processes actually be running at the same time? If they are both going to update a column at the same time, then you're going to be getting a...
January 9, 2017 at 11:26 am
I'm impressed at your patience so far Sean, this is getting quite the ugly dataset.
As Sean said before, I think at this stage you would be better off redesigning your...
January 9, 2017 at 11:17 am
Firstly, the sample table you provided doesn't work for the rdl xml you provided. You are summing BIT columns, which you can't do (BIT can't have a value higher than...
January 9, 2017 at 11:10 am
Do you mean that the parameters are not correct on the Sub report? This would mean that have been declared incorrectly in the on click action of the parent report.
January 9, 2017 at 9:26 am
Somewhere your logic isn't correct if the data isn't consistent.
What is the actual query your sub report is running? In your post you said it should be running something like,...
January 9, 2017 at 8:52 am
ehlinger (1/9/2017)
January 9, 2017 at 7:58 am
Why not exclude them in your WHERE clause?
SELECT OBJECT_SCHEMA_NAME([object_id])+'.'+name AS TableName
FROM sys.tables t
WHERE t.name NOT IN('Table1','Table2','Table3','Table4','Table5','table6') --You could get these from a table if they could change
January 9, 2017 at 7:47 am
Considering you have been here long enough, you really should use the correct forum for your question. For example, some of the other topics you have created are in the...
January 9, 2017 at 5:01 am
Viewing 15 posts - 4,546 through 4,560 (of 5,111 total)