Viewing 15 posts - 451 through 465 (of 629 total)
So you have a fact table with a set of totals by day. you want to get a count over time based on that data. So using my...
June 9, 2010 at 2:28 pm
Sorry I'm confused. What would you be storing in the fact table? If you do not have a boxID then how are you storing the fact? do you just...
June 9, 2010 at 2:13 pm
Sorry update was a poor choice of word. what I meant to ask more is to clarify that when the record is clean and outputed to SQL any way...
June 9, 2010 at 1:59 pm
Assuming I am not over simplifing what you are looking for and assuming I have mocked up data that is a representation of what you are looking for then this...
June 9, 2010 at 1:53 pm
one last question are you updating the fact table from a fact table or are you pulling the data from a SQL database and then inserting into the data wharehouse....
June 9, 2010 at 1:33 pm
so would it be fair to say you are looking for the number of groups a box is in during a time period?
June 9, 2010 at 1:15 pm
not to ask a dumb question but did you check all logs? Application log, event log, Sql server erro log, SQL server system log?
June 9, 2010 at 1:07 pm
I apologize for my silly post before. I looked and I was thinking there was a more specific error when there was a violation. once again the filling drawer...
June 9, 2010 at 12:53 pm
based on the error it sounds like the foreign key constraint already exists. I would look in management studion and verify what leys and constriants already exist.
June 9, 2010 at 12:41 pm
I think I am following you but to be sure would the count ever be more than 1? if so can you give an example of when it woul dnot...
June 9, 2010 at 12:36 pm
I have run into the same problem and after much googling I discovered that VBA does not support Null in the same context it used to. as such Null...
June 9, 2010 at 12:30 pm
If CleanRecord then
Row.DirectRowToCleanOutput() 'This works fine
Else
Row.DirectRowToErrorOutput()
Row.PAIDDATE = #11/6/1984#
Row.DirectRowToScrubOutput()
End if
So PAIDDATE gets updated Even if Row.DirectRowToCleanOutput() is updated? I assum the paiddate is some other value before this trasform is executed?
June 9, 2010 at 12:18 pm
you can not determine when a record was inserted or updated unless you have either a trigger setup to record a timestamp or some form of record auditing is active....
June 9, 2010 at 12:09 pm
CirquedeSQLeil
Here! Here! I could not agree more with what you said. I am still new but I answer questions I feel I can and I get more out...
June 9, 2010 at 10:34 am
chage the where cluase from 'userid=' to 'userid in'
delete from users
where userid in
(select users.userID from users
left join aspnet_users
on users.Username = aspnet_users.UserName
where aspnet_users.UserName is null)
June 9, 2010 at 10:06 am
Viewing 15 posts - 451 through 465 (of 629 total)