Viewing 15 posts - 2,341 through 2,355 (of 7,429 total)
In explination it is "Number of transactions started for the database."
It does not include Select as it does not cuase data changes.
But note I have seen some items throw weird...
January 28, 2004 at 4:19 am
Yeah, they really are pushing for you to use WIndows Authentication for optimal security.
January 28, 2004 at 4:01 am
Yeah using proper casing the string would be better. Thanks for the input.
January 27, 2004 at 4:40 am
Well it can actually depend on yuor version of SQL and some settings I forget. If you store as a string and compare to a string SQL in most cases...
January 23, 2004 at 3:36 pm
It all depends on your queries and your data. Sometimes a person will autogen (IDENTITY) a value for the primary key to use in relationships but a real world key...
January 16, 2004 at 5:21 am
Here are a few others as asked for.
1. -1
This trace flag sets trace flags for all client connections, rather than for a single client connection. Is used only when setting...
January 16, 2004 at 4:57 am
We experimented with it and found it added a bit of a load to our systems but never got around to playing with the options to see if we could...
January 12, 2004 at 4:43 am
Or simply wright your trigger in a method that is completely reusable then you can do something like so.
Suppose I have a column in every table called ModCol for the...
January 12, 2004 at 4:30 am
Oops sorry mistook your question for the wrong intent. I do myself usually right for LEFT JOINS simple because it is easier for me to visualize.
January 12, 2004 at 4:07 am
For best performance and security use SPs for updates, inserts, deletes, etc.
Generally found ADO Client sider cursor for Connection cursor type to be fastest but should test both server side...
January 8, 2004 at 9:42 pm
Right versuses left is nothing more than choice of table reference order and which needs all the data. In this case table 2s data should all be there but those from 1...
January 8, 2004 at 9:29 pm
DO you have any commits in your SP as everything should work or fail.
WHat is the application written in and can you change to ADO easily (or with help).
January 8, 2004 at 9:22 pm
Without having data to test with I can only shoot a bit here but this should work better simple because it replaces the exists which are you primary reason for...
January 8, 2004 at 9:16 pm
The syntax is strictly
IF UPDATE(colname)
You can check for multiple columns like so.
IF UPDATE(colname1) AND/OR UPDATE(colname2)
Or that that column was not in the update like so
IF NOT UPDATE(colname)
But those are the...
January 8, 2004 at 4:42 am
Besides
DATEADD ( hh , (DATEDIFF ( hh , GetDate(), GetUTCDate() )) , @dt_Date_Time )
will only deal with the current time difference between the values. Consider that Time Zones...
December 22, 2003 at 5:50 am
Viewing 15 posts - 2,341 through 2,355 (of 7,429 total)