Viewing 15 posts - 346 through 360 (of 1,162 total)
It definitely sounds permission based. I'd logon to the server as the SQL Agent user and double check that it can physically access the folder/file through the share. File permissions...
June 12, 2012 at 1:52 am
The resource governor error could be a symptom rather than a cause. Have you seen this article in your Googling?
May 24, 2012 at 1:46 am
derek.colley (5/23/2012)
May 23, 2012 at 10:29 am
SELECT TOP 50 * FROM fooTable
This is the problem. You're populating your table with 50,000 rows of data and then trying to determine whether it's done it correctly by only...
May 23, 2012 at 10:08 am
derek.colley (5/23/2012)
May 23, 2012 at 9:56 am
I could write pages of explanation here, but I'd really recommend reading Jeff's article on the Tally/Numbers table [/url], which more eloquently explains it than I ever could.
With your particular...
May 23, 2012 at 9:22 am
By default, remote connections are disabled in SQL Server. Express edition is generally installed as a named instance, so you'll need to:
1) Enabled Named Pipes and/or TCP/IP in SQL Server...
May 22, 2012 at 6:14 am
This line isn't required:
myProxy = WebRequest.DefaultWebProxy() 'use default proxy setting
You're setting the proxy directly two lines further down. Not sure what the CType is for as well. I knocked up...
May 22, 2012 at 4:35 am
There's nothing fundamental that would cause SP's to run slower via a SQL Agent job than via SSMS. They certainly don't run under a different priority, but there could be...
May 22, 2012 at 3:54 am
dkschill (5/21/2012)
You are...
May 21, 2012 at 10:33 am
Something like this might read a bit better (it's a horrible design, I'm surprised MS haven't deprecated it yet and designed something better):
;
--The semi-colon really belongs in the previous statement
...
May 21, 2012 at 10:24 am
Steve Jones - SSC Editor (5/21/2012)
May 21, 2012 at 10:06 am
Steve Jones - SSC Editor (5/21/2012)
Jeff Kelly-310227 (5/21/2012)
I'm currently testing this with IBM's svc flashcopy manager.
These types of specialized SAN apps are fully SQL aware and...
May 21, 2012 at 9:48 am
SQL Kiwi (5/19/2012)
May 21, 2012 at 8:52 am
Gazareth (5/21/2012)
You can view the Windows event logs in the SQL Log File viewer - at least, I can!
This is indeed correct - just right click on SQL Server Logs...
May 21, 2012 at 8:11 am
Viewing 15 posts - 346 through 360 (of 1,162 total)