Viewing 15 posts - 796 through 810 (of 1,132 total)
To clarify:
In a DTS package, if you have a step that is an ActiveX task, you can call a DLL written in any language.
But the ActiveX script is not running...
December 7, 2005 at 9:20 pm
Actually, there is nothing wrong with your original SQL but think about what the requirement to compare every name and address to every other combination of name and address what...
December 7, 2005 at 9:13 pm
This solution uses each hit as a starting point to look at the next one minute of time for hits on different ports to the same host and source.
This could...
December 7, 2005 at 8:36 pm
An additional comment on tracing.
If one uses the SQL Profilier to capture the trace information, I have found that this tool does have an effect on the overall performance of...
December 7, 2005 at 8:26 pm
Regarding your comments on the trace invalidating the statistics.
"But every execution of UDF adds extra record into statistics log."
It depends on how the trace is configured.
The trace used to capture...
December 7, 2005 at 8:18 pm
After re-reading the post, I realize that I did NOT use Terminal Services to perform the upgrade but instead used Remote Desktop Protocol (RDP).
You can download RDP from...
December 7, 2005 at 6:40 pm
I have at least 5 other sets of comparisons to run to be included in the final article and the results make the DATEONLY UDF look good. A lot...
December 7, 2005 at 3:32 pm
UDFs and the impact on performance.
Abstract:
Most SQL Database Management Systems include the capability of allowing the user to implement an algorithm by writing their own functions either in a SQL...
December 7, 2005 at 3:08 pm
"Carl, you started this and have been amazingly quiet... are you just taking notes and waiting for the dust to settle or what?"
Someone has been out sick for the last...
December 7, 2005 at 11:45 am
"have you tried to upgrade SQL Server 7 to 2000 using Terminal Services?"
Yes.
"Did it work?"
Yes, eventually, but it does leave the directory structure rather messy. You will have...
December 6, 2005 at 6:17 pm
Thanks for the feedback especially that the benchmark needs to be run on a variety of hardware. I will make sure to run the benchmark on hardware varying between...
December 4, 2005 at 7:37 pm
System procedure sp_MSobjectprivs can be used with all types of objects.
-- Table
exec Northwind.dbo.sp_MSobjectprivs @objname = 'dbo.Customers'
-- View
exec Northwind.dbo.sp_MSobjectprivs @objname = 'dbo.Alphabetical list of products'
-- Stored Procedure
exec Northwind.dbo.sp_MSobjectprivs @objname = 'dbo.Sales...
December 4, 2005 at 9:32 am
Please provide DDL and sample data.
For an explanation, see http://www.aspfaq.com/etiquette.asp?id=5006
December 3, 2005 at 2:42 pm
Yes, I have run into this situation many times especially when the root cause is loss of connectivity to SANs and therefore, loss of the ability to access the database...
December 3, 2005 at 2:41 pm
Temporary tables are useful for development and debuging where you need to examine the intemediate results.
Say you have:
insert into #One (select ... from ONE ....) as One
insert into #Two (select...
December 3, 2005 at 8:33 am
Viewing 15 posts - 796 through 810 (of 1,132 total)