Viewing 15 posts - 42,916 through 42,930 (of 49,571 total)
Those commands will also drop all of the data pages from cache, forcing SQL to go to disk next time it needs data.
Do not run those on a busy production...
November 27, 2008 at 12:58 am
Traceflag 1222 is preferred over 1204 on SQL 2005 as it provides a lot more info. 3605 is not required for logging deadlock info to the error log.
To get deadlock...
November 27, 2008 at 12:57 am
Not possible.
The only database-scoped triggers are the DDL triggers that fire on schema changes. DML triggers have to be placed on each table and will fire when that table is...
November 27, 2008 at 12:54 am
ntext has a limit of 2GB. If the string is getting trimmed at 4000 characters, then it has something to do with how you're putting the data in or how...
November 27, 2008 at 12:50 am
Can you post one of the CREATE LOGIN statements that the script generated?
November 27, 2008 at 12:49 am
shekihan (11/26/2008)
November 27, 2008 at 12:47 am
madhu.arda (11/26/2008)
Thanks Gail,is that must and should to enable page level locking for all the indexes?
No. It will enable page locks for the index specified in the alter index statement
what...
November 27, 2008 at 12:43 am
ALTER INDEX < Index name > ON < Table Name >
SET (
ALLOW_PAGE_LOCKS = ON
)
GO
Also you may want to revise that script. Both showconting...
November 26, 2008 at 4:19 pm
Please don't cross post. It just wastes people's time and fragments replies.
Besides, I've already answered your post over here: http://www.sqlservercentral.com/Forums/Topic609456-147-1.aspx
No more replies to this thread please.
November 26, 2008 at 4:05 pm
v.reddy (11/26/2008)
You're welcome to check books online. All of the events are there along with their descriptions.
i belive trace will show...
November 26, 2008 at 3:57 pm
No. Just try not to have multiple constraints/unique indexes on the column(s) referenced by the key.
November 26, 2008 at 2:39 pm
You need to concatenate the variables into the string (beware SQL injection). They way your dynamic SQL is currently written, SQL's looking for two table variables, called @TableInput and @TableOutput...
November 26, 2008 at 2:35 pm
I'm not a fan of dynamic SQL either, but it's the only practical way to get this working with more than around 3 parameters. With 3 or less, you can...
November 26, 2008 at 2:31 pm
All of the foreign keys that the query return reference the Names table. Try dropping them.
It's odd, they should be referencing the pk, not the unique index.
November 26, 2008 at 2:28 pm
dg (11/26/2008)
Now we are getting somewhere,
I'm sorry if the support here isn't up to your expectations.
verify that SQL Server is configured in Mixed Authentication Mode
As I said in...
November 26, 2008 at 2:27 pm
Viewing 15 posts - 42,916 through 42,930 (of 49,571 total)