Viewing 15 posts - 376 through 390 (of 449 total)
What does
DBCC CHECKIDENT (<tablename>, NORESEED)
return?
July 8, 2005 at 5:22 am
Here you go:
The fix:
a. sp_removedbreplication [ @dbname =...
July 8, 2005 at 5:15 am
For the email:
You will want to send the email through your application using SMTP. I would probably go this route.
or
If you can configure email on the sql server then:
Lookup "xp_sendmail"...
June 21, 2005 at 5:58 am
You will need to register the sql server using IP address, not DNS name. Verify the port in which sql server is running. This port will be needed (if it's...
June 21, 2005 at 5:45 am
You can remove the Instance of SQL Server by going through "ADD/REMOVE PROGRAMS". Select the instance you want to delete.
June 10, 2005 at 5:31 am
I've never tried using replication when the publisher and subscriber had different table schemas. However, you may be able to do it this way.
You may want to try creating the...
June 10, 2005 at 5:28 am
Check the sql server service and see what account it is running as. You may need to change the user/pw of this account, if it's not Local Sytem account.
How are...
June 8, 2005 at 5:20 am
A secure method would be to have a VPN key to connect to your network from home. Then your pc would be connected directly to the network. The other methods offer...
June 8, 2005 at 5:13 am
So now you have 2 backup jobs? If so, then just delete the first or second job. Right-click the job and delete it. If the problem is with the schedule. ...
June 8, 2005 at 5:08 am
Yes, you can also generate the script in query analyzer. Right-click the sproc and select "script to new window as create", or to file if you want. In query analzyer...
June 7, 2005 at 5:02 am
Output parameters are also input parameters. If you do not want to supply a value simply define the output parameters as such.
Your old code:
-- declare the output parameters
@final_peak decimal(19,4) OUTPUT,
@final_date datetime OUTPUT
New (add...
June 2, 2005 at 5:08 am
Viewing 15 posts - 376 through 390 (of 449 total)