Viewing 15 posts - 31 through 45 (of 137 total)
Sometime that XProc is manually renamed or dropped by DBAs due to security issues. You may want to confirm that the proc still exists on the server.
-Dan
June 11, 2003 at 12:07 pm
We are doing something similar, but not because of the primary keys though...Anyway, what we did was create triggers on the base tables for insert/update/delete that will insert a record...
June 11, 2003 at 11:52 am
From the MS Website:
Status Meaning
Background: SPID is performing a background task.
Sleeping: SPID is not currently executing. This usually indicates that the SPID is awaiting a command from the application....
June 2, 2003 at 3:03 pm
I think you're outta luck. There may be a long shot...if you had Full Recovery Model turned ON, and had never backed up the transaction log, and all data had...
May 29, 2003 at 2:54 pm
quote:
Two users could be setting the flag to locked at the same time, they would both read the flag as being zeroed,...
May 29, 2003 at 2:32 pm
You can use the sp_resetstatus system proc. That will try to force the database online/healthy. You have to stop/start the server to take affect, which may be a...
May 29, 2003 at 2:01 pm
The database can be detached while the server is operational, but not the database. All users must be out of the database before the database can be detached. ...
May 29, 2003 at 11:12 am
I'm not sure if having the empty tables will help...I created empty versions of the tables on my machine and the query works fine. On our server, the address...
May 29, 2003 at 10:03 am
We had some similar problems related to an Active Directory upgrade...After upgrading to AD we left a couple of NT PDC/BDC's on the network to handle authentication of old NT...
May 27, 2003 at 10:55 am
This KB article from MS might be what you need: http://support.microsoft.com/default.aspx?scid=kb;en-us;274098
I ran into the same problem. The key is to set up the Linked server before setting up replication...but...
May 16, 2003 at 10:01 am
Thanks for the script...maybe in the next version of SQL Server it will be just another tab in the Maint. Plan...
-Dan
May 16, 2003 at 9:56 am
Just had a brainstorm...what about this?
1) Create subscription database at subscriber
2) Backup publisher DB
3) Load publisher DB into subscriber
4) Create Pull subsription at subscriber and start syncing
5) Perform differential backup...
May 5, 2003 at 3:48 pm
I've recently converted a bunch of procs from temp tables to table vars, and have seen performance improvements of up to 10 times. You can create a primary key...
May 5, 2003 at 3:34 pm
Just to answer the questions posed...
I'm not compressing the snapshot. I'm using concurrent snapshot generation because I can't lock the production DB during business hours. The BCP files are...
May 5, 2003 at 3:20 pm
My only thought is that the server is picking the wrong execution plan due to the fact that the tables are being created AND populated in the same proc. ...
May 5, 2003 at 3:13 pm
Viewing 15 posts - 31 through 45 (of 137 total)