Remus Rusanu

24,271
reputation
1549 views

Registered User

name Remus Rusanu
member for 7 months
seen 1 hour ago
website
location Seattle, WA
age 37
9h
answered Tracking external changes to a database with LINQ-to-SQL
9h
comment SQL Server stops processing for 20 seconds
WRITELOG means the requests has commited a transaction and is waiting for the log to be hardened (written to disk). OLEDB is a distributed query wait. In sys.dm_os_tasks you should look for task_state. PENDING would indicate a scheduler bottleneck (all workers are occupied)
9h
accepted Date of last login or read operation on a SQL Server database?
10h
answered SQL Server stops processing for 20 seconds
12h
comment Ok to rely on SQL Server tuning advisor for generating Indexes?
Usually statistics are auto-created and auto-updated. The general rule is to let the engine handle the statistics, automated, and the exception is to create them manually.
13h
accepted Ok to rely on SQL Server tuning advisor for generating Indexes?
13h
answered Ok to rely on SQL Server tuning advisor for generating Indexes?
13h
comment When to try and tune the SQL or just summarize data in a table?
The the question you ask can e rephrased as "Should I use an of-the-shelf OLAP engine or should I roll my own?". You know that the answer, on the long run, will always be "use one of-the-shelf". I know in large orgs there is always more at stake (oh, the politics...). If you reporting-lite is succesfull, will it trigger more reporting? Will the solution bare the spot-light of success two years down the road? Maybe puting that SQL Server license to good use and isntall the SSAS makes sense. I says is better to ask forgiveness than to ask permission...
14h
answered Redirecting Database Queries to another Server
14h
answered When to try and tune the SQL or just summarize data in a table?
16h
answered Date of last login or read operation on a SQL Server database?
19h
accepted How can I use if statement after a CTE (SQL Server 2005)
1d
answered SQL: Datatype choice for values -1, 0 and 1
1d
answered SSRS - Unable to determine if the owner of job has server access [SQLSTATE 42000] (Error 15404))
1d
comment SQL Server Express Chicken or Egg issue with logins
And you can change it after you create the database: create login, create db, change default db for login.
1d
comment SQL Server Express Chicken or Egg issue with logins
The default DB is optional. You can leave it at master.
1d
comment SQL Server Express Chicken or Egg issue with logins
'db owner' is not an object per se, like a 'login'. DB Owner is an after-fact: is the login that owns a specific db. To create a login, use create login [domain\user] from windows. To change the owner of a database, use alter authorization on database::[dbname] to [domain\user]. Any database created by a login automatically belongs to that login, so he will become the DB owner for that particular db.
1d
accepted How can I include an ALTER VIEW statement in a transaction for a deploy script?
1d
answered SQL Server Express Chicken or Egg issue with logins
1d
answered How can I include an ALTER VIEW statement in a transaction for a deploy script?
1d
comment SQL Server Notifications - My OnChange does not fire.
The SELECt per se looks valid to me, but there are about a mirriad more criteria. See msdn.microsoft.com/en-us/library/…
1d
answered SQL Server Notifications - My OnChange does not fire.
1d
answered Documenting a REST service
1d
comment Stored Procedure WHERE LIKE ID or NAME
@Andomar: I'm not entirely sold on that. For one the cost of scanning 100k rows over and over adds up for given a query that is run often enough. Second is that table scans increase contention, sice they need to do the S-lock on every row, so they're very likely to conflict with updates. I have found that more often than not the root cause of slow systems is table scans and the lock contention they create. snapshot isolation can alleviate some, but at the cost of more IO in tempdb. Performance often derives from Proper access (proper query, proper index and avoiding ORs in queries).
1d
revised Stored Procedure WHERE LIKE ID or NAME
added 131 characters in body
1d
answered Stored Procedure WHERE LIKE ID or NAME
1d
accepted Practical limits of SQL-Server database.
1d
comment SQL Server Latches and their indication of performance issues
What changed? Any configuration changes, hardware modifications, application code changes, schema changes?
1d
answered SQL Server Latches and their indication of performance issues
1d
revised What determines which local SQL Server cache tables can be cached?
edited tags
1d
comment Practical limits of SQL-Server database.
Releational databases are usualy chosen for reasons of queriability (complex SQL queries), availability (failover clustering/mirroring/RAC) and disaster recoverability (write ahead log of ACID transactions, backup/restore plans). Do you need some/all of these? If you do have these requirements, then will be very difficult to satisfy them w/o a relational database. If you don't, then you probably have more options.
1d
awarded  Nice Answer
1d
comment Reproducible Deadlock Using Cascading Constraints
Deadlock between two deletes using cascading constraint, deadlock betwen a delete and any other operation, or single-statement deadlock (ie. sql bug) ?
1d
comment Practical limits of SQL-Server database.
Just to be clear: the TPC-C tran/sec measures the tpc-c workload 'tran', which is bigger than an insert and an update. Still, 10k simple trans/sec is a pretty big number.
1d
comment SQL Server Express 2008 not detaching auto-attached file?
I wasn't aware in 2K8 the AtachDBFileName does not start a user isntance, as it did in 2005. If the 2008 xcopy attaches the db with auto-close and leaves it attached on disconnect (but auto-closed) then this would explain the behavior you see. Why do you need to detach and replace as a routine operation in your application? I undertsand at development time, but on deployment? At development time forcing a sp_detach_db seems acceptable, is what VS does under the covers anyway apparently.
1d
comment SQL Server Express 2008 not detaching auto-attached file?
Sry, I assumed you use AttachDBFilename since the overwhelming majority of users do that w/o realising the draw-backs.
1d
revised Practical limits of SQL-Server database.
added 1178 characters in body
1d
answered Practical limits of SQL-Server database.
1d
answered SQL Server Express 2008 not detaching auto-attached file?
Dec
12
comment Threads and simple Dead lock cure
I wish things would be so easy... If you are in the rare position that the code has a list of objects to lock a,b,c yes, you can compare the addresses. But most times a is locked in a function f(), b is locked in g() and c is locked din h() and none of these functions know about the other. It is kind of unrealistic to assume in an application that all locks will be acquired in blocks, knowing what all locks will be and a reference to each.
Dec
12
answered SQL Server version 612 , 655 ?
Dec
12
answered Threads and simple Dead lock cure
Dec
12
answered How might I improve the execution time of my join-heavy query?
Dec
12
comment What is the fastest way to insert a large amount of records into a SQL Server DB?
Bulk copy operations are mutually exclusive as they acquire table level locks. Multiple threads can only write bulk copy into separate tables.
Dec
12
accepted What is the fastest way to insert a large amount of records into a SQL Server DB?
Dec
12
answered How can I pass a multi dimensional array as an argument to a worker thread in C#?
Dec
12
comment What is the fastest way to insert a large amount of records into a SQL Server DB?
It's tru that is not 'practical', but is useful info as a reference to know what is possible. Once you see how the pro's do it, you can find innovative ways to apply it to the task at hand.
Dec
12
answered What is the fastest way to insert a large amount of records into a SQL Server DB?
Dec
11
accepted XPath to fetch SQL XML value
Dec
11
revised XPath to fetch SQL XML value
added 1171 characters in body; added 369 characters in body; added 23 characters in body