Se puede usar el datediff con el datefirst:
Código SQL:
Ver originalCREATE TABLE #fechas(
fecha datetime
)
INSERT INTO #fechas VALUES (getdate())
INSERT INTO #fechas VALUES (dateadd(wk,1,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,2,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,3,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,4,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,5,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,6,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,7,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,8,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,9,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,10,getdate()))
INSERT INTO #fechas VALUES (dateadd(wk,11,getdate()))
INSERT INTO #fechas VALUES (dateadd(dd,-3, getdate()))
SET datefirst 6
SELECT DATEDIFF( week,
DATEADD(DAY, -@@DATEFIRST, getdate()),
DATEADD(DAY, -@@DATEFIRST, fecha)) AS wk, fecha FROM #fechas
wk fecha
1 2017-11-14 14:06:05.087
2 2017-11-21 14:06:05.100
3 2017-11-28 14:06:05.100
4 2017-12-05 14:06:05.100
5 2017-12-12 14:06:05.100
6 2017-12-19 14:06:05.100
7 2017-12-26 14:06:05.100
8 2018-01-02 14:06:05.100
9 2018-01-09 14:06:05.100
10 2018-01-16 14:06:05.100
11 2018-01-23 14:06:05.100
0 2017-11-07 15:13:13.320
0 2017-11-04 15:14:43.727
-1 2017-11-03 15:17:37.273
Si te fijas el dia 4 es inicio de la semana Actual(semana 0) si agregamos la fecha del domingo (3 de noviembre) es la semana -1
Referencia
AQUI