Viewing 15 posts - 2,956 through 2,970 (of 3,543 total)
quote:
When he uses the wizard it cannot see the test box.
What wizard? What test...
November 10, 2003 at 6:50 am
It would seem that permissions are OK. "login unknown or wrong password" would indicate that sql is using the wrong credentials. Has someone changed the Adminstrator password since sql was...
November 7, 2003 at 8:08 am
...Administrator account of the machine.../code]
I suspect that there is a permission/access problem to do with the local Administrator account. Did you login as Administrator to create the mapped drive? Was...
November 7, 2003 at 7:33 am
The problem with above is the 8k limit and if the numbers are > 1 digit. Using '%REC%:%' should cater for this.
The code below will give you the number of...
November 7, 2003 at 7:24 am
In the same package create a new step to do the email (remove code from first step) and change the properties of the first step to quit on failure so...
November 7, 2003 at 6:16 am
Are you sure the mapped drive exists, you will get this error if not.
Test with
xp_cmdshell 'dir F:\descarga\00005\'
Alternatively use UNC
Edited by - davidburrows on 11/07/2003 ...
November 7, 2003 at 5:59 am
What account is sql server running under. If it is set to localsystem then you will not be able to access across a network.
November 7, 2003 at 5:44 am
quote:
select count(*) from master..sysprocesseswhere dbid = db_id('dbname')
This will give you then number of...
November 6, 2003 at 6:41 am
Hi Frank,
quote:
I have very basic skills only in DTS, just enough to get my jobs done.
November 6, 2003 at 4:24 am
quote:
This would fail with sp's that return more than 1 result set as output
And those...
November 6, 2003 at 4:00 am
I think error 7321 is caused by a malformed LDAP query.
Try the following. If it works then the link is OK, the query is the problem.
November 6, 2003 at 3:35 am
in the proc define the output param with single @ as in
@IndexOut Int output
when you want to refer to the output use
myCommand1.SelectCommand.Parameters("@IndexOut").Value
Edited by...
November 5, 2003 at 7:13 am
Bah humbug
I do hate multiple posts and cross posts
Edited by - davidburrows on 11/05/2003 07:07:16 AM
November 5, 2003 at 7:07 am
isql /S servername /U username /P password -d databasename /i textfilename
Look up isql and osql in BOL.
November 5, 2003 at 7:04 am
Viewing 15 posts - 2,956 through 2,970 (of 3,543 total)