Viewing 15 posts - 196 through 210 (of 1,098 total)
Can you explain what changes become undone?
Can you post the code of the stored procedure?
April 1, 2004 at 11:24 am
Run
SELECT a.id
FROM TA a
INNER JOIN TB b
ON a.id = b.id
WHERE b.id IS NULL
If it returns any id, then those ones are missing in TB.
March 31, 2004 at 1:57 pm
You can query the rows column on the sysindexes table.
Should be updated frecuently but i'm not use of how accurate it can be.
You can try comparing those values against select count(*).
March 31, 2004 at 1:53 pm
You could use dbcc showcontig to know index fragmentation.
Also check the script page of this site, that you will find already made script that you can use or modify.
March 31, 2004 at 1:44 pm
The windows account wich runs the sql server agent service is admin?
Wich is the owner of the job? You should change it to sa, so the job will be run...
March 30, 2004 at 9:50 am
Did you manage to apply the snapshot?. All the sp should be created in the snapshot.
Maybe you should reinitialice the subscription to start all over again.
To drop replication (entirely) first...
March 30, 2004 at 6:46 am
You can script the entire database with all it objects and then execute the script in the dev server. But the script will aso save the location and size of...
March 29, 2004 at 10:35 am
BCP Out is the fastest way of exporting to a text file according to MS. If you can lock the table with 'table lock on bulk load' parameter of sp...
March 29, 2004 at 8:17 am
I don't think the above query should work ok.
Try checking the query first.
March 29, 2004 at 8:14 am
Try adding an alias from the Client Netword utility specifying the ip server adress in the server name.
And then re create the linked server with the alias name.
March 29, 2004 at 8:12 am
You can create a backup device to a netword drive, like this:
exec addumpdevice 'DISK', 'NetBkp', '\\ServerName\d$\Directory\File.bkp'
And then execute directly the backup to that device:
Backup Database DBNAme TO NetBkp
Or can just...
March 29, 2004 at 8:01 am
I think you can't assign direct create index to users. The owner of the table or the db owner, can create indexes.
So like I said beore, you could try creating...
March 29, 2004 at 7:56 am
Triggers for INSERT, UPDATE Or/AND Delete wich also can be INSTEAD OF TRIGGERS or AFTER TRIGGERS (default)
March 29, 2004 at 7:48 am
March 29, 2004 at 5:38 am
Choose VARCHAR(8000) instead of NVARCHAR (8000).
March 29, 2004 at 5:35 am
Viewing 15 posts - 196 through 210 (of 1,098 total)