Viewing 15 posts - 601 through 615 (of 2,612 total)
SSIS can be a bit tricky. Visual Studio is 32 bit only, so if you do any testing or development on the server itself, you will be doing so...
September 25, 2008 at 6:42 am
You would have to enclose it in square brackets:
[My.Schema].[MyTable]
I would say that putting a dot in your schema name is a really bad idea.
September 25, 2008 at 5:51 am
I am assuming this is a 32 bit server.
Enabling AWE at the OS and SQL Server level is probably what you will want to do for now. Depending on...
September 25, 2008 at 5:19 am
I have yet to find an Oracle driver that is actually 100% OLEDB compliant. Both the MS and the Oracle native client have trouble with numeric data types. ...
September 25, 2008 at 5:09 am
When it is "stuck", what state is the update in? Check it with sp_who2.
Most stuck processes are either blocked by another process or SUSPENDED waiting on a resource. ...
September 25, 2008 at 5:04 am
You have left some information out, so here are a few questions.
What does the database design look like? 15tb is a lot different if there is one very large...
September 25, 2008 at 4:59 am
"Dirty Reads" is also a bit misleading. It is possible to miss data and read the same data more than once.
For example, if you query a list of people...
September 24, 2008 at 12:46 pm
Don't join an INT to a NUMERIC in a lookup. They may not always match - especially if you are using an Oracle or Sybase data source. Use...
September 22, 2008 at 12:59 pm
RTRIM() or TRIM() everything. Trailing spaces get in the way a lot.
September 22, 2008 at 12:51 pm
If the lookup is telling you that it found no matches, trust it. It found no matches.
By looking at your DDL, I would guess that you have a VARCHAR...
September 22, 2008 at 12:34 pm
There is some limit. I don't think it is the number of nested functions, I think it is the length of the text of the expression. It's pretty...
September 22, 2008 at 12:15 pm
You need to get some SSIS training. It is very different from SSIS. Pick up a book ASAP.
This should be done using a derived column transformation.
September 22, 2008 at 9:49 am
If you are getting the error where I think you are in the process, the path needs to be UNC to a shared folder path. Your subscriber is looking...
September 22, 2008 at 8:38 am
As far as security, to use SSIS for this, I would recommend a VPN tunnel. If you cannot do that, to connect to your ISP's SQL Server directly from...
September 22, 2008 at 8:33 am
AS previously posted, there are not a lot of down sides. You need enterprise SQL, so make sure you have ponied up for the licensing. The possible performance...
September 22, 2008 at 5:29 am
Viewing 15 posts - 601 through 615 (of 2,612 total)