Viewing 15 posts - 1,651 through 1,665 (of 2,458 total)
Domain accounts have worked just fine for me for many years.
April 3, 2015 at 11:39 am
Koen Verbeeck (4/3/2015)
Alan.B (4/3/2015)
I actually came into the "Anything that is NOT about SQL!" forum to ask this question but think it's appropriate here....How do you report spam?
At the top...
April 3, 2015 at 11:35 am
I actually came into the "Anything that is NOT about SQL!" forum to ask this question but think it's appropriate here....
How do you report spam?
April 3, 2015 at 11:12 am
I wonder if I split the procedure into different procedures depending on the user selected option. This way, the different procedures would have their own saved query plan.
This is something...
April 3, 2015 at 11:02 am
It's worth noting SQLNAIVE, that Eirikur's solution will perform about 3X faster.
I took your solution and put it into a scalar valued function like so:
CREATE FUNCTION dbo.SVF_LOCATE_PATTERN_IN_STRING
(
@Expression VARCHAR(8000),
@SearchString VARCHAR(10),
@OccuranceNumber...
April 3, 2015 at 9:32 am
Do you have some DDL and test data so we can re-create and populate your two temp tables?
April 2, 2015 at 2:21 pm
Nice!
April 2, 2015 at 9:53 am
Understood. That's all I could think of, hopefully someone else chimes in.
April 2, 2015 at 9:24 am
Why is it doing this
It has to do with how SSRS explicitly converts values. If the time is 00:00:00 it is assuming you want to treat the values as a...
April 1, 2015 at 9:18 pm
I recently rolled off a project where we needed to extract some information from the report server catalog (e.g. the reportserver db). This function will includes the report path to...
April 1, 2015 at 8:32 pm
Since nobody else is providing a solution I'll give it a try. I am simplifying the query against sys.columns because I don't really understand what you are doing. That said,...
April 1, 2015 at 8:18 pm
You could also modify your stored proc (or ad hoc query) that feeds the dataset to format the data before it gets to SSRS. Your query would look something like...
April 1, 2015 at 8:12 pm
If you wanted to get a column to act like an identity column but to be a uniqueidentifier instead of an int you could do this:
CREATE TABLE dbo.yourtable
(
pk_col AS newid(),
xxx...
April 1, 2015 at 7:49 pm
Eirikur Eiriksson (3/31/2015)
ScottPletcher (3/31/2015)
March 31, 2015 at 1:30 pm
Thanks Luis. That stack overflow thread led me in the right direction.
March 31, 2015 at 1:22 pm
Viewing 15 posts - 1,651 through 1,665 (of 2,458 total)