Viewing 15 posts - 3,136 through 3,150 (of 3,366 total)
I had a good exchange with someone about similar subject in the thread below, it could give you some ideas. If you still have questions post again. Hope this helps.
September 7, 2006 at 12:13 pm
That is correct edit the Master or if it is from a restore operation rerestore it is faster than editing the Master. Hope this helps.
Kind regards,
Gift Peddie
September 7, 2006 at 11:36 am
It depends on the type of JOIN but it is covered in detail by Peter Gultuzan in the book below. Hope this helps.
http://www.amazon.com/SQL-Performance-Tuning/dp/0201791692
Kind regards,
Gift Peddie
September 7, 2006 at 10:07 am
Quick answer BIN(binary sort order) is the fastest sort but case sensitivity is required. In a financial application it is a good thing to have albeit a pain to use.
Latin_1_General_Bin...
September 6, 2006 at 2:48 pm
EDIT
I just reread your post it is related to Atomicity of transactions, that is one at a time. But still look into what I posted below.
transrecords [one]
account [many]
But you are...
September 6, 2006 at 10:08 am
Let me add to the previous posters but you determine relationship by upper and lower bound cardinality. The base line is you determine tables through files and association to create your columns. ...
September 5, 2006 at 1:20 pm
It is simple first find the meaning of this Fecha_Apertura in English and then what is the formatte of this 1157472771 and it becames a Convert code to get the...
September 5, 2006 at 11:23 am
In SQL server there is a separate collation for every language in Europe, six Chinese and the list goes on the reason is with column level collation you can render...
September 5, 2006 at 10:50 am
I have used Oracle and SQL Server in production, I have not had reason to call Microsoft their documentation is the best in the business; I had called Oracle Metalink...
August 31, 2006 at 2:44 pm
Two things to do make the columns UNION compatible and create Unique index, UNION will perform an implicit distincts to remove the duplicates in your query result and Unique index...
August 31, 2006 at 11:22 am
No he just said he prefered stored procs, but he was asking for both and you are assuming the SQL Server procedure cache will keep your stored proc in the...
August 30, 2006 at 12:31 pm
ADO.NET transactions is more efficient because you can use one code block to do a lot and it implements IDisposable so you can call dispose before you start the code block...
August 29, 2006 at 6:20 pm
That is correct, there is not much difference between ADO.NET transactions and T-SQL transaction because both are technically none atomic transactions because of T-SQL support for nested transaction. But for...
August 29, 2006 at 1:13 pm
That is correct DTS on xp_cmdshell running as job can make it almost real time, remember SQL Server Agent needs access to the network which means admin level permissions. Hope...
August 25, 2006 at 5:37 pm
hey,
Here is link for the developer's edition.
http://www.provantage.com/microsoft-e32-00575~7MCSB0EX.htm
Kind regards,
Gift Peddie
August 25, 2006 at 5:33 pm
Viewing 15 posts - 3,136 through 3,150 (of 3,366 total)