Viewing 15 posts - 16 through 30 (of 63 total)
Unfortunately, I don't remember the error. I will write it down next time.
Why? What if it was query timeout?
What if it was deadlock?
-k
October 29, 2002 at 8:50 am
Thanks. It says -1 which means no timeout is set. So how can I get this error if it is unlimited?
I checked the client and the server.
-k
October 29, 2002 at 8:33 am
Greg,
Thanks a lot. That was exactly what I was looking for.
-K
September 24, 2002 at 11:59 am
?Why would that be better performance?
September 23, 2002 at 10:44 am
here is what I have so far but it does not work:
DISTINCT_COLUMNS is a table I made with a list of columns I want to find the distinct values for.
alter...
September 20, 2002 at 9:50 am
I did not state my request clearly. I need the frequency of each DISTINCT value.
Ex: If column_gender has 2 distinct values (M,Y) I need to find out there are 36...
September 20, 2002 at 7:05 am
This did not work.
create trigger mytrigger for update on Mytable as
if update (columnA)
begin
update TableB
set x = a.columnA
from tableB b,mytable a
September 18, 2002 at 10:20 am
there is no index on svc_cat.
So the second is faster or not?
-K
August 22, 2002 at 2:24 pm
SO it has to rerun the query for each row?
I will buy that book.
-Kevin
August 6, 2002 at 8:37 am
Well, this is the exact cursor I was looking at.
select column_name,data_type from information_schema.columns where table_name ='central_regen_fact_table'
order by column_name
--------------------------------
CREATE ...
August 6, 2002 at 5:12 am
Andy,
I can get a select statement to work but not a procedure:
select * into zzz
FROM OPENROWSET('SQLOLEDB','server_name';'sa';'secret_password',
'exec sp_spaceused')
error:
Could not process object 'exec sp_helpdb'. The OLE DB provider 'SQLOLEDB'...
August 1, 2002 at 6:17 am
Thanks Andy,
I don't suppose there would be any way to dynamically build that table based on the results ?
Like...
select * into table_x from table_y
-K
July 31, 2002 at 7:23 pm
Viewing 15 posts - 16 through 30 (of 63 total)