Viewing 15 posts - 3,811 through 3,825 (of 9,643 total)
Jeff Moden (11/17/2009)
Alvin Ramard (11/17/2009)
Grant Fritchey (11/17/2009)
Paul White (11/17/2009)
LMGTFY version 2.0:I'm confused now. Shouldn't that be LMBTFY?
Let
Me
Be
The
First
Yeller??
BWAA-HAA!!! You have too much time on your hands, Alvin. 😛
Is it UTC...
November 17, 2009 at 1:00 pm
You should be able to use the FoxPro OLE DB Driver to access the data. It will need to be downloaded and installed on the SSIS development machine and...
November 17, 2009 at 9:10 am
What property do you have the expression in?
I would put this expression in the Font Family Property:
IIF(Fields!xxx.Value = "N/A", "Arial", "WingDings")
Then in the Value property of the TextBox:
=SWITCH(ISNOTHING(Fields!xxx.Value),"o",
Fields!xxxl.Value= "True","x",
Fields!xxx.Value= "N/A",Fields!xxx.Value)
See...
November 17, 2009 at 7:55 am
Thanks to the 3 G's (Grant, Gus, and Gail) for weighing in on the Index Fragmentation thread. Fortunately, for me, you confirmed what I would have said, I feel...
November 16, 2009 at 8:53 am
kramaswamy (11/16/2009)
November 16, 2009 at 8:52 am
According to the Bulk Insert entry in BOL there is an ORDER argument for Bulk Insert.
If you are explicitly doing an ORDER BY on your select the data should be...
November 16, 2009 at 7:32 am
There are a lot of things that could be happening here, but without table and index definitions, and the specific query it is hard to say what could be the...
November 16, 2009 at 7:17 am
What are you using to do the import (DTS, SSIS, bcp, bulk insert)?
Do you have an indexes on the table?
By design RDBMS's do not guarantee any specific order...
November 16, 2009 at 7:14 am
A primary key uniquely identifies a row.
An identity column is an auto incrementing/decrementing column that has no meaning other than as a row identifier. These columns are often used...
November 16, 2009 at 7:11 am
Is this a mapped drive?
How are you running the package, in BIDS, SQL Server Agent Job, batch file?
November 16, 2009 at 7:06 am
Have you done index maintenance and updated statistics on both servers?
November 16, 2009 at 7:04 am
I'll answer question 2. In my opinion, you should try to avoid having to handle security within your application. If you do not have situations where the data...
November 16, 2009 at 7:00 am
Duplicate question. Please answer here
November 16, 2009 at 6:57 am
I'd try something like this:
SELECT
O.user_id
FROM
dbo.orders AS O
GROUP BY
O.user_id
HAVING
MIN(created_date) >= DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE())-1, 0) AND
MIN(created_date) <...
November 16, 2009 at 6:56 am
I believe that once you have passed the data through some transforms that SSIS no longer considers the input to the MERGE JOIN as sorted, the transform just before the...
November 16, 2009 at 6:41 am
Viewing 15 posts - 3,811 through 3,825 (of 9,643 total)