Viewing 15 posts - 271 through 285 (of 2,007 total)
ChrisM@Work (4/5/2013)
April 5, 2013 at 7:13 am
I only run when the ice cream van drives away
April 5, 2013 at 6:57 am
You need to have some way to order the original data.
Here's your data set up so others can use it: -
IF object_id('tempdb..#testEnvironment') IS NOT NULL
BEGIN
DROP TABLE...
April 5, 2013 at 6:46 am
rodjkidd (4/5/2013)
So I take it you will jogging there and back then? 😀
I hate distances like that. Too far to walk, to short a drive for the car to get...
April 5, 2013 at 6:34 am
rodjkidd (4/4/2013)
Hotel booked for SQLBits. Almost forgot all about that so a nice refreshing 20 minute walk in the morning!
I'm in Castle Marina Premier Inn, which according to Google maps...
April 5, 2013 at 5:57 am
I note that you still haven't scripted out your expected outcome based on sample data. Unfortunately, this means I'm unable to provide any more assistance.
Good luck getting everything working.
April 4, 2013 at 6:46 am
Difficult to know what you want to do because you haven't included expected output for any data.
What is you expected output with the following: -
DECLARE @NewTask VARCHAR(50), @StartDate DATETIME, @EndDate...
April 4, 2013 at 3:18 am
What you're doing is pointless. The physical order of the table is not something you can use anyway. Have a read of this --> http://blogs.msdn.com/b/conor_cunningham_msft/archive/2008/08/27/no-seatbelt-expecting-order-without-order-by.aspx.
March 26, 2013 at 2:23 am
vahid.arr (3/22/2013)
this my table with test data
You've forgotten the expected results based on your sample data that was requested. You've not mentioned whether or not you tried the code I...
March 22, 2013 at 7:31 am
Taking a stab in the dark. . .
DECLARE @EnterTime TIME, @ExitTime TIME;
SELECT @EnterTime = '08:40:18.000', @ExitTime = '09:52:48.000'
SELECT CONVERT(VARCHAR(5), diffSeconds / 3600) + ':' +
...
March 22, 2013 at 6:12 am
Hey,
I finally had 5 minutes to read through your replies here and have realised that you've completely changed the requirements. So, what we need from you is sample data...
March 19, 2013 at 10:26 am
We have a software release where I work which is imminent. This has reduced my activity on these forums considerably, which is why I've not posted any replies. Some time...
March 14, 2013 at 8:31 am
Rauf Miah (3/11/2013)
TABLE IS LIKE
COMCOD ...
March 12, 2013 at 4:28 am
bitbucket-25253 (3/11/2013)
CREATE TABLE T(COMCOD nchar(4), ACTCODE nvarchar(6), ACTDESC nvarchar(250),PRIMARY KEY (ACTCODE))
...
March 12, 2013 at 4:20 am
oliver.morris (3/7/2013)
Thanks for the help, I made a few changes but the key is that I need to push the column_id variable to each function. How do I do...
March 7, 2013 at 6:05 am
Viewing 15 posts - 271 through 285 (of 2,007 total)