Viewing 15 posts - 1,666 through 1,680 (of 3,482 total)
You could always just add a column to the addresses table to indicate what type it is (home or work). Then you would just write a case statement to...
December 2, 2016 at 10:14 am
Kazmerelda (12/2/2016)
What...
December 2, 2016 at 9:55 am
" However if I want domain user testdomain/testuser to have access that has been user within the entire database for that user " ???
You can create users and groups in...
December 1, 2016 at 7:13 pm
You'd have to do something in your stored procedure.
Here's an example of getting all the invoices with fewer than 3 line items:
SELECT i.InvoiceID
FROM Sales.Invoices i INNER JOIN Sales.InvoiceLines il
ON i.InvoiceID...
December 1, 2016 at 9:38 am
Okay... rereading this... A Calendar table won't necessarily work. I think this will only work if you know what month all of the absents occurred in. If you can't...
December 1, 2016 at 7:30 am
Please do everyone a favor and read this article Forum Etiquette: How to post data/code on a forum to get the best help[/url]
Saying please and thank you without actually listening...
November 30, 2016 at 9:13 pm
Oh, I get it... you're trying to do the matrix as a crosstab or whatever inside SQL instead of doing it in SSRS. Doing it in SSRS is really...
November 30, 2016 at 1:22 pm
Maybe I'm missing something, but if you have a bunch of events over a span of time, you could have EventType on columns, Months on rows, and then a count...
November 30, 2016 at 8:48 am
I modified the code to make sure it would work... so this is a little different than the last version. Should work with strings of any length as long as...
November 29, 2016 at 9:42 pm
Sorry, but I beg to differ on your formula... How about
=Right(User!UserID,InStr(User!UserID,"\",CompareMethod.Text)-1)
I'm not sure where you got the value of 10 from... maybe the length of your servername?
As to where...
November 29, 2016 at 11:34 am
Some sample data to play with would help a LOT.
One way of doing it is this:
SELECT 100 As Amount, 'AB' AS CustomerID
UNION ALL
SELECT 200 , 'CD'
UNION ALL
SELECT 300, 'BB'
then folks...
November 28, 2016 at 8:22 pm
I have a stored procedure that returns records by a patient's location in the hospital. I want to be able to return all records EXCEPT those in location = C3....
November 28, 2016 at 12:05 pm
Without more details, it's hard to know what the right tool is for the job. The flexible part sounds a bit like it could be done in PowerPivot, but...
November 28, 2016 at 8:41 am
Or SSAS and Excel?
November 28, 2016 at 8:31 am
I'm sure people here can solve the problem. Like I said before, this is a classic Database 101 assignment. The point is for YOU to do it and make mistakes...
November 26, 2016 at 5:47 pm
Viewing 15 posts - 1,666 through 1,680 (of 3,482 total)