Viewing 15 posts - 901 through 915 (of 992 total)
And also bear in mind that the slowest thing in your DB server will be your disk(s). So the duration includes the time spent waiting on data from the disk...
August 15, 2005 at 11:58 pm
To make things efficient, try rewriting to not use a cursor. I'll have a quick shot at it now...
But. When you say "eliminate all duplicate records that occur within a...
July 22, 2005 at 11:47 pm
By granting a user the rights to execute a stored procedure or select from a view, any objects accessed by the view/SP are accessed using the rights of the view/SP...
July 22, 2005 at 11:27 pm
Any options for some sort of event driven queue - ie, when a message is received, SQL will call a stored proc? Kind of like a trigger I suppose.
Sounds very...
June 30, 2005 at 7:31 am
Yeah, we do the temp file thing for our doc management app...
But for some apps that accept a http:// URL, you could always shellExec the URL and have the app...
June 24, 2005 at 5:41 pm
That's because you don't need to care so much - the replication will work regardless of if or where you have a clustered index, or any other indices for that...
June 23, 2005 at 5:50 pm
As others have said, you should use the "inserted" table in your trigger - it contains the new rows of data being inserted. Then you could just update the rows...
June 23, 2005 at 5:46 pm
I very much agree, just another tool in the belt that may come in handy.
June 22, 2005 at 7:38 am
Excellent article - one of those technologies that I've not had any experience with, have read about and wondered even more and hoped that if asked something about it during...
June 22, 2005 at 7:30 am
That would be something you would do on the client side... What client-side interaction is occurring?
Perhaps you want SQL to raise an error and pass a message back to your...
June 22, 2005 at 7:19 am
The sa account is only available on MSDE if you used
securitymode=sql
when installing msde from the command line.
Actually, come to think of it, you will also need to have specified
disablenetworkprotocols=0
on the...
June 22, 2005 at 7:16 am
What about things like set options that are active when you are running in QA vs the environment modifying the table causing the trigger to execute?
Also, perhaps the use of...
June 22, 2005 at 7:11 am
Couple of Q's
1. Could you please post some example SQL code? What TSQL construct are you using to access the remote data?
2. I...
June 22, 2005 at 7:06 am
I guess that it is something that Joe Celko might say, but an index is a performance boosting concept and might influence how SQL Server executes your query, but should...
June 22, 2005 at 7:02 am
OSQL and ISQL are pretty much the same - one uses ODBC and the other uses DB-Library to connect to SQL... I've used osql out of habit
June 22, 2005 at 6:59 am
Viewing 15 posts - 901 through 915 (of 992 total)