Viewing 15 posts - 91 through 105 (of 282 total)
You can specify the collation at database level or table level, see BOL ---> COLLATE clause
February 18, 2010 at 1:45 am
See if this helps
http://www.sqlteam.com/article/introduction-to-locking-in-sql-server
Which is your isolation level?
February 18, 2010 at 1:33 am
See if this helps
http://www.sqlservercentral.com/articles/Advanced/designingcrossdatabasequeries/1753/
(see the "security" section).
Enable the "db" role to log in to DB2 and grant the necessary rights to the base table(s).
To list permissions for a principal on...
February 16, 2010 at 6:36 am
The amount of fragmentation depends on the table and indexes (clustered or not) structure.
Kimberly Tripp's blog on sqlskills.com offers plenty of detail.
February 12, 2010 at 3:51 am
Do you index your XML data?
See if this helps
http://msdn.microsoft.com/en-us/library/ms345118%28SQL.90%29.aspx
February 10, 2010 at 5:21 am
Do you store that column as varchar(MAX), or as XML data type?
February 9, 2010 at 7:29 am
I'm not sure that I understand your environment (for example I see that there are a MySQL database and a SQL Server database involved (?)) and your requirements. Can you...
February 9, 2010 at 5:04 am
Using an "application role" may be helpful in this case.
Alternatively, make your application access the database through a user which has no other rights than the "EXEC" right on the...
February 9, 2010 at 4:49 am
Try to delete chunks of records, see
February 9, 2010 at 4:13 am
See if this helps:
http://research.microsoft.com/apps/pubs/default.aspx?id=64525
February 9, 2010 at 4:00 am
You're welcome...
February 8, 2010 at 1:53 pm
Check the execution plan of those queries, see why they are slow. Indexing may be your problem.
Is your database set to auto update statistics? Are you aware of any unusual...
February 8, 2010 at 4:03 am
SQL 2008 (you may consider upgrading) offers the "transparent data encryption", which protects the data "at rest":
http://www.mssqltips.com/tip.asp?tip=1514
The users in the db should have no other rights than the "EXEC" rights...
February 8, 2010 at 3:28 am
See if this helps. Look for the UNPIVOT usage.
February 8, 2010 at 2:56 am
I had recently the same problem. The main "culprit" was a query which executed repeatedly (each time a product detail page was visited) and required thousands of physical reads. Reviewing...
February 8, 2010 at 2:41 am
Viewing 15 posts - 91 through 105 (of 282 total)