Viewing 15 posts - 406 through 420 (of 1,248 total)
How about Profiler in SQL 2005 and PerfMon in OS?
April 30, 2008 at 8:19 pm
Check security;
Check Job Type in each step;
Check log output file if there is any. If there is not, create one, which will provide detail information.
April 30, 2008 at 8:17 pm
It seems a security issue. Check whether or not your DTS package has authority to implement its tasks.
April 30, 2008 at 8:13 pm
If you are asked how to find the max number of connections, right-click the instance, choose Properties, you can find it under the connection tab. But you may need sa...
April 30, 2008 at 8:11 pm
Let me try first.
Backup Set - records all information on each single backup and restores, such as backup time, lsn, and type.
Backup Device - records all informaiton on the backup...
April 30, 2008 at 3:44 pm
I do not think changing sa password will affect your scheduled jobs.
The failure of your jobs may have some other reasons. Check SQL logs and see whether or not you...
April 30, 2008 at 3:21 pm
I do not think you can in SQL 2000 unless you write your own code. SQL 2005 has pivot feature, which may help.
Please correct me if anyone has any different...
April 30, 2008 at 3:15 pm
How about using VBScript? You can trigger the script from your T-Script.
http://www.microsoft.com/technet/scriptcenter/scripts/hardware/default.mspx?mfr=true
April 30, 2008 at 3:06 pm
You can.
What you cannot is that you cannot recover to a time point during your bulk insert.
April 29, 2008 at 10:01 am
Here are my inputs.
1. Does it lock database and runs the shrink statement.
Answer: It does not lock the database, but may lock a table in shrinking a database.
2. at...
April 29, 2008 at 9:56 am
Did you check the sys.sysservers table in master?
April 29, 2008 at 9:50 am
You cannot delete duplicates directly from a table unless you would like to delete rows, which are duplicated.
Instead, you can modify your table design, such as add a new column...
April 29, 2008 at 9:45 am
Did you try the following syntax?
SET TRANSACTION ISOLATION LEVEL
{ READ COMMITTED
| READ UNCOMMITTED
...
April 29, 2008 at 9:39 am
It never happened to me. Try to include the four name structure in your queries if you are not in the right default database.
April 29, 2008 at 9:28 am
Viewing 15 posts - 406 through 420 (of 1,248 total)