Viewing 15 posts - 301 through 315 (of 334 total)
You'll have to drop the constraint also. To figure out what the constraint is, I usually script out the table. The constraint could also be the statistics.
Alter table...
February 1, 2002 at 12:51 pm
You can't have to servers (windows) with the same names, so hence unless your using named instances of Sql,(2 part name) you can not have 2 Sql servers with the...
January 31, 2002 at 2:44 pm
It thinks that the numbers are int's to start with. Try to do:
select cast((30.0/364.0) as dec(20,20))
That will return the value.
Tom Goltl
January 30, 2002 at 11:40 am
Another thing with the application log. You can set the max log file size and overwrite option, by right clicking on the appropriate log and setting those options. ...
January 21, 2002 at 3:13 pm
You can issue a couple different commands to make sure you are getting correct information.
dbcc updateusage
or
sp_spaceused 'table_name','true'
the true in the second command indicates you want to update usage.
Hope...
January 21, 2002 at 2:58 pm
Could you be truncating some of the data from @MyAttachment???
Also try to verify that sql has access to the file by executing:
master..xp_getfiledetails 'Your file path here'
Just to check that your...
January 15, 2002 at 3:49 pm
I'm not sure I understand your question completely but here goes.
You can place a generic stored procedure in the master database with an 'sp' prefix and you can...
January 15, 2002 at 3:37 pm
Here is a stored procedure that I have. It tells me the current connections in a database. You can either give it the name of the database you...
January 7, 2002 at 10:29 am
You could turn this into a dts package. That would simplify the administration of the stored procedure. And to boot, I'm pretty sure you can export the results...
January 7, 2002 at 10:08 am
I agree with Steve. Put a batch size on this. Also for this load I would make sure the table does not have a PK or any indexes...
January 4, 2002 at 12:37 pm
In the first query the plan is doing a clustered index seek (as per the index hint). Very optimal. The second query is doing a table scan. ...
December 21, 2001 at 8:25 am
Thanks for the information. Although to late to use in my case.
Tom
December 20, 2001 at 8:27 am
I tried this and it worked for some of my users and not others. I discovered the problem to be that 2000 supports 7.0 encryption but some of my...
December 19, 2001 at 9:32 am
You might try shutting down the sql agent. I thnik that is the service that the maintenance plans run under.
Just a thought.
Tom
December 11, 2001 at 1:22 pm
Viewing 15 posts - 301 through 315 (of 334 total)