Viewing 15 posts - 91 through 105 (of 178 total)
check the source IP in the log entry (should say CLIENT: 127.0.0.1) and see where connection is coming from. Then look there for the reason (schedule jobs, users, applications...
April 14, 2009 at 7:53 am
What happens when you backup to the network server, but use an internal volume instead of USB?
What is the largest database size that does work sucessfully?
April 8, 2009 at 8:52 am
Yes, that is interesting.. what build/version of SQL are you running? I'll have to watch out for that happening.
April 8, 2009 at 8:06 am
interesting, what's this return:
interesting, what's this return:
DECLARE @dataspacetemp TABLE
( FileID int,
FileGrp ...
April 8, 2009 at 7:46 am
could be related, may not be. All depends how the application/jobs uses the table. But generally all your tables should have a clustered index that fits how it's...
April 8, 2009 at 7:40 am
sp_spaceused includes data and log size, but not log free space..
run "dbcc sqlperf(logspace)"
your log file is probably blown up 🙂
April 8, 2009 at 7:33 am
I have script that I use shows job state. So you could do something like this: If job_state = 1, then stop the job using sp_stop_job (
March 27, 2009 at 7:51 am
Yea, I see how that could work well for a very large software development team. I'd never let those notebooks out of the office though 🙂
March 27, 2009 at 6:16 am
If everyone had a copy of the database with 'sample data', how would you maintain database design across all your developers systems? I have always believed -- SQL engines...
March 27, 2009 at 6:05 am
well, I wasn't 100%, but I did a quick google search and found this
http://cfsilence.com/blog/client/index.cfm/2007/1/16/SQL-Server-2005-Express--DTS-Confirmed
March 27, 2009 at 5:52 am
I believe the DTSWizard.exe (import export wizard) is in the toolkit (if you are talking about 2005)
March 27, 2009 at 5:32 am
Note that you can also change your database, or table collation as well (if you don't want your entire server running that way)
So if you're using SQL_Latin1_General_CP1_CI_AS, try SQL_Latin1_General_CP1_CS_AS
ALTER DATABASE...
March 27, 2009 at 5:26 am
You can go through your results and convert them to nvarchar (building an html or text file in an nvarchar(max)) and passing that to sp_send_dbmail.
Or create a vbscript...
March 26, 2009 at 12:55 pm
Does it run faster if you stripe to multiple files?
Backing up to a compressed volume/folder?
Did the OS Change?
March 26, 2009 at 12:43 pm
Yep, by putting in the [] in your query, you are looking for table name [dbo].[[dbo].[diskspace_hist]]
not [dbo].[diskspace_hist]
March 20, 2009 at 11:05 am
Viewing 15 posts - 91 through 105 (of 178 total)