Viewing 15 posts - 211 through 225 (of 392 total)
Make sure your SQL agent is setup to use SQL Mail. http://msdn.microsoft.com/en-US/library/ms177408%28v=sql.90%29.aspx
Create a SQL Agent Operator, http://msdn.microsoft.com/en-us/library/ms175962%28v=sql.90%29.aspx
Then in the job where you want the email to send, select properties, Notification...
June 25, 2013 at 12:46 am
Turn off power
Wait for screams
Turn on power
Organise outage window with screamers
Move server
😀
June 24, 2013 at 11:56 pm
It's used when creating a CLR function, the reserved word EXTERNAL is part of the reserved phrase "EXTERNAL NAME"
See books online example from http://msdn.microsoft.com/en-AU/library/ms186755.aspx:
DECLARE @SamplesPath nvarchar(1024);
-- You may have to...
June 24, 2013 at 11:46 pm
Post the execution plan, you might be lucky and have a 80/20 rule problem which someone can quickly solve. (long shot though)
June 24, 2013 at 11:38 pm
Add COLLATE_DATABASE_DEFAULT on all your joins and where clauses..
or change the database collation, its all here: http://www.sqlserverclub.com/articles/understanding-sql-server-collation-sequences.aspx
June 21, 2013 at 12:20 am
I'd like to question if it is actually running as sa.
Is it the same if you use sys.dm_exec_sessions rather than the old sysprocesses?
Also can you write the current security context...
June 21, 2013 at 12:02 am
Deferred transactions:
http://msdn.microsoft.com/en-AU/library/ms188290.aspx
How did you fix the underlying disk issue? Was the database restored from backup?
June 20, 2013 at 10:06 pm
Did you check replication monitor? Seems like you did but didnt specifically mention it.
That or
select * from distribution.dbo.msrepl_errors order by time desc
Also regarding permissions, is the service account different...
June 20, 2013 at 9:57 pm
Why would you use SQL 2008 to print a file?
June 20, 2013 at 1:31 am
You've typed most of the code, why not run it and try it? Turn on "include actual execution plan" and create and drop indexes to test
create table Table_A (A_id...
June 20, 2013 at 1:27 am
Not sure if this is what you're after, but here http://zainuvk.blogspot.com.au/2011/09/hise-username-and-password-with-sqlcmd.html
discusses using a Windows environment variable to input a default user and password so that they're not specified as...
June 10, 2013 at 11:09 pm
Apart from manually going through HKLM\SOFTWARE\Classes and looking at each CLSID, you could try the suggestion on this page which uses a tool and lists the CLSIDs which can be...
June 10, 2013 at 10:44 pm
The account provisioning section is referring to administrator within the SQL environment, not your Windows administrator. So it's asking for any account that you would like to have administrator...
May 30, 2013 at 6:08 pm
In an enterprise environment you would create an account specifically to run those services separately from your login account. In your case, since it's running on your desktop machine,...
May 30, 2013 at 12:20 am
Yes that's correct, completely uninstall that instance, then reinstall but ensure you select the Full Text Indexing feature during installation
May 29, 2013 at 5:48 pm
Viewing 15 posts - 211 through 225 (of 392 total)