Viewing 15 posts - 631 through 645 (of 3,348 total)
gary1 (3/13/2016)
is there way to find concurrent users connecting to a particular database?
Did you check the link Jon posted?
If you did, then please post what you have right now and...
March 15, 2016 at 3:13 pm
krypto69 (3/15/2016)
I have a query below that I think is close to what I need, but I need to add a column(s) that has the
Number of APPROVED claims
Number...
March 15, 2016 at 2:22 pm
This appears to be the same code you also asked help for in this topic: http://www.sqlservercentral.com/Forums/Topic1767785-3411-1.aspx.
In the future, please keep questions on the same issue in the same topic, and...
March 15, 2016 at 2:17 pm
SQL!$@w$0ME (3/13/2016)
Can you please take a look into...
March 15, 2016 at 2:12 pm
nadersam (3/13/2016)
Now i need a recommendation please to do that or not, if there is no need for field to be nvarchar.
Starting with the obvious: For any new work, always...
March 13, 2016 at 5:35 am
SteveD SQL (3/12/2016)
- A Data Source
- A Keyword Source
- A Data/Keyword...
March 13, 2016 at 4:47 am
Hi Nader,
I would be very careful before replacing all nvarchar columns with varchar columns. What if the database actually has to store data that requires a Unicode character set?
Another important...
March 13, 2016 at 4:42 am
In my opinion, pure T-SQL is not a good tool for this. T-SQL expects exact and precise specification, and how do you specify "sort of matches". And even if you...
March 12, 2016 at 2:27 pm
sgreiner (3/12/2016)
Either method returns "Only functions and some extended stored procedures can be executed from within a function."
And that's exactly the problem. A lot of things are not allowed in...
March 12, 2016 at 2:18 pm
So maybe my mindreading skills are not as good as I hoped they were. Perhaps this is what you actually intended?
SELECT m1.memberid, m1.fromdate,
...
March 11, 2016 at 8:19 am
Try this:
SELECT m1.memberid, m1.fromdate,
m1.todate AS TodateEntered,
...
March 11, 2016 at 6:50 am
SQL!$@w$0ME (3/11/2016)
The vendor does not want to track all the history of audit columns. They want to keep the audit information(last insert/update) on the same table. Also want to...
March 11, 2016 at 6:45 am
SQL!$@w$0ME (3/10/2016)
Did you already try the approach with column-level permissions? Have you considered the (IMO much better) alternative to have a separate audit table?
Not able to...
March 11, 2016 at 5:24 am
It helps if you post CREATE TABLE and INSERT statements for the table layout and sample data. Without that, I can only provide a generic pointer.
Join the table, using APPLY,...
March 11, 2016 at 5:16 am
SELECT resultA
FROM YourTable
UNION ALL
SELECT resultC
FROM YourTable;
If that's not what you need, then please post a CREATE TABLE statement for the table, INSERT statements with sample data,...
March 11, 2016 at 5:08 am
Viewing 15 posts - 631 through 645 (of 3,348 total)