Viewing 15 posts - 1,486 through 1,500 (of 3,233 total)
I do not, but if you've set up your Progress DB as a linked server, you should not need to use OPENQUERY. Instead, use the linked server reference to...
January 29, 2009 at 12:49 pm
Right on Chris. I'll give my vote for the first option as well. We have a SP here that relies heavily on using a table valued function (along...
January 19, 2009 at 9:18 pm
I'm a bit skeptical that you'll find a way to read the "meta" responses as QA or SSMS does via SSIS. This type of stuff is usually best represented...
January 19, 2009 at 9:11 pm
1. Create the following in SSIS:
a. User::FileName of type string
b. ForEach Loop Container
c. Any task you need done...
January 19, 2009 at 9:01 pm
Keep in mind also that the buffer cache hit rate is cummulative from the last restart of the SQL service. PLE consistantly less than 300 is a sign of...
January 16, 2009 at 4:32 pm
You're looking for an upsert. Here's a good thread on the topic. I'm in favor of the UPDATE....if @@rowcount = 0 INSERT method.
http://www.sqlservercentral.com/Forums/Topic638136-65-1.aspx
January 16, 2009 at 3:28 pm
Lynn Pettis (1/16/2009)
January 16, 2009 at 3:21 pm
True. Looking back at the static dates table in this example, I see that this would be the case. What we do (for our DW) is use the...
January 16, 2009 at 1:50 pm
Jeffrey Williams (1/16/2009)
1) cDate in StaticDates should be stored as a datetime instead of char(8).
2)...
January 16, 2009 at 1:36 pm
DECLARE @SomeDate datetime,
@Today datetime
SELECT @Today = GETDATE(),
@SomeDate = DATEADD(dd,-30,@Today)
--example with AsofDate 30 days ago
IF MONTH(@SomeDate) =...
January 16, 2009 at 1:23 pm
You posted this in the SSIS forum, are you trying to do this in SSIS? If so, is this in a ExecuteSQL task or where have you done this?...
January 16, 2009 at 12:08 pm
Why the CROSS JOIN on your dates table? How many rows are in each of the tables?
January 16, 2009 at 11:51 am
OK, now try to write this in T-SQL and post your first stab. We'll take it from there and help you out. Hint...a calendar or dates table would...
January 16, 2009 at 11:42 am
Funny. I didn't see Eric's post for the same refresh reason. I did see Michael's but I just wanted to second the Conditional Split transform.
January 16, 2009 at 11:40 am
Viewing 15 posts - 1,486 through 1,500 (of 3,233 total)