Viewing 15 posts - 391 through 405 (of 1,335 total)
Your full database restore should ahve been with norecovery clause i hope you have missed that and the database has already become online. You need to redo the restoration of...
July 24, 2007 at 2:51 am
I dont find any issues with that unless and other wise you use the logical name in any of your application programs. you can continue to rename the logical file...
July 24, 2007 at 1:05 am
Data would have come from the cache memory of the database server. Once you restarted the service the cache has got flushed and your database was amrked suspect.
July 24, 2007 at 12:54 am
Run dbcc sqlperf(logspace) to check what is the space being used by the log file of tempdb
then
backup log tempdb with truncate_only
go
dbcc shrinkfile(2,100)
Also check if any process is running that...
July 24, 2007 at 12:53 am
Your database server doesnot use more than 26GB of memory. If you want try monitoring the memory usage with Total server memory and target server memory counters.
July 23, 2007 at 11:05 pm
You can't do this in SQL server. You are expecting something equivalent to ORACLE package which is not available in sql. The best option would be to create a batch...
July 23, 2007 at 10:51 pm
I use a few scripts myself to check these things. I check for the server disk space details, services, database status, jobs and thier status etc. This was done with...
July 23, 2007 at 8:05 am
Your select @@version command will give you those details.
July 23, 2007 at 6:30 am
Ok Brandie no issues. I too learnt few things in this post.
July 23, 2007 at 6:20 am
Is the TCP protocol correctly set. Try using named pipes to create the DSN instead of TCP.
July 23, 2007 at 6:11 am
I see no known problems. Yu can install 2000 without any issues.
July 23, 2007 at 5:37 am
What account does your sql server agent service run. It shoule run under a network service or domain account to access network resources.
July 23, 2007 at 5:24 am
You need not need a cursor to do this for you in sql 2005. You have row_number() function in sql 2005 to do this.
Read more on that in link
July 23, 2007 at 5:19 am
This was from a website.
July 23, 2007 at 5:08 am
Yes found the answer. The NetBIOS name for any computer can be only 15 bytes and in your case it was 16 bytes and the last character has been truncated....
July 23, 2007 at 5:06 am
Viewing 15 posts - 391 through 405 (of 1,335 total)