Viewing 12 posts - 1 through 12 (of 12 total)
That's it. There was an issue with the line feed character which was causing the issue. I typed out the same code in a new window and everything...
February 19, 2014 at 10:19 am
When I run the following code (includes statement terminators) I get a different error message:
IF OBJECT_ID('usp_test','P') IS NULL
EXEC ('CREATE PROCEDURE usp_test AS select 1 as row1');
GO
ALTER PROCEDURE usp_test
AS
select 2 as...
February 19, 2014 at 9:20 am
If you drop and recreate then you lose all permissions settings. If you ALTER then the permissions are kept.
Interestingly enough, that query does work though.
February 19, 2014 at 9:09 am
Here's the error message:
Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword 'ALTER'.
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near 'GO'.
I use this syntax when...
February 19, 2014 at 8:13 am
The mcrn field is a grouping of multiple fields into one (not my design). The information stored in the error_check field is also included in the mcrn field. ...
October 24, 2013 at 8:37 am
Adding a clustered index fixed it. After adding the clustered index on those two columns the query returns in 0 seconds. Here are the new results from those...
October 24, 2013 at 8:16 am
Here are the results from the those two queries:
name rows ...
October 23, 2013 at 12:54 pm
Thank you for the response! Unfortunately there can be 15+ specialties per client so showing the whole string of gauges as one horizontal row wouldn't look good either. ...
February 22, 2012 at 1:48 pm
I was able to figure out a work around for this. While you can't filter a tablix based on row number you CAN set visibility based on it. ...
February 22, 2012 at 10:17 am
I've played around with it further and noticed that sometimes it goes through correctly but other times it doesn't. One specific time it fails is while writing WHEN clauses...
October 26, 2009 at 3:44 pm
Viewing 12 posts - 1 through 12 (of 12 total)