Viewing 15 posts - 6,691 through 6,705 (of 9,643 total)
Using Aliases is the where clause should not improve performance. The query plans should be the same.
December 5, 2008 at 9:32 am
My major issues are diet (I hate veggies and love chocolate), procrastination, and eating out. I'd go out for every meal if I could afford it.
December 5, 2008 at 9:29 am
You can't. You just run a trace a trace using the Standard Template (be sure to include the TextData column for the RPC completed event) and add filters on...
December 5, 2008 at 9:09 am
Do you have the database set to AutoClose? That should be turned off if it is on.
Are you tracing the starting and completed events? That would explain seeing...
December 5, 2008 at 8:16 am
Have you run Profiler like I suggested to see what is happening behind the scenes? All SSMS is doing is issuing an update statement so there has to be...
December 5, 2008 at 7:53 am
Huh?
When you create a login for SQL Server you are only granting access to the server, unless you place them in a fixed server role, not to any databases. ...
December 5, 2008 at 7:51 am
What is in the TextData column of the SP:StmtCompleted events and the RPC:Completed events. Are you sure that they are related?
December 5, 2008 at 7:28 am
Run a Trace, SQL Profiler, when you attempt to edit the data in SSMS, then my guess is you will see an update statement with your one character followed by...
December 5, 2008 at 7:25 am
SP:StmtCompleted shows each step in a stored procedure, like IF @parameter is Null Then, while RPC:Completed and SP:Completed events are fired when an entire RPC call or Stored Procedure is...
December 5, 2008 at 7:21 am
This article has some good information and links. And this is the BOL link which I have used to do a command line install in the past.
December 5, 2008 at 6:31 am
Let's just say that I would not recommend changing this setting. As the person says in their comment, this is not supported by MS so why make that change....
December 5, 2008 at 6:25 am
Really the WITH ENCRYPTION option or a third party tool is the only way to go if you are putting all the business logic in the database. Personally I...
December 5, 2008 at 6:12 am
Check out this thread: http://www.sqlservercentral.com/Forums/Topic613439-146-1.aspx. You can also use a DDL trigger, see BOL for how.
December 5, 2008 at 5:38 am
rbarryyoung (12/4/2008)
I would use Replication. This is exactly the kind pof thing that it was intended for. I really don't see that roll-your-own triggers would add anything.
Seconded.
December 5, 2008 at 5:35 am
Please post your .NET code. Then we may be able to help. It seems like you are not correctly initializing the parameters in .NET.
December 5, 2008 at 5:32 am
Viewing 15 posts - 6,691 through 6,705 (of 9,643 total)