Viewing 15 posts - 61 through 75 (of 168 total)
Actually this was just a small example. I have several transactions, that is why I need to use the self join.
March 13, 2012 at 8:16 am
Guess I didn't indicate the result I needed. Need the 0 in AuthAmount when Source = S to be updated to 100. It does not update.
Why did I...
March 13, 2012 at 8:00 am
I figured it out. I haven't used this app in years but it is being used still today. I haven't updated anything either. I installed the latest...
February 13, 2012 at 6:17 pm
I'm sure the queries are running slow. Seems like they all are. I read if I change the driver, it would run faster.
I'm not much of a VB...
February 13, 2012 at 5:52 am
Works perfect, thanks ... very fast also
December 26, 2011 at 3:41 pm
On the restricted servers I can execute a query, create temp tables, etc. Maybe I can create a sp on them but I'm not supposed to (pretty sure those...
December 11, 2011 at 9:26 am
All I have is read rights on a few servers (can't save a sp either to those databases). I'll just extract the data I need and move it. ...
December 10, 2011 at 1:38 pm
Ahh ok, I though a function could be part of the stored procedure, that the reason for it was to make it easier to reuse that part of the code....
December 10, 2011 at 10:19 am
Jeff, yes. In probably 1/2 the databases I have full permissions, the rest I work with temp files.
December 9, 2011 at 5:36 pm
I have to run this on a few different databases, some of which I only have read permissions. I'm assuming there is a way to work the function into...
December 7, 2011 at 7:55 pm
Jeff that works flawless, can't wait to run it against the comment database. Thank you!
It is a neat tool. Would be interesting to run it against Sql Server...
December 7, 2011 at 5:36 am
I give, how does DelimitedSplit8K split the field MyData into single words?
CREATE TABLE #TempSplit
(MyData varchar(200))
INSERT INTO #TempSplit
(MyData)
SELECT 'My SQL skills are broken' UNION ALL
SELECT 'SQL Server Central rocks' UNION ALL
SELECT...
December 6, 2011 at 11:04 pm
Jeff, which areticle has resources? Thanks.
December 6, 2011 at 5:20 am
Why not delete the table and recreate it.
December 5, 2011 at 10:43 pm
Viewing 15 posts - 61 through 75 (of 168 total)