Viewing 15 posts - 1,786 through 1,800 (of 2,486 total)
Take a look at creating something in DTS using VBScript to reference CDO objects.
EG:
Set objSession = CreateObject("CDONTS.Session")
objSession.LogonSMTP ("Joe Friday", "joe@here.com")
Set objInbox = objSession.Inbox
Set colMessages = objInbox.Messages
MsgBox objInbox.Name & " –...
May 4, 2004 at 7:12 pm
In the report definition, the "Can grow..." and "Can Shrink..." properties will adjust the height of the field. I don't think you can dynamically adjust the width though.
Have you posted...
May 2, 2004 at 9:15 pm
What connectivity does the PDA have? Modem/Network/USB Sync?
You might need to set/change the ip addressing or proxy.
April 28, 2004 at 1:49 am
Easiest way to check out what's happening is to paste the full statement into Query Analyzer and execute with "Show Execution Plan" selected, or use "SET SHOWPLAN_ALL ON" at the...
April 25, 2004 at 10:16 pm
Take a look at sp_help_job. This proc calls xp_sqlagent_enum_jobs which determines the jobs current status.
April 25, 2004 at 9:54 pm
Make sure you check out the ReportViewer sample application.
I know a lot of people are using this to render reports when they have parameters that aren't handled by the Report...
April 23, 2004 at 12:48 am
I always pass dates using the three character month. eg: 20 Apr 2004
This way SQL will always convert it to the correct datetime regardless of the regional settings.
This format is...
April 20, 2004 at 12:55 am
Just to add another twist in the story.
We have a regular process that archives records on an hourly basis from a table that has 10mil+ rows. Each hour approx. 1000...
April 15, 2004 at 8:19 pm
Have you specifically set the default database in the System DSN?
For the VBScripts, you should be able to modify a connection string.
April 15, 2004 at 8:04 pm
Julie
Thanks for your reply, however I don't think this is the case. The ExecuteSQL task that sets the variable is the first step in the package and the variable isn't...
March 30, 2004 at 1:28 pm
Ooops ... sorry ... SQL 2K sp3a, W2k Server sp4
The ExecuteSQL task is just "SELECT COUNT(field) FROM Table". If you are thinking about discrepancies in the record count, that won't...
March 29, 2004 at 7:29 pm
March 22, 2004 at 8:22 pm
When we where evaluating MOM, the only gotcha we found was the price. Especially when you pay extra to add application level monitoring.
March 18, 2004 at 6:43 pm
Viewing 15 posts - 1,786 through 1,800 (of 2,486 total)