Viewing 15 posts - 916 through 930 (of 1,315 total)
If someone put 20 indexes on a heavily-updated table it would kill performance, but that doesn't mean all indexes should be avoided. If every update kicked off a cascade of...
January 9, 2006 at 6:04 pm
You can get SQL Server to do the translation for you. Open the table as a query in Enterprise Manager and drop your old-style query into the SQL panel. It...
January 6, 2006 at 9:31 am
I once showed up for a job interview where the development team showed me the scariest database diagram I had ever seen. Suppressing the urge to run away, I asked...
January 6, 2006 at 8:49 am
SQL Enterprise edition with only 2GB of RAM? You should at least be at 4GB, more if your hardware & OS support it. You should have the log files on separate drives...
January 5, 2006 at 10:09 am
SQL 2005 manages memory more flexibly. If your app has a lot of stored procs it may enlarge the procedure cache (at the expense of buffer pool) to keep more...
January 4, 2006 at 10:16 am
In the Dec 2005 updated Books Online, look for "diagrams [SQL Server], upgrading" in the index.
It says, "Database diagrams created on previous editions of SQL Server databases are upgraded automatically...
January 4, 2006 at 9:49 am
If you wanted to prove whether this conversion in taking place in the database or in the client software, use profiler to see exactly what is being inserted.
Another question is...
January 4, 2006 at 9:36 am
If you're seeing a question mark, my guess is that it is not just a code page issue. The character is probably being converted either before insertion or on display. The euro character...
January 4, 2006 at 8:04 am
You could alias the original column to a different name in a derived table, then the 'Date' alias in the main select field list is unique.
select
January 4, 2006 at 7:43 am
This does sound like merge replication (or possibly SQL 2005's peer-to-peer replication). Log shipping works well for maintaining a failover system, but it is readonly.
You could create your own system...
January 4, 2006 at 7:29 am
I'm not sure where you got that idea, Integration Services comes with the standard edition also.
January 3, 2006 at 8:02 am
Even with 30 databases (or more), the best advice is to put data and log files on separate physical drives (regardless of RAID configuration).
The I/O traffic is different. As you...
December 27, 2005 at 10:48 am
I don't own any ApexSQL software, but I evaluated ApexSQL Edit and loved it. I tried but couldn't convince management to buy everyone a copy. I didn't have any serious issues,...
December 27, 2005 at 10:34 am
NOLOCK aka READ UNCOMITTED aka "dirty read"
Allows reading a table in spite of any uncommitted transactions that may be in progress on other connections.
Pro: It saves time by not creating...
December 22, 2005 at 9:29 am
One more time, SQL Server is happy to let you use multi-line strings with embedded tabs. The end-of-line is just white space to the SQL syntax analyzer, you...
December 21, 2005 at 4:23 pm
Viewing 15 posts - 916 through 930 (of 1,315 total)