Viewing 15 posts - 1,921 through 1,935 (of 2,612 total)
I usually include an identity column on my fact tables and make that and some kind of additional field as the PK for the table. The only reason for...
April 11, 2008 at 11:49 am
When database mail sends an email with an attachment, it finds the attachment in the absolute path specified. This path is relative to the SQL Server, not to the...
April 11, 2008 at 11:45 am
The OLEDB Command is what you would want to use in SSIS.
Yes, it will insert or update one row at a time. That is what SSIS does and it...
April 11, 2008 at 9:33 am
Are you pulling data from the two data sets in the same data flow?
If you are, there would be very little "extra" overhead in sorting your data sets and using...
April 11, 2008 at 9:28 am
It's going to depend on the amount of data you are importing, the amount of data in the lookup tables, and number of lookups, server configuration, and a host of...
April 11, 2008 at 9:22 am
Sounds like a complicated way to avoid using an identity column. Why aren't you using an identity column?
April 11, 2008 at 9:17 am
Nope.
Well...it depends on what you are doing.
A SQL Command can use a file as a source for it's command and the file can be larger than 4000 characters.
If you are...
April 11, 2008 at 9:14 am
Use the Reporting Services Configuration utility.
It will be in the start menu group for the SQL 2005 configuration tools. The tool should walk you through configuring the reporting service...
April 11, 2008 at 9:07 am
11M is a bit much for a lookup.
You could use a second data source and a merge join, but you will probably get the best performance out of staging the...
April 11, 2008 at 9:04 am
The standard is to use surrogate keys on every dimension table regardless of needing to or not. I would recommend doing this in nearly every situation.
It does mean that...
April 10, 2008 at 11:12 am
The error variables are scoped to the error handler.
Click the "Event Handlers" tab, create an error handler, then look at the system variables in the variables window.
You can also enable...
April 10, 2008 at 10:47 am
By default, transactional replication creates a bunch of stored procedures on the subscriber that handle your inserts, updates, and deletes. Feel free to go look at them.
The default behavior...
April 10, 2008 at 10:07 am
You can configure memory to be dynamic or static. If you use dynamic memory allocation, you can specify a min and max. You can configure the amount of...
April 10, 2008 at 8:56 am
The DBCC command to "PIN" a table in memory was dropped with SQL 2005. It is my understanding that there is no replacement.
SQL 2005 will retain your table in...
April 10, 2008 at 8:22 am
That's the approach I would take as well (except I would use upper-case for some reason).
As an alternative, you could go to the advanced tab of the lookup control, turn...
April 10, 2008 at 8:15 am
Viewing 15 posts - 1,921 through 1,935 (of 2,612 total)