Viewing 15 posts - 31 through 45 (of 59 total)
How is the need for dual connections strings, both to data originating server versus where the data is going, handled?
May 25, 2012 at 8:27 am
that looks a bit too easy.
so as long as my connections are fine and i parameterize the to server/from server portion the SQL should work.
If this is the case why...
May 22, 2012 at 12:25 pm
SELECT count(*) FROM msdb.dbo.sysschedules where name = @ScheduleName
gets a line count that will tell me what I need.
sry to bother, figured it out.
April 13, 2012 at 8:51 am
DOH! found it
SELECT job_id, [name] FROM msdb.dbo.sysjobs;
well not quite.
gives me jobs... not schedules.... will keep looking, it has to be similar.
April 13, 2012 at 8:42 am
Thanks!
will go forth with distrust in my heart, and suspicion in my actions ;). am paranoid a bit when it comes to my data....
April 10, 2012 at 3:08 pm
I think i need to use: sp_add_schedule do accomplish that.
from microsoft docs:
EXEC dbo.sp_add_schedule
@schedule_name = N'MyJob',
@freq_type = 1,
@active_start_time =...
April 10, 2012 at 3:03 pm
yea, am a paranoid.... and feel leery of this solution. Self scheduling scripts.... sigh, just makes me nervous.
I would most definitely add an email message and destination for documentation,...
April 10, 2012 at 2:51 pm
yes this is option two. :-). I think I'm looking for the 'minimal' approach here. or basically, the least # of times i have to run the job...
April 10, 2012 at 2:27 pm
Steve Jones - SSC Editor (1/23/2012)
With the four files, one filegroup? Depending...
January 23, 2012 at 2:36 pm
would either be stand alone or mirrored. Yes, I had considered that for speed as well, but decided against for that very reason. Thanks!
January 23, 2012 at 1:55 pm
wondering if it was partially AD. I can get in but can't select out of a specific table. this account has datareader permissions.... can't read?
September 30, 2010 at 1:13 pm
exec sp_change_users_login 'Report'
generates an empty list of Username/UserSID
September 30, 2010 at 12:22 pm
yes the Staff and Faculty database user is linked to the SFCC\Staff and Faculty DB Server User.
September 30, 2010 at 12:20 pm
it was a minor syntax issue:
correct parens fixed. Der....
CASE
WHEN (SELECT WDF_SiteURL FROM dbo.vw_BASE_WebData_FacultyWebs_Classes_Join WHERE CLASSID = dbo.vw_BASE_CCSSM_REP_Stu_Class_D.CLASS_ID) is NULL THEN (SELECT WDF_SiteURL FROM dbo.vw_BASE_WebData_FacultyWebs_Classes_Join AS...
June 7, 2010 at 1:33 pm
Viewing 15 posts - 31 through 45 (of 59 total)