Viewing 15 posts - 106 through 120 (of 122 total)
I'll take a stab at this. I figure that the way the table is designed you don't have, and likely couldn't have the indexes needed to speed this up...
May 6, 2008 at 6:14 am
Here's a way that I've done this. Never used it in production but I've played with it and it works. You would have to look up the max...
April 15, 2008 at 1:02 pm
Thank you, John. I have some research to do.
April 8, 2008 at 5:40 am
I've done a little research and it looks like with DTS I would be reinventing the same process I have now where the DTS package would be created, delivered, and...
April 7, 2008 at 10:24 am
Can DTS be scheduled? Is BOL a good place to look further?
Thanks
ST
April 7, 2008 at 6:27 am
Thanks, Damon. Actually I don't have the proc problem, I know just how I want to do that. The file problem: The server admin doesn't want to...
March 29, 2008 at 6:58 am
Have you looked at UPDATETEXT in Books Online?
March 28, 2008 at 11:58 am
Thanks for replying. Currently the app processes the xls data, creates insert statements, and performs the updates via SQL connection object in java. This is not optimal since...
March 28, 2008 at 9:36 am
If you have a table called CompanyNames you can query like this:
-- Remember to use procs to eliminate SQL injection
SELECT cid from CompanyNames where cname =
One project that...
March 27, 2008 at 10:23 am
I have no idea. I just did a similar test on my machine and got expected results. FYI the execution plan isn't always the best guide. You...
March 27, 2008 at 10:15 am
SELECT TOP 1 * FROM myTable order by myKey DESC
ST
March 27, 2008 at 9:46 am
This was a "round the water cooler" discussion. I appreciate your posts and agree.
Thanks
March 7, 2008 at 8:03 am
Maybe I'm missing something but if you want all records from column 2 then it doesn't need to be in the where clause.
SELECT col1, col2, col3 from myTable WHERE col1...
March 6, 2008 at 12:56 pm
Viewing 15 posts - 106 through 120 (of 122 total)