Viewing 15 posts - 256 through 270 (of 315 total)
That doesn't help. Because for FTPing, it would use the userid and password mentioned
exec xp_cmdshell 'ftp -s:D:\Utilities\FTP.TXT'
We use this daily. If this is not putting the file on the...
.
April 10, 2003 at 11:15 am
By the way... This is running on SQL Server 6.5.
.
April 10, 2003 at 11:08 am
Thank You Steve and DickBaker.
I donno why it had happend. I could not see any connection which is being used in the Monitor tool of DBArtisan. I killed all the...
.
April 10, 2003 at 11:06 am
Even when the memory is dynamically configured, You could could use MIN and MAX settings. Try setting upto 3.5 GB for MAX. Might Work....
Regards,
Murali Damera.
.
April 8, 2003 at 9:28 pm
I am looking at the SQL Server Error Logs. My Server Name (Physical Machine Name) & SQL Server Name is the same. Which is exactly the same same it is...
.
April 8, 2003 at 9:20 pm
If your SQL file is on C Drive and the outputfile to be created on C drive, it should look like this:
EXEC xp_cmdshell'isql.exe -S nameofmyserver -U mydbouserid -P mydbopassword...
.
April 8, 2003 at 2:18 pm
in the earlier script, option "i" is the inputfile, option "o" is the output file. You needed to give your SQL file as input.
running ISQL.exe is one of the way...
.
April 8, 2003 at 2:04 pm
You can execute a SQL script stored locally as follows:
EXEC xp_cmdshell'isql.exe -S SERVER1 -U sa -P PASSWORD -id:\dba\dbadmin\sql\sp_who.sql -od:\dba\dbadmin\outfiles\sp_who.out'
Hope this answers your question.
.
April 8, 2003 at 1:38 pm
I ran into same scenario few weeks back. I checked Books Online as well. We cannot specify Server Names in SELECT statement.
.
April 7, 2003 at 11:24 am
Thats fine. To my understanding you <b>cannot</b> specify Server names in <b>SELECT statement</b>. Anyone please correct me if I am worng.
.
April 7, 2003 at 11:18 am
Yes. The max number of prefixes are 2 as follows:
select * from database.user.object
I guess in your case, peoplepc is the user, in that case, you should not use dbo again.
If...
.
April 7, 2003 at 11:10 am
Please check the following:
1. memory usage on the server with sp_configure when compared to what used to be. If you don't know how much is used to be in SQL...
.
April 3, 2003 at 9:52 pm
I backup all the databases except model, Northwind and tempdb everyday. I daily bcpout the data of few system tables daily, from my SQL 6.5, 7.0 and 2000 Servers.
.
April 3, 2003 at 3:22 pm
You might want to put this in the script library.
.
April 3, 2003 at 8:47 am
Viewing 15 posts - 256 through 270 (of 315 total)