Viewing 15 posts - 11,281 through 11,295 (of 14,953 total)
I don't know that you can force the use of a full text index that way. You could, however, force it to use a specific execution plan. Look...
January 27, 2009 at 2:39 pm
What are you using to load the database? SSIS and an SQL Agent job? Something else?
January 27, 2009 at 2:18 pm
Have you tested the SP by itself, not as part of a package?
January 27, 2009 at 11:52 am
Ah. There are more requirements than just copying data. Got it.
You'll need to look into more of the options SSIS has for merging data without duplicating existing data....
January 27, 2009 at 11:49 am
Steve, I'm not sure how we would move the performance stuff to another thread. Copy and paste? Or should I copy and paste it into Word and send...
January 27, 2009 at 11:44 am
You'd have to build a table of months (or a full-on calendar table) and do a cross join from that to the locations, and then a left outer join from...
January 27, 2009 at 11:42 am
To do that, you're going to need to do something like this:
create table #Rows (
TableName varchar(100),
ColumnName varchar(100),
Rows int)
declare @sql varchar(1000), @Table varchar(100), @Column varchar(100)
select @Table = 'dbo.MyTableName', @Column = 'MyColumnName'
select...
January 27, 2009 at 11:39 am
Correct is "MacDonald", "van Dyke", "D'Angelo", but most people usually won't get upset by "Macdonald", "Van Dyke", "D'angelo". Those are wrong, but people are accustomed to the error. ...
January 27, 2009 at 11:19 am
There are lots of ways to automate this. It basically boils down to, what errors do you want?
For example, you can just Title Case every word (first letter is...
January 27, 2009 at 9:38 am
Open up BIDS (Business Intelligence Management Studio), start an Integration Services project, and drag your data transformation object onto the work area. Open that, add your sources, destinations, any...
January 27, 2009 at 8:46 am
Scott Anderson (1/27/2009)
I was at a dealer for car inspection and there was a Prius idling in the parking lot...
January 27, 2009 at 8:06 am
I've done this before, and I do recommend the upsizing wizard. It worked out quite well for me.
January 27, 2009 at 8:03 am
Are you sure you don't mean you want to create an SSIS package for that? SSIS pretty much replaces DTS in SQL 2005 and 2008.
January 27, 2009 at 7:51 am
iainthepitman (1/27/2009)
January 27, 2009 at 7:50 am
That's fine. You just can't do it that way in the Exec command, like you have in your proc.
January 27, 2009 at 7:48 am
Viewing 15 posts - 11,281 through 11,295 (of 14,953 total)