Viewing 15 posts - 8,026 through 8,040 (of 9,641 total)
Can you post the error message you are getting? Are you getting the error in BIDS/SSRS or iin SSMS/Query Analyzer?
August 8, 2008 at 8:45 am
Since you are asking I will tell you, but it is generally not the best idea to give everybody rights on things.
Grant Execute on [procname] to Public
Everyone that has access...
August 8, 2008 at 8:09 am
I'd take the whole thing and stick it in a stored procedure:
[font="Courier New"]CREATE PROCEDURE report_name
AS
DECLARE @StartDate SMALLDATETIME,
@EndDate SMALLDATETIME,
@Range INT,
@HolidayCnt INT
DECLARE @HolidayTbl TABLE (HolidayDate SMALLDATETIME)
--...
August 8, 2008 at 7:59 am
I don't really have any experience with BCP or Bulk Insert. I do avoid using xp_cmdshell because it can be dangerous and on my 2005 servers it is disabled,...
August 8, 2008 at 6:43 am
I think Jeremy's post really answers your first question. The formula for autoupdate was probably not being reached. AS far as your next 2 questions, I don't have...
August 8, 2008 at 6:40 am
I think it might be that you are running the 32-bit DTSexec. I don't know for sure, but that certainly sounds right. Are you running ht epakcage on...
August 8, 2008 at 6:35 am
Good catch Matt, I don't enough experience in Access, for which I am thankful, to have experienced that.
August 8, 2008 at 6:33 am
rbarryyoung (8/7/2008)
Jack Corbett (8/7/2008)
I wouldn't call myself a musician, but I play Bass Guitar. Contemporary Christian and Christian Rock mainly.
My oldest son is a Bass Guitarist. I met...
August 8, 2008 at 6:29 am
What events are you profiling? I would check the locks and lock timeouts and blocking. You could also run sp_who ro sp_who2 which will show if your process...
August 7, 2008 at 8:48 pm
Steve Jones - Editor (8/7/2008)
Write me a few articles this year and we might fund your trip. We usually get a couple free admissions to PASS, one going to Jeff...
August 7, 2008 at 8:42 pm
64-bit or 32-bit? I'm guessing 64 and I think this thread may have your answer: http://www.cooldevelopers.com/program/656/76656-cant-aquire-connections-because.html
Make sure that if you get the answer here you post it on the...
August 7, 2008 at 8:36 pm
In SQL 2000, I don't think there are any ways to determine who had been on the server in the past unless C2 auditing is on. In SQL 2005...
August 7, 2008 at 8:21 pm
If you leave the databases in 8.0 mode you don't get the benefits of the additional functionality in SQL 2005. I'd change the compatibility mode, run Trace on the...
August 7, 2008 at 8:17 pm
I wouldn't call myself a musician, but I play Bass Guitar. Contemporary Christian and Christian Rock mainly.
August 7, 2008 at 8:12 pm
Please don't put in duplicate posts as folks will waste their time looking at both.
Original post here: http://www.sqlservercentral.com/Forums/Topic548775-149-1.aspx
August 7, 2008 at 8:10 pm
Viewing 15 posts - 8,026 through 8,040 (of 9,641 total)