Viewing 15 posts - 1,081 through 1,095 (of 1,097 total)
With OSQL -E you log on to SQL with Windows Authentication.
Check OSQL -? for all commands.
September 18, 2002 at 9:27 pm
What SQLMAg says is that bcp is the fastest way to export data, and Bulk Insert the fastes for import.
September 18, 2002 at 9:19 pm
The easiest way to change the filegroup of a table is through Enterprise Manager, in the design of the table, change the filegrop by clicking the new filegroup from a...
September 17, 2002 at 6:43 pm
You will loose in performance if you have to growth the size of the data files frecuently, because SQL must ask for space to the system and allocate all the...
September 17, 2002 at 6:31 pm
BOL means Books onLine. If you are talking about Error Log file, you won't we able to change it with sp_detach_db. You can change it trough the properties of the...
September 17, 2002 at 6:19 pm
That will also depend of how amny transactions do you expect, and what type also. If you expect, many inserts, the growth in a period of time, will be different...
September 17, 2002 at 4:26 pm
The Win user that starts the service, must be a member of the Local Administrators. And also check that the password doesn't expire.
September 17, 2002 at 4:02 pm
If SQL 2000 check the recovery model in the database option. Maybe you should reconsider changing to another mode if the Full mode is being used.
September 13, 2002 at 4:23 pm
I don't think so, all the DBCC commands returns
DBCC execution completed. If DBCC printed error messages, contact your system administrator
September 12, 2002 at 7:06 pm
Check from Enterprise Man. in the properties of the server, in the Security Tab the Audit Level. If you had checked any other than None, the server is auditing the...
September 12, 2002 at 6:49 pm
The problem is that when you use Select Into it creates a nwe table with the result of the table you select. So, no other table must exists when you...
September 12, 2002 at 6:32 pm
No maximum for any version. The limit is the Hard disk size. (OLTP)
September 12, 2002 at 6:08 pm
To find the server name: Select @@servername
DBName:select db_name() (where you are running it)
DBO,size with sp_helpdb.
The server version with: select @@version
September 12, 2002 at 6:06 pm
What you can do is put a password for a media set for a given database. And only the user with proper permissions to restore a database must know the...
September 11, 2002 at 7:38 pm
Viewing 15 posts - 1,081 through 1,095 (of 1,097 total)