Viewing 15 posts - 631 through 645 (of 7,636 total)
Not sure why you would need to be testing a date if the staging table already contains the rows that you need? And I certainly do not know why...
March 27, 2010 at 11:39 am
The involvement of ServiceBroker seems particularly odd to me. Are you perhaps using Database Mirroring?
March 27, 2010 at 11:26 am
A bit tongue in cheek perhaps, but my point is serious: database administration should not be doing something like this own their own and independent of the Applications or the...
March 27, 2010 at 11:16 am
Marcia Q (3/26/2010)
March 27, 2010 at 11:13 am
There are several thousand scripts here at SQL Server Central, could you please indicate exactly which one you mean?
March 27, 2010 at 10:58 am
Nice idea Paul. I've tried some things like this in the past, but I could never seem come up with a query pattern that would be retain a stable...
March 27, 2010 at 9:59 am
Ah, nice idea. I like that one.
March 27, 2010 at 7:13 am
Paul White NZ (3/26/2010)
RBarryYoung (3/26/2010)
*(??? Hmmm,...
March 26, 2010 at 9:01 pm
Jeffrey Williams-493691 (3/26/2010)
RBarryYoung (3/26/2010)
Trey Staker (3/26/2010)
Kit G (3/26/2010)
March 26, 2010 at 7:34 pm
The SQL Server "Duration Time" probably is not including some or all of what is normally called the "transmission time", that is, the network+etc time that it takes to transmit...
March 26, 2010 at 7:28 pm
Have you tried a query like this?:
SELECT MAX(CAST(LTRIM(CAST(subID AS VARCHAR(MAX))) AS bigint)) AS id
FROM
(
SELECT
...
March 26, 2010 at 7:18 pm
As long as you haven't given any of these groups special roles (sysadmin, db_owner, datareader, etc...), it shouldn't be that hard. Just like you said, first revoke ALL access...
March 26, 2010 at 6:51 pm
I agree with Grant, this has the feel of a logic bug. You can post the procedure's code if you would like us to check it.
March 26, 2010 at 6:16 pm
Here's a View that I wrote awhile back that should do most of what you need: http://www.sqlservercentral.com/scripts/tables/62545/
March 26, 2010 at 6:13 pm
Viewing 15 posts - 631 through 645 (of 7,636 total)