Viewing 15 posts - 5,431 through 5,445 (of 7,429 total)
ook at DYNAMIC cursor and SCROLL_LOCKS and FOR UPDATE clause.
From BOL
quote:
DECLARE CURSOR (T-SQL)Defines the attributes of a Transact-SQL server cursor, such...
June 15, 2002 at 7:32 pm
I think you best bet would be to use Active Script to be able to refinfe the export dynamically. You can create an excel object and build the new structure...
June 15, 2002 at 7:30 pm
I am a bit confused here. Can you walk thru your query. It looks like you try to reference a new item in the same select S is defined as...
June 15, 2002 at 7:28 pm
I have only seen this type of message when trying to restore a 2000 backup to 7. I have done serveral restores from SQL Standard to Dev, and Enterprise with...
June 15, 2002 at 7:18 pm
Common statement but a bad idea in a high transaction environment, especially if you want only committed data. When nolock is specified then dirty reads can occurr (reading of uncommitted...
June 15, 2002 at 7:10 pm
Found it.
The keyword is SAMPLE
quote:
SAMPLE n displays only n records (default is 10).
So example
SELECT *...
June 14, 2002 at 8:36 pm
True but for some folks don't have this luxury or they allow there users way too much access which is bad.
"Don't roll your eyes at me. I will tape them...
June 14, 2002 at 7:44 pm
Steves right, I was have gotten this enough that I should have seen that. Several issue can exist. Make sure the component has been registered. Also may have needs to...
June 14, 2002 at 7:41 pm
Wrong track. Consider why sa only needs 3k rows when a user has far more. What specifically happens and what are you expecting from this query. Maybe you need to...
June 14, 2002 at 7:36 pm
If you are using SQL 2000 then you will need to run BACKUP LOG dbname WITH TRUNCATE_ONLY to mark logs emptiable. I believe SHIRNKFILE has a parameter as well. If...
June 14, 2002 at 7:28 pm
I will get my function list off my machine at work and pass along. Email me directly though or I will forget. Also you can add a timer in you...
June 14, 2002 at 7:19 pm
It is funny, but how else do you think they become familiar with the competitions products. Looks bad on Microsoft to some folks but when you consider who failed looks...
June 14, 2002 at 12:49 pm
Nothing that allows it to work this way dirrectly. The way I handle is to create a trigger for UPDATE and INSERT, then when a change or insert occurrs I...
June 14, 2002 at 12:41 pm
dbcc sqlperf (logspace) -- Shows all log files for the server.
dbcc showfilestats -- shows all the data files for the current database.
sysfiles -- shows all log and data files for...
June 14, 2002 at 12:36 pm
How do you define the connection to the SQL server with regards to the ActiveX control. If it is hard coded you may have pointed at the web box. If...
June 14, 2002 at 12:35 pm
Viewing 15 posts - 5,431 through 5,445 (of 7,429 total)