Viewing 15 posts - 1 through 15 (of 18 total)
I used this for my solution and seems to work just fine. We faced a problem with creating extract files that an Excel PowerPivot is to import and if the...
July 9, 2015 at 7:11 am
So is this a homework assignment? There are missing details here, like what is the type of accounting periods are they expecting, calendar based or something like a 4-4-5 accounting?...
July 8, 2013 at 4:56 am
Victor Kirkpatrick (7/15/2010)
July 15, 2010 at 8:16 am
One thing I think could be improved is the key for the tables should not be a random key, I would suggest to use the date as the key. So...
July 15, 2010 at 5:58 am
According to this post http://social.msdn.microsoft.com/Forums/en-US/sqlgetstarted/thread/589ca193-3541-4c5e-965c-4c515d6b476b/[/url] is suggests it will not work with SQLExpress.
February 19, 2009 at 6:05 am
The mutiple OR clauses will not always get you to hit indexes, so that is not a good idea.
Kimberly Trip recommends to perform UNION ALL instead of OR statements.
Otherwise...
May 12, 2008 at 5:51 am
While I don't agree with the approach, and I have created survey apps that did not stuff everything in one column, there is the potential to store your data as...
May 12, 2008 at 5:39 am
Normally to search different docs not included is to obtain an iFilter from the vendor. Adobe does have an iFilter that allows the full-text searching to crawl these files.
I just...
January 29, 2007 at 5:50 am
The prior was an example for SQL 2000, I noticed you wanted something from SQL 2005, so here is a different example. There are new views that make it easy,...
December 29, 2006 at 9:04 am
Here is a quick example of how you might do something like what you want to do:
DECLARE
@ServerName NVARCHAR(128)
December 29, 2006 at 7:55 am
You can use the built in function DAY(<your date> ), MONTH(<your date> ) and YEAR(<your date> ).
October 25, 2006 at 6:00 am
Did you install the SQL Native client on your 2000 box? I have linked servers between 2005 and 2000, but we did not install the native client on the 2000...
October 17, 2006 at 6:36 am
When you strink a log you want to ensure the size makes sense, don't shrink it all the way down to where no data is. The log will grow as...
September 29, 2006 at 10:29 am
Did it take 3 months to determine the table was missing? If you knew right away, then you could have just restored the database to a different database and then...
September 29, 2006 at 7:59 am
Viewing 15 posts - 1 through 15 (of 18 total)