Viewing 15 posts - 5,206 through 5,220 (of 7,191 total)
Are there any other messages in the errorlog at around the same time?
John
July 27, 2011 at 5:44 am
Please can we see the definition of the stored procedure?
Thanks
John
July 27, 2011 at 4:49 am
Your ACCRUALPROFILE INSERTs violate the primary key constraints on that table.
John
July 27, 2011 at 4:47 am
OK, then something strange is going on since that is what error 3041 appears to mean. Are you sure you haven't inadvertently included a log backup as part of...
July 27, 2011 at 4:33 am
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
Viewing 15 posts - 5,206 through 5,220 (of 7,191 total)