Viewing 15 posts - 13,681 through 13,695 (of 14,953 total)
Michael Earl (5/14/2008)
May 14, 2008 at 12:02 pm
It depends on what the job is doing and what the other stuff is doing.
May 14, 2008 at 11:54 am
There are no perfect security solutions. Decide what's good enough, and then go with that.
May 14, 2008 at 10:07 am
etxeb (5/14/2008)
My purpose is to read some csv files from an application. And to do that I thought that the best way was to bulk that csv to the...
May 14, 2008 at 10:00 am
Won't matter if the next desired row is the same account number.
Will matter that it's SQL 2000. (You posted this in the 2005 forum, so I assumed it was...
May 14, 2008 at 9:59 am
There may be ways to test it without taking that down, but really, do you want a test that tells you, "oh sure, it'll probably work", or do you want...
May 14, 2008 at 9:55 am
Your analogy is like an analogy. (Very funny. Phil Factor will love it.)
May 14, 2008 at 7:06 am
Something I would try first, if I were you, is setting up a transaction log backup to run every 15 minutes or so. It's quite likely that this will...
May 14, 2008 at 7:00 am
Yes. You can either set up a linked server, or use openrowset.
May 13, 2008 at 3:11 pm
This article, http://www.sqlservercentral.com/articles/Advanced+Querying/61716/, has an outline of how to do that kind of thing. Just substitute string concatenation for sub-totals.
May 13, 2008 at 3:10 pm
(As an aside, please keep the code a little narrower. I dislike horizontal scrolling. Not a big deal, but I'd appreciate it.)
Nope. No explanation for that. ...
May 13, 2008 at 3:05 pm
GilaMonster (5/13/2008)
May 13, 2008 at 3:02 pm
You can get relatively accurate with the run time by setting a variable to getdate() before you execute, and another to getdate() after you execute, and comparing the difference. ...
May 13, 2008 at 2:58 pm
A recursive common table expression (recursive CTE) can do that pretty easily. Here's a sample based on your sample data:
create table #T (
Seq int primary key,
Account int)
insert into #T...
May 13, 2008 at 2:55 pm
Viewing 15 posts - 13,681 through 13,695 (of 14,953 total)