Viewing 15 posts - 8,596 through 8,610 (of 14,953 total)
Lynn Pettis (8/22/2009)
GilaMonster (8/22/2009)
Lynn Pettis (8/22/2009)
Lynn tries to work with everyone. 😉Aren't there a few that have made even your personal black-list?
You are right, to a point. But...
August 24, 2009 at 12:28 pm
I can't tell for sure, but your Where clause looks like you're trying to just get the most recent run of the job. Is that correct?
August 24, 2009 at 11:56 am
Take a look at OpenRowset, OpenDatasource, and OpenQuery in Books Online. There are ways to use those to query a proc result-set as if it were a table.
August 24, 2009 at 7:14 am
If you really want to get rid of them all at once, run this:
select 'drop table ' + name + ';'
from sys.tables
where name like 'tmp%';
That'll give you a list of...
August 24, 2009 at 7:10 am
Some data is better lost than left unsecured. Most isn't. There's always a balancing act between security and usability.
On the school locker thing, I actually got to the...
August 24, 2009 at 7:03 am
I think this would be a good option for high-security systems. I don't think it will fly in most small businesses.
August 24, 2009 at 6:55 am
touchmeknot123 (8/21/2009)
Staging table as in temporary table in the Database and then update tableB and tableC ?
It can be done with a temp table. That's how I generally handle...
August 24, 2009 at 6:50 am
DBASkippack (8/21/2009)
ahhh.. the Bill O'Reilly approach worked.. Thanks for the feedback..
It also just got you onto a list I keep of people I won't ever help again.
There are three people...
August 21, 2009 at 2:09 pm
Actually, in taking another look at this, a variable is completely the wrong solution. Would have seen that earlier if I were able to test this, but I don't...
August 21, 2009 at 12:23 pm
That's definitely the right place to start.
I'd rebuild over 20, and the reorg the rest that're over 10.
August 21, 2009 at 12:18 pm
Gianluca Sartori (8/21/2009)
RBarryYoung (8/21/2009)
Gianluca Sartori (8/21/2009)
RBarryYoung (8/20/2009)
August 21, 2009 at 12:17 pm
You can use the shrink file option to empty the data from the file into another file. Then you'll be able to get rid of it.
August 21, 2009 at 12:16 pm
I guess I don't understand your request. You say you need to replace this:
(VV.Fund_Valuation_Date = (SELECT MAX (Fund_Valuation_Date)
FROM dbo.Fund_Valuation VVV
WHERE VVV.Fund_Valuation_Date < '2006-09-01'
AND VVV.Fund_Number = V.Fund_Number
AND VVV.Class_Type_Abbr_Name = V.Class_Type_Abbr_Name
AND...
August 21, 2009 at 12:06 pm
Load it into a staging table, and build a proc that handles it from there.
August 21, 2009 at 9:50 am
Viewing 15 posts - 8,596 through 8,610 (of 14,953 total)