Viewing 15 posts - 1 through 15 (of 21 total)
George,
You're absolutely right! Didn't think of that. I used windirstat and there are some files from the backup client there.
thank you.
July 20, 2013 at 1:12 pm
It was the GetDate(). Something so simple.
Winded up declaring a variable and setting them like this:
SET @SPRCMNT_ACTIVITY_DATE = GETDATE()
SET @SPRCMNT_CONTACT_DATE = GETDATE()
Then in the query, changed it to this:
SET...
September 13, 2011 at 7:59 pm
Thanks Mark, actually I started with a CTE and got a little stuck, thank you for the input.
January 24, 2011 at 8:23 am
I usually create a role and grant execute permissions to that role then assign a user to that role.
December 13, 2010 at 9:00 am
I never did figure this out, so I kind of put that piece of project on hold. Hopefully someone will find something and share with us.
October 27, 2010 at 1:56 pm
No control over the file. 🙁 Thanks for your suggestion I was afraid of that.
June 25, 2010 at 11:32 am
so for temp db, its recommended to have one drive for ldf and another for the mdf?
February 17, 2010 at 10:16 am
Thanks for your response Jeffrey. Clears up a lot of things now.
February 4, 2010 at 3:06 pm
Thanks Seth, I had actually figured it out last night, but I didnt have access to internet to post. thanks for your input. 🙂
October 1, 2009 at 8:32 am
Yeah guess it was permissions. The linkedserver user I am using only had datareader on the remote box. What is weird though, the table function doesn't have execute permissions on...
August 28, 2009 at 2:46 pm
Well I am SA on both boxes, and I was the one who created the functions. The table function works fine from the same remote box that I am trying...
August 28, 2009 at 1:14 pm
Ok I almost got this working with the following code....
OPEN GetProcedure_Cursor
FETCH NEXT FROM GetProcedure_Cursor
INTO @QuestionProcedure, @QuestionID
WHILE @@FETCH_STATUS = 0
BEGIN
declare @MyString varchar(8000)
set @MyString...
August 28, 2008 at 10:24 pm
Viewing 15 posts - 1 through 15 (of 21 total)