Viewing 15 posts - 1,351 through 1,365 (of 13,445 total)
caojunhe24 (11/19/2015)
November 20, 2015 at 5:43 am
the error is fairly straightforward, tempdb ran out of space.
Typically this is because tempdb auto expanded until it literally fill up the disk is is on.
That assumes you have one...
November 19, 2015 at 11:16 am
sounds like every user is in the db_owner role, so that's most likely the issue.
remove all permissions assigned to an existing user, and start fresh.
something like this is what you...
November 19, 2015 at 10:35 am
if the script task is counting files on some file share like \\servername\sharename, does the account[MEDASSURANT\BPA_UAT_DS] have access to that share? is that a domain account?
when you run it locally,...
November 19, 2015 at 10:08 am
caojunhe24 (11/19/2015)
November 19, 2015 at 9:55 am
doesn't a modificiation featuring these three constraints satisfy the requirement?
i read "but VhID and PrID can be the same in one row so long as ExtID is different" as unique...
November 16, 2015 at 5:34 am
SQL Express does not include the SQL Agent. it does nto get installed, and that's the reason for the error.
if you need agent, you need either the developer edition(~50 USD...
November 15, 2015 at 2:01 pm
Powerpoint is a part of it, but its not the conductor for me.
At least in my case, its because only portion of the media is static prior to...
November 14, 2015 at 8:07 am
Eirikur no i never did;
i continued working with the vertical scroller in winforms application i had put together into myself, and toggled between powerpoint presentations and my scroller; i never...
November 13, 2015 at 11:51 am
mhorner 67968 (11/12/2015)
November 12, 2015 at 12:42 pm
just installed it, and will report back what i think; very pleased to see a fire and forget solution.
my initial thoughts were that the jobs and schedules should be either...
November 12, 2015 at 6:06 am
if you go to http://sqlfiddle.com/ you can create and test a suite of commands, without having SQL installed; it's basically a syntax checker and pass through page that gets you...
November 12, 2015 at 5:44 am
could you be misinterpreting object_id as an identity column in sys.objects?
sysobjects get an id based on an increment of some weird number which i didn't remember but could find on...
November 11, 2015 at 1:06 pm
cor_perlee (11/11/2015)
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'Rapportage',
@recipients = 'dba@unit4.com',
@query = 'select * from UNIT4_BEHEER.DBO.ClusterActiveNode',
@query_result_header = 0,
@exclude_query_output...
November 11, 2015 at 10:27 am
you are missing required parameters, i think.
if you declare a query is going to be attached, you have to have a file name.
EXEC msdb.dbo.sp_send_dbmail @recipients='SQL@SQL.COM',
@subject =...
November 11, 2015 at 6:32 am
Viewing 15 posts - 1,351 through 1,365 (of 13,445 total)