Viewing 15 posts - 7,381 through 7,395 (of 26,490 total)
Not sure how we can help. Deferred name resolution allows you to create an object, like a stored procedure, before other objects used in the procedure are actually created.
If...
June 10, 2013 at 12:06 am
The print statements are buffered. You won't see them until the buffer is full and the OS (or is it actually SQL Server, not sure) sends them to SSMS.
June 10, 2013 at 12:02 am
This is to prevent data loss between the principal and mirror databases. Asynchronous commits data to the principal without waiting for it to be committed on the mirror. ...
June 9, 2013 at 11:57 pm
You are going to have to break the mirror and set it up again on the other server.
June 9, 2013 at 11:53 pm
tmac25 (6/7/2013)
Is there a way to have T-SQL select this record if I'm querying for...
June 7, 2013 at 1:30 pm
dbman (6/7/2013)
001|08|C3000|Company1|014|6020
001|08|C3001|Company2|014|6020
001|08|C3002|Company3|014|6030
001|08|C3003|Company|014|6030
001|08|C3004|Company5|014|6030
001|08|C3005|Company6|014|6030
001|08|C3006|Company7|014|6030
Sales Table Sample Data:
01|C3000|2013|1| 9191.16| 7335.65
01|C3001|2013|1| 0.00| 0.00
01|C3002|2013|1| ...
June 7, 2013 at 9:29 am
Unfortunately you haven't provided enough information for anyone to try and help you. We really need to see the entire procedure plus DDL for the tables involved, sample data...
June 7, 2013 at 12:02 am
Would help to see the code and the actual execution plan. Without at least the code all you are going to get are shots in the dark. The...
June 6, 2013 at 6:39 pm
Sean Lange (6/6/2013)
June 6, 2013 at 3:13 pm
Sean Lange (6/6/2013)
Dird (6/6/2013)
Sean Lange (6/6/2013)
June 6, 2013 at 12:52 pm
SteveEClarke (6/6/2013)
so forget the TrnDate Fields -
I suppose something like ....
Max TrnYear, TrnMonth to give...
June 6, 2013 at 7:32 am
Dird (6/5/2013)
Lynn Pettis (6/5/2013)
Actually, something more like this:
Seems more complex/messy. I think I'll remember my way in case I have a DBA interview (chance to see how little I know...
June 5, 2013 at 10:01 pm
Dird (6/5/2013)
Luis Cazares (6/5/2013)
The "Numbers" or "Tally" Table: What it is and how it replaces a loop.
The problem with that is you'd have to create the table separately, when you...
June 5, 2013 at 4:06 pm
gmamata7 (6/5/2013)
I checked those 2 columns values and both are showing same value as 1000 & 1000.So how we know statistics were updated with full scan or with sampling?
Logic...
June 5, 2013 at 3:14 pm
Try this:
declare @TestTab table ( -- Table variable to hold sample data
Id int, -- Not really sure what data type is being used but this works
...
June 5, 2013 at 2:19 pm
Viewing 15 posts - 7,381 through 7,395 (of 26,490 total)