Viewing 15 posts - 5,206 through 5,220 (of 7,187 total)
July 27, 2011 at 4:25 am
You must be using a different search engine. Try this:
http://www.lmgtfy.com/?q=Error%3A+3041%2C+Severity%3A+16%2C+State%3A+1
John
July 27, 2011 at 4:16 am
Possible because the SQL Server Agent service account doesn't have access to the location of the csv file.
John
July 27, 2011 at 4:09 am
Yes. Search the internet for that first message. You'll get plenty of hits telling you exactly what the problem is.
John
July 27, 2011 at 3:39 am
Ayie
Please search this site for "splitter function". Jeff Moden has written a number of articles that comprehensively cover what you're trying to do.
John
July 27, 2011 at 3:30 am
In that case, it's the permissions of the SQL Server Agent service account that are important, not the account you are logged on as. Is the CSV file on...
July 25, 2011 at 9:24 am
SinisterPenguin (7/25/2011)
SELECT CONVERT(VARCHAR(10),DATEADD(DD,-(DAY(DATEADD(MM,1,GETDATE()))-1),DATEADD(MM,-1,GETDATE())),120) as Column1,CONVERT(VARCHAR(10),DATEADD(DD,-(DAY(GETDATE())),GETDATE()),120) as column2,
CONVERT(VARCHAR(10),DATEADD(DD,-(DAY(DATEADD(MM,1,GETDATE()))-1),DATEADD(MM,-12,GETDATE())),120) as column3
Then set the Execute SQL task...
July 25, 2011 at 8:47 am
I think the question is this: are you running the package from Visual Studio logged in as yourself, or are you running it via a SQL Server Agent job?
John
July 25, 2011 at 8:18 am
The NOLOCK hint can cause dirty reads, so only use it if you don't require the data returned to be totally accurate. Instead, concentrate on optimising your queries. ...
July 25, 2011 at 4:28 am
It's not really clear what your question is, but I think you need to use the REPLACE function.
John
July 19, 2011 at 6:35 am
Jeff Moden (7/18/2011)
July 18, 2011 at 8:16 am
I think the important thing isn't what naming convention you use, but that you choose one and stick to it. There's been a lot of discussion here and elsewhere...
July 18, 2011 at 4:37 am
laddu4700 (7/15/2011)
What are the other regular maintenance tasks you guys recommend? Thanks!
DBCC CHECKDB and REBUILD INDEX. For the latter, you may prefer to use scripts instead of a maintenance...
July 15, 2011 at 8:39 am
How often does the job run? What happens if you create a job to execute a trivial T-SQL statement and run that - can you see the history for...
July 15, 2011 at 8:12 am
How do you run your maintenance plan? You will only see anything in the job history if you run the job that was created with the maintenance plan, not...
July 15, 2011 at 7:57 am
Viewing 15 posts - 5,206 through 5,220 (of 7,187 total)