Viewing 15 posts - 1,021 through 1,035 (of 1,097 total)
Check the script in http://www.sqlservercentral.com/scripts/scriptdetails.asp?scriptid=148
This one import data into sql, check the final line and change the i for I to o for Out like your command.
October 24, 2002 at 4:42 pm
With many forms. You can make backups on the remote servers and then restore them in your local pc. Or you can set a snapshot distribution. Or script the database...
October 24, 2002 at 4:34 pm
A trigger would work...but i think that you could create a stored procedure that executes the bcp command and also calculates the info that you need. Then with a...
October 24, 2002 at 4:29 pm
check my script in :
http://www.sqlservercentral.com/scripts/scriptdetails.asp?scriptid=148
this one does it for you, you just specified the table, the sa pass and the file path and it imports all the data.
...
October 24, 2002 at 4:15 pm
Try sp_who or sp_who2. In adittion, you can use sp_lock
October 22, 2002 at 6:47 pm
You can let the db to growth automatically in the db options, but always check for disk space. It is not recomended for production databases.
October 22, 2002 at 5:20 pm
Check that osql -d is used to specify the database, maybe when you execute the cmdshell, osql stands on master database. If so, specify the db with the -d option,...
October 22, 2002 at 5:16 pm
We have a similar problem a long time a go, but it was related to the mail profile. Do you have a problem with that?
October 22, 2002 at 5:12 pm
Can you check the properties with sp_configure with ISQLW
October 22, 2002 at 5:05 pm
1)If you detach the db, you remove the info records in sysdatabases from the master database. You still have the data files but it does'n exists anymore in SQL Server.
2)Later...
October 22, 2002 at 5:01 pm
Tell those programmers to develop an app to execute your sp and. Are you handling security?
October 22, 2002 at 4:55 pm
Also check for one of my scripts posted some weeks ago. You can see all the triggers, and the state in wich they are. Also you can enable or disable...
October 17, 2002 at 5:05 pm
What you can do is create the database in sql server as you want. Then script the database though EM, with all the objects in it and save it to...
October 17, 2002 at 4:35 pm
Viewing 15 posts - 1,021 through 1,035 (of 1,097 total)