Viewing 15 posts - 61 through 75 (of 143 total)
OK - you're a bit stuck if you can't alter the source tables. Worst case you have to do the brute-force column-by-column comparison. You could still have a win using...
July 29, 2008 at 2:31 am
The difference is that you are modifying data by inserting the results into a table. Doing any data modification causes an implicit transaction to be wrapped around the statement, and...
July 29, 2008 at 1:47 am
If I follow your description correctly you're using CHECKSUM() comparisons to determine whether a newly imported row is different to the stored copy of that row, correct? If so,...
July 29, 2008 at 1:36 am
Yep, agree with RBarryYoung on this one. CLR is definitely the wrong tool for this task - even with his indexer method, in your example best case you're going to...
July 20, 2008 at 11:34 pm
umailedit (7/16/2008)
Partitioning is available only for SQL 2005 and above...
I'm afraid that's incorrect. Partitioned views are available on SQL Server 2000 - see here for more info: http://msdn.microsoft.com/en-us/library/aa933141(SQL.80).aspx
Regards,
Jacob
July 17, 2008 at 5:42 pm
Does the connection string on your data source in the report point to a different server than the one hosting your RS reports? If so to use Windows auth...
July 16, 2008 at 6:05 pm
No problems Sujith,
You can get good read performance from RAID5, so if you compared RAID1 (2 spindles only) to RAID5 (3+ spindles) you would likely have seen improved reads (the...
July 14, 2008 at 5:22 pm
Are these real LUNs backed by seperate physical sets of disks? If so, yes they should give better performance than having them all on one LUN. However RAID5 is generally...
July 13, 2008 at 7:08 pm
Don't re-invent the wheel - the ASP.NET supports encrypting sections of the web.config using one of two methods (DPAPI or RSA), using the aspnet_iis.exe tool. Have a look here for...
July 1, 2008 at 9:06 pm
Small suggestion: maybe I missed a reference to this, but wouldn't the Bit datatype be perfectly suited to the Data Source column (one bit column per source)? No need for...
June 23, 2008 at 7:36 pm
With only 8 disks on a single RAID controller I'd do the following:
RAID1 OS/swap
RAID1 User Databases
RAID1 TempDB
RAID1 Logs
and backup across the network...
June 12, 2008 at 11:26 pm
Sorry for resurrecting this old thread, but Vladan do you have a BOL or similar reference for this?:
Vladan (5/27/2008)
June 12, 2008 at 11:13 pm
Please tell me that the reason for changing this field to binary is not a half-assed attempt at "encryption"...
Regards,
Jacob
June 12, 2008 at 10:45 pm
One very small thing: unless you're going to be somehow running the dynamic SQL string on a pre-OSX Mac(!) I'd use the "correct" Windows CRLF sequence, which is "char(13) +...
June 12, 2008 at 10:30 pm
This is one situation where a CLR function would do the job nicely. It's got a nice URI object that exposes the various parts of a URL as properties -...
May 22, 2008 at 8:55 pm
Viewing 15 posts - 61 through 75 (of 143 total)