Viewing 14 posts - 76 through 89 (of 89 total)
If you export values from SQL Server to Excel, NULL values should become empty cells in the spreadsheet without any conversion at all. However, I suspect that you want to...
October 21, 2010 at 10:11 am
If you need all the rows from table A with (optional) matching rows from table B and also certain rows from table B you could use a full outer join:
select...
November 23, 2009 at 11:05 am
Hello Jeff,
Thank you so much for posting this solution! We will apply your method in a SSIS Derived Column Transformation on data coming from raw files. This data needs to...
November 18, 2009 at 12:13 pm
It's even harder when you're hired by a customer to handle the health care data of all their customers. Sometimes you run into the conflict between serving your customer and...
October 21, 2009 at 2:03 am
Sorry, I forgot the include the quote:
sql.varun (10/7/2009)
I have a question on Joins.Can anyone help me.
When I run below query it is running for 40 mins as it is...
October 8, 2009 at 6:06 am
Since the 'or' operator has lower precedence as the 'and' operator, when you ommit the parentheses the join condition means something completely different. Without parentheses the predicate behind the 'or'...
October 8, 2009 at 6:04 am
Hello Charles Kincaid,
Some statements you made in your article are not entirely correct. The log backup chain does not start when you make the first database backup, it starts when...
September 30, 2009 at 2:11 am
Every serious SQL task, wether it's OLTP or OLAP, has to deal with some nasty rotating plate along a tiny magnetic core: the hard disk! More memory solves this problem...
September 11, 2009 at 7:07 am
I've seen this problem more often on SQL 2005 than on SQL 2000 instances, but I must agree servers tend to get more cores everyday. On some instances used mainly...
July 20, 2009 at 7:21 am
If you buy a car, you have a very limited set of options compared to everything that is already part of that make or model; maybe another radio, or some...
July 15, 2009 at 9:25 am
First my compliments to you for an excelent article.
Relational databases have their foundation in the mathematical theory of tuples and sets. You might think that today's engines are miles away...
June 17, 2009 at 10:00 am
Great article! I will use it to uncover flaws in the back-up procedure at the various companies I perform regulare DBA tasks, as most of it not only applies to...
June 12, 2009 at 5:19 am
SANs are very good in delivering large amounts of data very fast. But SQL Server needs a whole lot of small i/o requests handled quickly, without messing around with the...
April 20, 2009 at 3:30 am
In practice, as a DBA I am more involved with SANs than I should be, knowing a lot more about them than I should know. SQL Server has been and...
April 15, 2009 at 2:00 am
Viewing 14 posts - 76 through 89 (of 89 total)