Viewing 8 posts - 1 through 9 (of 9 total)
Hi!
To do this you need to use the SP_HELP_REVLOGIN script. It is a stored procedure which (once installed) upon running generates a complete list of logins with (for sql authenticated...
July 1, 2013 at 12:19 am
Hi!
Happy to take a look but before I do can I confirm you are using MS-SQL as, in your sample, you use a natural join which to the best of...
June 23, 2013 at 2:35 am
Hi!
Three solutions which I hope cover all possibilities you may need.
James
-- Used a temporary table for demonstration purposes
CREATE TABLE #attendance
(
CalDate datetime,-- Changed name slightly to avoid using DATE as a...
June 1, 2013 at 2:54 pm
Hi!
Just off out for a bit - will look into a reply for you later. One thing, do you wish the query to set the spend time in the table...
June 1, 2013 at 6:08 am
Hi!
Hope this provides some help with your query. Comments are in the SQL
James
-- Used a temporary table for demonstration purposes
CREATE TABLE #attendance
(
CalDate datetime,-- Changed name slightly to avoid using DATE...
June 1, 2013 at 3:03 am
Hi!
Happy to help on this one however, in order to do this, can you provide details of the columns in the table(s) containing the data you wish to process.
There...
June 1, 2013 at 2:18 am
Hi!
First option, you could change the column type to varchar(max) [text is, from my reading on here, to be depreciated].
As that might be a bit drastic, you can...
May 17, 2013 at 11:21 am
Hi!
From a quick look (and unless I have missed something) I think you need only to change SELECT to SELECT DISTINCT in your query to solve the problem.
James
May 17, 2013 at 10:24 am
Viewing 8 posts - 1 through 9 (of 9 total)