Viewing 15 posts - 6,331 through 6,345 (of 7,429 total)
It can, make sure the server is loggedoff and try thru a job. If you SQLServer itself is not running then when you execute by hand (not thru a job)...
April 22, 2002 at 10:55 am
Hey GRN that is where I was originally headed if you look at my previous example, but based on his example expected output he is wanting the data based on...
April 22, 2002 at 10:50 am
If you could post your cursor we can look at offer suggestions since this will give us an idea of what exactly you are doing.
"Don't roll your eyes at me....
April 22, 2002 at 10:44 am
Generally this comes from some sort of conflict in the connections parameters. For instance if the old server has a connection called NewServer then the package may fail on the...
April 22, 2002 at 10:37 am
Hey Dan I don't believe that RAID1 is any different than RAID5 on reads, it is writes where 5 is slower due to the parity it writes.
Also noodles is the...
April 22, 2002 at 5:34 am
Sorry about the sumofhourscharged that was from my test item. Anyway considering what yout gave try this.
SELECT
*
FROM
(
SELECT
[No],
ITEMCODE,
AMT,
AMT + (SELECT ISNULL(SUM(AMT),0) FROM Sl iT WHERE iT.AMT > oT.AMT) as...
April 22, 2002 at 5:16 am
quote:
and if its to do with index sorting etc
That answer is no. What it is...
April 22, 2002 at 4:41 am
Sorry to say this one is a bit overkill
quote:
Select customerID from customer_data where customerid not in (select customerid from customer_log where...
April 22, 2002 at 4:30 am
So far myself I have been lucky in that a very few number of our databases have a restore commitment of less than 24 hours and those that are are...
April 22, 2002 at 4:13 am
1) Agreed, especially with maintainence issues of SQL 7 and 2K are far superior and they are full supported currently by MS. W2K has it's advantages over NT4 but no...
April 19, 2002 at 3:35 pm
Your best bet is to get a packet sniffer on the box to monitor the packets and see if anything specific happens. Also can use netmon but I have not...
April 19, 2002 at 12:41 pm
Do a trace on the DB activity with an update query that should not cause the trigger to fire.
"Don't roll your eyes at me. I will tape them in place."...
April 19, 2002 at 12:36 pm
The only problem thou with parallelized queries is they have to meet a threshold on the server before this occurrs (this is definable but default is usually best). Also to...
April 19, 2002 at 11:49 am
Can you provide an example. This is not clear to me.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 19, 2002 at 8:57 am
It is based on time value sections.
Ex.
run_duration = HH:MM:SS
1 = 00:00:01
335 = 00:03:35
102456 = 10:24:56
Hops this helps.
"Don't roll your eyes at me....
April 19, 2002 at 8:55 am
Viewing 15 posts - 6,331 through 6,345 (of 7,429 total)