Viewing 15 posts - 196 through 210 (of 221 total)
I agree with Nigel. In our company we have a test system which is created once a week from the backups of the test system. Considered replication, but don't want...
November 1, 2001 at 11:20 am
Sorry - didn't mention that we can't use a temporary table in the inner stored procedure because it is an extended stored proc. What we want is something like:
create procedure...
November 1, 2001 at 11:11 am
I found that using only the Sybex books and Transcenders as study guides was enough to pass the exams.
and
Best of luck.
Paul Ibison
email: Paul.Ibison@btinternet.com
November 1, 2001 at 9:23 am
Ed,
There are several options:
BULK INSERT - TSQL
BCP - command line utility program
Bulk Insert Task in Database Transformation Services - graphical extension to sql.
Transform Data in Database Transformation Services -...
November 1, 2001 at 8:44 am
If the transformation is an ActiveX script, you could use the execute method of the command object in ADO. Alternatively, the Task object in the DTS heirachy - accessible through...
November 1, 2001 at 7:01 am
When I implemented this solution at my current company I decided that I would replace it as soon as we upgrade to SQL 2000, for the support reasons you mentioned....
November 1, 2001 at 2:23 am
Granted that if you have a choice then your solution would be preferable, but the article was intended to refer to those cases where an application uses a login, and...
October 31, 2001 at 2:37 am
October 31, 2001 at 2:24 am
The article really applies to those circumstances where someone - a developer - needs bulk insert rights, but you don't want him to become an administrator (sorry - but that...
October 30, 2001 at 3:30 am
Thanks,
I have implemented No 2 as it was the easier. Looked at No 1 but couldn't see in the gui how to specify every 12 months. Can this really be...
October 30, 2001 at 3:21 am
The columns you're interested in exist in the Sysprocesses table. Searching under this keyword, there is a little info in BOL, but for more details, these articles are definitely worth...
October 29, 2001 at 8:11 am
It sounds like at this stage you need more information to try to identify the problem. When I had similar issues with a large DTS job I found it useful...
October 25, 2001 at 3:28 am
If you're using ADO, then Recordset.AbsolutePosition will be:
a valid recordnumber
EOF
BOF
Unknown (empty recordset).
This could be used with the recordcount.
Paul Ibison PhD, MCSD
email: Paul.Ibison@btinternet.com
October 25, 2001 at 3:01 am
just a thought, but if you want to tailor the results rather than have a predefined recordset, you could save the results of sp_help_job into a temporary table then scroll...
October 25, 2001 at 2:26 am
Viewing 15 posts - 196 through 210 (of 221 total)