Viewing 15 posts - 901 through 915 (of 1,248 total)
When you ran a stored procedure on a remote heterogeneous data server, did you include full name of the stored procedure, such as [ServerName].[DBName].[Owneship].[StoredProcedure]?
August 1, 2007 at 2:43 pm
You need sysadmin privilege to configure replication.
August 1, 2007 at 9:53 am
Our data in SQL Server may not be ordered based on the time to add them. If there is the ORDER clause in your queries, your retrieved data should be...
August 1, 2007 at 9:23 am
Here is my penny.
For the security: OPENQUERY is better.
For performance: I cannot see why necessarity of using OPENQUERY is faster than using linked server. Their only difference is the first...
August 1, 2007 at 9:19 am
Running out memory can be many reasons. We can run something like,
DBCC FREEPROCCACHE
Of course, the most efficient approach, but not allowable normally, is to reboot your server.
July 30, 2007 at 3:02 pm
There are two main reasons for a database marked as suspect. Disk runs out of space and data corruption. Here are two links. Hopefully, they are helpful.
http://www.devx.com/vb2themax/Tip/18624
http://www.windowsitpro.com/Article/ArticleID/14047/14047.html
July 30, 2007 at 2:53 pm
You did not mention how you restarted your server. If you turned off its power, or do something else without allowing your updates to rollback, your log file is damaged....
July 30, 2007 at 1:37 pm
Could you failover your nodes? If not, your cluster is broken. You may have to rebuild your cluster.
July 26, 2007 at 6:41 pm
Here is my penny.
In an active/passive cluster, SQL Server Services and SQLAgent Services on each node is set manually. You can add your script to sent alert when a service...
July 26, 2007 at 6:26 pm
Did you check whether or not the database was set as autoshrink? If so, turn it off.
July 24, 2007 at 9:29 am
I would like to put my penny here.
NO_TRUNCATE means no truncate. No log is truncated in the process of log backup.
When a database is in the SIMPLE mode. No inactive...
July 20, 2007 at 3:39 pm
By default, initial size of tempdb after restarting is 8 MB. However, if its size is set to different value, the initial size of tempdb after restarting will be the...
July 19, 2007 at 9:34 am
It seems that you did not post the most important part in your error message. A message with SQLSTATE 01000 is a warning one. To check its detail, you need to go...
July 19, 2007 at 9:18 am
The processes of saving/loading DTS packages can be easily carried out. What I would like to do are to schedule such saving/loading as scheduled jobs.
Thank you all for your kind inputs.
July 18, 2007 at 11:47 am
Viewing 15 posts - 901 through 915 (of 1,248 total)