Viewing 15 posts - 6,316 through 6,330 (of 7,616 total)
The quick and very-dirty-in-this-case "solution" is to put a COMMIT TRANSACTION immediately before the END TRY.
But the whole process overall could be a lot cleaner and faster, particularly if:
auditlogid is...
December 3, 2013 at 10:02 am
keyser soze-308506 (11/27/2013)
I have a query like that
select c.client_group, s.product_id, count(*) as q
from Sales s
inner join Client c on c.client_id= s.client_id
group by c.client_id, s.product_id
the Sales.pk (clustered index) consist of...
November 29, 2013 at 10:30 am
L' Eomot Inversé (11/26/2013)
ScottPletcher (11/26/2013)
Luis Cazares (11/26/2013)
SELECT ABS(DATEPART( dayofyear, CutoffDate) - DATEPART( dayofyear, GETDATE())),
ABS(DATEDIFF( day, DATEADD( year, DATEDIFF( year, CutOffDate, GETDATE()), CutOffDate), GETDATE()))
FROM...
November 27, 2013 at 8:23 am
Luis Cazares (11/26/2013)
Here are 2 options to perform your calculation:
SELECT ABS(DATEPART( dayofyear, CutoffDate) - DATEPART( dayofyear, GETDATE())),ABS(DATEDIFF( day, DATEADD( year, DATEDIFF( year, CutOffDate, GETDATE()), CutOffDate), GETDATE()))
FROM #Temp
I don't think the...
November 26, 2013 at 12:17 pm
I'd expect the restore time to generally be longer; if restoring to a new database, potentially significantly longer.
For a backup, SQL only needs to backup the active portion of the...
November 25, 2013 at 1:42 pm
You could create a separate "key master" table, containing only an identity column and the four natural key columns, clustered on the natural key columns, NOT the identity.
Then, the first...
November 25, 2013 at 1:39 pm
Use view "sys.dm_db_index_operational_stats".
Capture the values at the start time, then recapture them at any subsequent time, subtract the two values, and voila, you have the mods that occurred during that...
November 25, 2013 at 1:32 pm
I'm not sure why you would want to insert all iterations of the list of values into the countryid table, but this should fix a couple of the potential errors...
November 25, 2013 at 1:23 pm
registrazioni 75612 (11/22/2013)
Ty.Please, what is IIRC please?
just a link to a doc site.
Ty
Max
IIRC == "If I recall correctly" == hedge in case I'm wrong 🙂
For more info on Change Tracking...
November 22, 2013 at 8:04 am
CDC could do it too, of course, but it has more overhead and is available only in Enterprise Edition; it's overkill for what you've described you need.
November 21, 2013 at 7:33 pm
Change Tracking should handle your situation easily and completely. IIRC, CT requires that the table have a PRIMARY KEY defined.
November 21, 2013 at 11:16 am
Of course not all CTEs are going to be updateable, it will depend on the specific coding of the CTE ;-).
November 21, 2013 at 11:06 am
You don't have to use two ROW_NUMBER() clauses/entries:
;WITH detail AS (
SELECT *, ROW_NUMBER() OVER (ORDER BY id) AS row_num
FROM #test
)
SELECT
...
November 21, 2013 at 11:04 am
Luis Cazares (11/20/2013)
As all values will show in a single column, the first value will determine the column data type.
I don't think that's right. I think SQL uses data...
November 20, 2013 at 1:42 pm
first a 800
first a 200
first a 1000
TOTAL 2000
first b 100
first b 200
TOTAL 300
second a 400
TOTAL 700
second b 400
TOTAL 1100
GRANDTOTAL 5100
I don't understand the totaling logic you want.
"TOTAL 700"?? Is...
November 19, 2013 at 11:18 am
Viewing 15 posts - 6,316 through 6,330 (of 7,616 total)