Viewing 15 posts - 91 through 105 (of 115 total)
Unfortunately I don’t have any spare slots, I have total 4 of them out of which 2 are used for C Drive & 2 are used for...
June 6, 2006 at 3:28 am
This should help you.
SELECT rows FROM sysindexes WHERE id = OBJECT_ID('<TABLE_NAME>') AND indid < 2
June 5, 2006 at 10:31 am
sp_updatetask is provided for backward compatibility only, check BOL for more info.
June 2, 2006 at 1:01 am
Add the outputfile pramater in steps under webtask job .
sp_runwebtask [ [ @procname = ] 'procname' ]
[ , [ @outputfile = ] 'outputfile'
June 1, 2006 at 10:57 am
You are asking the hole architecture may be you should as questions related to db issues, then you might get some good tips on that.
June 1, 2006 at 6:21 am
if you are the only one who is updating the other table then you can pull the records in tmp table check the condition then if needed update the...
June 1, 2006 at 3:32 am
If trace is enabled on the server then you can find from that.
June 1, 2006 at 3:14 am
June 1, 2006 at 3:10 am
you can restore the backup on your current db itself or even drop & create db will also work in your case.
June 1, 2006 at 2:30 am
Try seting recovery model to simple in db properties under options tab.
May 31, 2006 at 10:32 am
Try replacing "STANDBY" with "RECOVERY"
OR
Try replacing "DBO_ONLY" with "RESTRICTED_USER" as "DBO_ONLY" is available only for backward compatibility.
May 31, 2006 at 10:23 am
If you are running SQL Server 7.0, after renaming the SQL Server machine, the SQL Server service will fail to start, with an error message "Your installation was corrupted or...
May 31, 2006 at 10:12 am
If the numbers of columns are going to be constant at all the time then cross tab is the most effective way of getting the result set.
May 31, 2006 at 3:00 am
There are 3 ways as far as i can think.
1. You can use dts to transfer the data from one server to another if they are on the same network.
2. You...
May 31, 2006 at 2:37 am
Viewing 15 posts - 91 through 105 (of 115 total)