Viewing 15 posts - 121 through 135 (of 182 total)
Thanks, I knew that but just wanted to confirm.
All of us thought that our DBA was making backups. But he wasn't!!!
May be we need a new DBA.....
April 16, 2004 at 9:21 am
You cannot change the role of the sa user.
Disable SQL Auth. is for the authentication mode. If you use only Windows Authentication you cannot login with the sa.
April 6, 2004 at 1:35 pm
You can create a shortcut to the file isqlw.exe (Query Analyzer) and sending as parameter the server and database.
isqlw -S ServerName -D DBName -U UserName -P Password
See "isqlw Utility" in BOL.
March 16, 2004 at 12:27 pm
After opening the DTS like ankushac said, you have to save it on the server:
- Select Save as... from the Package menu
- Change the location to SQL Server
- Select...
March 11, 2004 at 12:18 pm
When adding a SQL User to a role, the user must have acess to de database. If the user is a domain user, sp_addrolemember grants database access to the user,...
March 1, 2004 at 12:44 pm
The MAC address is stored on the net_address column of the sysprocesses table.
This return the MAC address of the machine running the actual process:
use master
select hostname,...
February 12, 2004 at 1:04 pm
Try to use [] instead.
BACKUP DATABASE [02] TO DISK = N'C:\02.BAK' WITH INIT , NOUNLOAD,
NAME = N'SW backup', NOSKIP , STATS = 10, NOFORMAT
January 14, 2004 at 12:39 pm
- Which version of SQL do you have? Wich sql service pack does the server have?
- In sql 2k to set the source error rows, goto to the options tab...
January 5, 2004 at 4:26 pm
If you process the 49500 row alone, does it give the same error?
Also, check that row to see if it doesn't have any special character in it.
January 5, 2004 at 3:03 pm
You can use Servers Alive (http://www.woodstone.nu/salive/), it's free for up to 10 alerts.
It can monitor disk space, services, processes, databases, ping servers, etc.
December 22, 2003 at 12:06 pm
The USE instruction has to be in the same statement as the CREATE TABLE.
set @stmt = 'USE '+ @dbname + ' CREATE TABLE First(...
December 18, 2003 at 2:55 pm
You have to wirte a dynamic query, like this:
declare @dbname varchar(25)
set @dbname='DatabaseName'
exec('use ' + @dbname +
' select .... all the instructions here .... ')
You...
December 18, 2003 at 12:38 pm
No, you don't need to restart the server.
The service pack that you installed is the same of the server?
Can you connect to the AS via a client tool, i.e. pivot...
December 18, 2003 at 12:09 pm
Viewing 15 posts - 121 through 135 (of 182 total)