Viewing 15 posts - 8,941 through 8,955 (of 9,399 total)
It is a good reminder that no matter how simple or complicated anything gets, don't forget the basics. A comment is about as basic as you can get and...
September 24, 2013 at 7:03 am
Jeff Moden (9/23/2013)
dwain.c (9/23/2013)
Grant Fritchey (9/23/2013)
Careful there! NSA monitoring in progress.
Thank goodness for that. Someone has to keep us ol' submarine sailors from having too much fun. ...
September 24, 2013 at 6:58 am
JAZZ Master (9/23/2013)
Revenant (9/23/2013)
Ed Wagner (9/23/2013)
jasona.work (9/23/2013)
Tee Time (9/23/2013)
Revenant (9/20/2013)
Ed Wagner (9/20/2013)
crookj (9/19/2013)
Ed Wagner (9/19/2013)
CorruptionPolitics
Spending
taxes
waste
government
Abuse
Impeachment
Impairment
Contempt
September 23, 2013 at 6:33 pm
jasona.work (9/23/2013)
Tee Time (9/23/2013)
Revenant (9/20/2013)
Ed Wagner (9/20/2013)
crookj (9/19/2013)
Ed Wagner (9/19/2013)
CorruptionPolitics
Spending
taxes
waste
government
Abuse
September 23, 2013 at 12:14 pm
Greg Edwards-268690 (9/20/2013)
Ed Wagner (9/20/2013)
jasona.work (9/20/2013)
When said govm't seems heck-bent on going into shutdown, potentially leaving one payless for who knows...
September 20, 2013 at 9:16 am
jasona.work (9/20/2013)
On an unrelated note, so much fun working for government...When said govm't seems heck-bent on going into shutdown, potentially leaving one payless for who knows how long...
Yeah, but government...
September 20, 2013 at 7:40 am
crookj (9/19/2013)
Ed Wagner (9/19/2013)
CorruptionPolitics
Spending
September 20, 2013 at 7:33 am
I've seen this very occasionally when I've left SSMS open too long. I rarely close it, so every so often it lets me know I should close it once...
September 20, 2013 at 7:15 am
Using the KILL command requires ALTER ANY CONNECTION. http://technet.microsoft.com/en-us/library/ms173730%28v=sql.100%29.aspx
Executing a procedure requires access to the database containing the procedure, EXECUTE on the procedure and whatever permissions the procedure code...
September 19, 2013 at 6:47 am
To sort your output, use an ORDER BY clause. I believe your column is checktime.
September 19, 2013 at 6:25 am
Koen is exactly right - we will need the basics in a reproducible form to have any chance of addressing the problem.
This looks like it's for a time and attendance...
September 19, 2013 at 6:12 am
This should give you what you're after.
with cte as (
select c.customername, o.ordernumber, o.orderdate, row_number() over (partition by c.customername order by orderdate desc) rownum
from customer...
September 19, 2013 at 5:24 am
Good question, Ron. It really made me look at the square brackets and field names and think it through before answering.
September 18, 2013 at 9:48 am
bryan van ritter (9/17/2013)
i am trying to convert a nvarchar column to a decimal value.
the nvarchar column has empty records as well as NULL values.
now when i try...
September 17, 2013 at 11:55 am
Viewing 15 posts - 8,941 through 8,955 (of 9,399 total)