Viewing 15 posts - 50,161 through 50,175 (of 59,091 total)
Are you using a loop of any kind in the data load process?
--Jeff Moden
Change is inevitable... Change for the better is not.
June 5, 2008 at 6:07 pm
We're still waiting for you to post something that can actually be troubleshot...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 5, 2008 at 5:07 pm
Yes... same solution... just export the data as tab delimited and do the split on the tab.
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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.
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2008 at 6:02 pm
Kevin (6/4/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2008 at 5:33 pm
Sounds a lot like homework... don't mind helping, but let's see what you've tried... also, take a look at the URL in my signature... you'll get a better answer quicker...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 4, 2008 at 5:03 pm
Viewing 15 posts - 50,161 through 50,175 (of 59,091 total)