Viewing 15 posts - 6,721 through 6,735 (of 8,416 total)
Ha, so on second look, the same thing answers the second question. When the function does data access (the database numbers table) it can't be deterministic, so SQL Server...
November 7, 2009 at 6:49 am
Flo,
The first part of your question is easy: SQL Server marks all functions as non-deterministic unless they are schema-bound. Schema-binding a function forces the engine to evaluate the content...
November 7, 2009 at 6:46 am
Online rebuilds generally result in greater residual fragmentation than offline rebuilds. For the 'best possible' results REBUILD offline, with MAXDOP = 1, and SORT_IN_TEMPDB = ON. Also make...
November 7, 2009 at 6:37 am
Are the tables in question heaps? (no clustered index)
The script explicitly excludes heaps. The only way to defragment a heap is to create a clustered index on it, and...
November 7, 2009 at 4:06 am
This might assist:
-- Create a test table variable
DECLARE @CallLog
TABLE
(
...
November 7, 2009 at 3:54 am
Florian Reischl (11/7/2009)
Just had a really strange behavior last week which appeared completely stupid to me.
Feel free to share! PM or The Thread...
Florian Reischl (11/7/2009)
November 7, 2009 at 3:43 am
Only one set of jobs will be enabled, depending on which server is primary.
I would encourage you to try this out in practice (you can log ship from and to...
November 7, 2009 at 3:31 am
Newbies??? Flo - in the words of a very popular drink over here..."yeah, right!"
November 7, 2009 at 3:21 am
I know I'm late to this party, but I have to say:
Only shrink if you absolutely must reclaim disk space.
Shrinking moves pages from the end of the physical files one...
November 7, 2009 at 3:18 am
In SQL Server, 'endproc' is not implied, it must be explicitly created as a label.
A label in SQL Server consists of a single word followed by a colon, so:
GOTO endproc;
PRINT...
November 7, 2009 at 3:11 am
Kevin,
To answer your question literally, the closest analogue to a synchronized method call would be a transaction (as Florian described) running at the SERIALIZABLE isolation level.
I think it is really...
November 7, 2009 at 3:08 am
Florian Reischl (11/7/2009)
@paul-2: Thanks for test data! ๐
You're very welcome. I'm hoping that if I do it enough, future posters will get the hint ๐
I know not everything in...
November 7, 2009 at 2:57 am
Hey Lowell,
I have an uneasy feeling that I am misunderstanding you, but I believe the reference was to the SQL Server Logs (as shown in SSMS):
Paul
November 7, 2009 at 2:39 am
Lisset (11/6/2009)
Servidor: mensaje 22051, nivel 16, estado 1, lรญnea 0The client connection security context could not be impersonated. Attaching files require an integrated client login
The user 'rpp' is a SQL...
November 7, 2009 at 2:31 am
kiranmca24 (11/6/2009)
What is the use of Import and Export?
It allows you to import data to, and export data from, SQL Server databases.
It is pretty configurable (you can import and export...
November 7, 2009 at 2:28 am
Viewing 15 posts - 6,721 through 6,735 (of 8,416 total)