Viewing 15 posts - 7,111 through 7,125 (of 8,760 total)
Snargables (9/12/2014)
September 12, 2014 at 9:44 am
TomThomson (9/11/2014)
Eirikur Eiriksson (9/11/2014)
Lets add some spanners into the mix
Although the first two chunks indicate clearly that NULL is ordered low by ORDER BY, they don't indicate anything else.
The "spanners"...
September 12, 2014 at 5:29 am
Eugene Elutin (9/11/2014)
Eirikur Eiriksson (9/11/2014)
F. van Ruyven (9/11/2014)
Eirikur Eiriksson (9/9/2014)
Alan.B (9/9/2014)
Cool. I never knew you could do that, very...
September 11, 2014 at 1:14 pm
mario17 (9/11/2014)
This is one way Xactional Replication, I suspect that was done in bulk, I don't really know answer about article, most likely it default (so could be Table...
September 11, 2014 at 10:07 am
F. van Ruyven (9/11/2014)
Eirikur Eiriksson (9/9/2014)
Alan.B (9/9/2014)
Cool. I never knew you could do that, very interesting :laugh:
Edit: sql code...
September 11, 2014 at 9:36 am
Quick code to get you passed the hurdle
😎
USE tempdb;
GO
IF OBJECT_ID('dbo.staff_attendance') IS NOT NULL
DROP TABLE dbo.staff_attendance;
create table dbo.staff_attendance
(
attendance_id int
...
September 11, 2014 at 1:46 am
mario17 (9/10/2014)
That what we got, we had very nice tuned MView defined on Server01 against tables in dbA and dbB (on same Server01).
OK it's time to...
September 10, 2014 at 10:37 pm
More for fun, here is a quick alternative solution
😎
USE tempdb;
GO
DECLARE @NOW DATE = GETDATE();
;WITH CV_WORKEXP(CVID,StartDate,EndDate) AS
(
SELECT CVID,StartDate,EndDate FROM
(VALUES
(28387 ,'2008-01-01','2012-09-01' )
...
September 10, 2014 at 10:22 pm
Eugene Elutin (9/10/2014)
Eirikur Eiriksson (9/9/2014)
Alan.B (9/9/2014)
Cool. I never knew you could do that, very interesting :laugh:
Edit: sql code tag...
September 10, 2014 at 2:23 pm
TomThomson (9/10/2014)
Stefan Krzywicki (9/10/2014)
TomThomson (9/10/2014)
Stefan Krzywicki (9/10/2014)
Date columns as a varchar(7). What are you even putting in there? Still better than the date columns as Timestamp I guess.
It's probably the...
September 10, 2014 at 12:51 pm
GilaMonster (9/10/2014)
Stefan Krzywicki (9/10/2014)
Date columns as a varchar(7). What are you even putting in there? Still better than the date columns as Timestamp I guess.
Well, months have no more than...
September 10, 2014 at 10:34 am
Alan.B (9/9/2014)
Cool. I never knew you could do that, very interesting :laugh:
Edit: sql code tag messed up my "greater...
September 9, 2014 at 11:06 pm
The code is missing the FROM clause in addition to few minor syntax errors, here is a quick correction
😎
Declare @Sem varchar (12) = Null
DECLARE @Decision varchar(1) =...
September 9, 2014 at 10:19 pm
GilaMonster (9/9/2014)
September 9, 2014 at 1:52 pm
Viewing 15 posts - 7,111 through 7,125 (of 8,760 total)