Viewing 15 posts - 1,231 through 1,245 (of 1,838 total)
In my opinion one of the biggest problems, at least where I live, is the car. Something that started as a solution has brought about a whole new world...
November 29, 2016 at 8:24 am
Then it's time to take a look outside SQL Server, see if it got stuck in the Exchange server somewhere or in a spam filter.
November 23, 2016 at 1:18 pm
in the first query results, what was sent_status for the SQL Agent jobs?
November 23, 2016 at 12:50 pm
you can check the sent_status of all queued e-mails:
SELECT * FROM dbo.sysmail_allitems
WHERE send_request_date >= DATEADD(day, DATEDIFF(day, 0, GETDATE()), 0)
ORDER BY send_request_date DESC
there's also an error...
November 23, 2016 at 12:19 pm
Greg Snidow (11/23/2016)
In my humble opinion, the ODBC administrator thing is a huge shortcoming on Microsoft's part.
I agree, especially since Microsoft seems to keep moving away from other technologies toward...
November 23, 2016 at 11:29 am
snomadj (11/23/2016)
November 23, 2016 at 9:19 am
robert.sterbal 56890 (11/23/2016)
What is on your menu for Thanksgiving?
looks like SQL Server Central is having spam for thanksgiving :crazy:
November 23, 2016 at 8:16 am
Maybe you could use your script as a way to programmatically build the SQL Agent job using msdb.dbo.sp_add_jobstep
https://msdn.microsoft.com/en-us/library/ms187358.aspx
something like this but changing the parameters to better suit your needs...
USE msdb;
GO
DECLARE...
November 23, 2016 at 7:45 am
If you already have a table you're trying to load data into, I've often found BULK INSERT to be easier to work with than OPENROWSET. Have you tried something...
November 23, 2016 at 6:28 am
just tried your scenario, it looks like an event is put in the SQL Server error log. Try this:
EXEC sp_readerrorlog 0, 1, 'SINGLE_USER'
November 22, 2016 at 2:07 pm
it looks like this time you're missing the database name, you started with dbo. instead of fgsvrtrisys.dbo.
when you got the popup asking "Enter Parameter Value" what did you type...
November 22, 2016 at 12:43 pm
DBCC TRACEON would need to be manually re-run after a server restart. If you use the startup parameters of the service then it will automatically have that flag set...
November 22, 2016 at 11:13 am
If you grant the user privileges at the schema level instead of the database level, then they could create and alter procedures at will, but not be allowed to drop...
November 22, 2016 at 10:13 am
zoggling (11/22/2016)
When we attempt to connect to a named instance on the database server from the web server, the following error is raised in the IIS Log:
Error occurred in LoginButton_Click...
November 22, 2016 at 8:40 am
OK, the fact table looks better, but I'd need to understand the business a little better to know why you still have multiple balances in the fact. Will these...
November 22, 2016 at 7:02 am
Viewing 15 posts - 1,231 through 1,245 (of 1,838 total)