Viewing 15 posts - 50,146 through 50,160 (of 59,078 total)
What are the bounds of the missing dates? Gotta know what you require as a Non-missing date before we can find missing dates.
Also, storing dates as NVarchar is a...
June 6, 2008 at 5:54 pm
Heh... bad day getting worse ol' friend? 😛
June 5, 2008 at 6:13 pm
Are you using a loop of any kind in the data load process?
June 5, 2008 at 6:07 pm
We're still waiting for you to post something that can actually be troubleshot...
June 5, 2008 at 6:05 pm
Another way is to import the spreadsheet into a table as is... then, do something like this to normalize it...
SELECT Vendor,Name1 AS Attendee
FROM sometable
UNION...
June 5, 2008 at 5:07 pm
Yes... same solution... just export the data as tab delimited and do the split on the tab.
June 5, 2008 at 5:03 pm
bullcrap420 (6/5/2008)
Please let me know if you concur or know of an easier or better way to accomplish this.Thank you!
Heh... I don't concur with any of what you're trying to...
June 5, 2008 at 4:54 pm
I agree... it'll likely require a change to the sproc or a bit of very clever SQL Injection and then only if the sproc is vulnerable.
June 5, 2008 at 4:46 pm
I think you guys might be missing something... Yep, I'm sure that you're preaching to the choir when it comes to running jobs at night, etc...
The real problem the OP...
June 5, 2008 at 4:35 pm
You got that from a "SELECT GETDATE()" on both boxes??? If not, what are you using to get this date and what happens if you try "SELECT GETDATE()" on...
June 5, 2008 at 3:51 pm
Sure, it could be... the real key is to write code that doesn't need it to prevent blocking, though. Generally speaking, code that uses WITH (NOLOCK) everywhere is to...
June 5, 2008 at 11:28 am
kappa (6/5/2008)
OK, here we go. I have done the search, and then some... Among loads...
June 5, 2008 at 11:17 am
kappa (6/4/2008)
Question: HOW?
Answer: CROSSTAB or PIVOT!
... but, like Jeffrey stated, you're gonna need another column of information from somewhere that maintains the sequencing of the rows. Of course, that...
June 4, 2008 at 6:22 pm
That kind of narrows it down to something on the server... are they loading in a different recovery mode than you are? Do you have different server or db...
June 4, 2008 at 6:11 pm
It's not homework, I swear (does it make any difference).
Yes, it does make a difference... I'm more prone to help someone (anyone, not just students) that shows that they've...
June 4, 2008 at 6:02 pm
Viewing 15 posts - 50,146 through 50,160 (of 59,078 total)