Viewing 15 posts - 44,056 through 44,070 (of 49,571 total)
Temp tables will be automatically dropped when the connection that created them is closed. You don't have to (and in fact can't) manage the tables in TempDB directly.
2005 does cache...
October 3, 2008 at 11:03 am
There's no direct equivalent. SQL doesn't have the concept of a row's position in the table.
You can use row_number(), but you need to specify the ordering for the allocation of...
October 3, 2008 at 10:59 am
This one's pretty good. Read the comments on the blog post too, as the function needs a table creating.
October 3, 2008 at 10:55 am
I would imagine so. It's a cached plan with parameters, not much different from a stored proc.
Fixes would be the same as for a stored proc, use variables instead of...
October 3, 2008 at 10:52 am
Just bear in mind that SQL 2005 is not fully supported in any virtual environment. If you encounter a problems and call Customer Support, they will probably ask you to...
October 3, 2008 at 10:50 am
binaryspiral (10/3/2008)
October 3, 2008 at 10:44 am
Andrew Gothard (10/3/2008)
* Well, no rules hold fast all the time. Sure someone'll think of a situation where this wouldn't be the case I'm sure
Depends how fast the table...
October 3, 2008 at 5:43 am
Does that username match the account that SQL agent runs as?
Most of the replication jobs run continually, rather than frequently starting and stopping.
October 3, 2008 at 5:39 am
First, run DBCC OPENTRAN and see if there's any reference to replicated and non-replicated transactions. If not, skip to the 3rd paragraph.
Drop any publication that may exist, and make sure...
October 3, 2008 at 5:26 am
Have you considered using the full-text search? It's one of the easier ways to do rating of matches.
October 3, 2008 at 5:16 am
You can read the transaction log raw if you like. It's not easy to understand though. Also it will only have up to the last log backup (in full recovery)...
October 3, 2008 at 4:44 am
There's no syntax errors with the function. The problem is how you're calling it.
... FROM [InfraDesk_ASP_3].[dbo].[RPT_nSLA_REPORT] ( 'All Priorities',1222799400,1225391399,null,null,('Software'),
('Client/Server Application',' Intel Engineering',' INTERNET'), ('Appliance',' Application'), ('')...
October 3, 2008 at 4:40 am
A history table that isn't mostly queried by date?
October 3, 2008 at 4:32 am
DNA (10/3/2008)
October 3, 2008 at 4:24 am
I think part of that got cut off. (The forum software doesn't like triangular brackets)
From what I can see, all you need to do is change the definition of the...
October 3, 2008 at 1:35 am
Viewing 15 posts - 44,056 through 44,070 (of 49,571 total)