Viewing 15 posts - 1 through 15 (of 28 total)
Check the Multi-Value in Parameters and pass into SP. You then separate passed value in SP before use it if needed.
October 12, 2006 at 7:52 am
From SQL Server that you try to execute a job, from Menu Bar, Start and Run. This just check your SQL server can access the network shared folder or not. The...
June 23, 2006 at 7:45 am
Try to type the path at Run and see SQL server can access the path or not. If not, place IP address and target server name in SQL Server's local...
June 23, 2006 at 7:30 am
1. Enable non-system administrators to execute the xp_cmdshell extended stored procedure in SQL Server 2000 as MS Article 890775
2. Create a group and Grand exec xp_cmdshell permission to the...
April 26, 2005 at 8:59 am
1. configure a SQL Server Agent proxy account to enable non-system administrators to execute the xp_cmdshell configure a SQL Server Agent proxy account to enable non-system administrators to execute the...
April 26, 2005 at 8:09 am
You need to grand sysadmin fix role to the account that you use to run xp_cmdshell procedure.
April 26, 2005 at 7:45 am
I have the same kind of processing as you do in SQL 70 environment without problem.
Based on the code that you posted, I think this SP was called more...
March 31, 2005 at 1:49 pm
Here is another way:
select @cmd = 'COPY ' + @Source_path + @file + ' ' + @Process_path
exec master..xp_cmdshell @cmd
SELECT @Process_path = @Process_path + '\'
-- Clean temp table
DELETE FROM Temp_TABLE
-- Import text...
March 31, 2005 at 1:30 pm
Create a login with read only permission on ingres DB, then create link server using this login.
December 16, 2004 at 10:14 am
What is relationship between domains where Exchange server and SQL Server location? If they arr not trusted, you can not setup exchange client on SQL box and then SQL mail...
December 9, 2004 at 7:31 am
I found the answer.
If you set deny permission on build in Administrator, and then the account you use to login SQL services has local/domain admin right, you will get this message...
November 19, 2004 at 2:19 pm
Have you resolved your issue?
I have the same problem. Could you let me know if you have solution.
Thanks!
November 15, 2004 at 9:34 am
I never give production server's sa or assign sysadmin role to other developer in normal situation. They all access separate development server as their login with different role based on...
April 10, 2003 at 8:03 am
Replication may be not the best practice here because MSDE is not support Transaction Replication.
I think that building Middle Tier(COM+) application should work for your case. All clients go through...
April 7, 2003 at 2:57 pm
Timer querry from your application is a way to find new record right away. I have the application that does that. To minimize connection, close connection once the Timmered application...
April 7, 2003 at 9:00 am
Viewing 15 posts - 1 through 15 (of 28 total)