Viewing 15 posts - 1,741 through 1,755 (of 2,387 total)
Create a job, copy and paste your script into job step and schedule the job to run at time you like.
May 27, 2003 at 2:11 pm
Don't forget change the 'varchar' in temp tables in your stored procedures, functions, user defined data type if you have any.
May 27, 2003 at 2:06 pm
Which version and service pack of SQL Server you are running? Is a job created by maintenance wizard?
May 27, 2003 at 2:00 pm
create table #T1
(table_catsysname null,
table_schemsysname null,
table_namesysname,
table_typesysname,
remarkssysname null)
insert into #T1 exec sp_tables_ex 'PROFILES'
May 27, 2003 at 1:05 pm
The select into statement will create table for you.
May 27, 2003 at 11:20 am
Dynamically add Access database as linked server and use sp_table_ex.
May 27, 2003 at 9:03 am
Example from BOL.
C. Use @@ERROR to check the success of several statements
This example depends on the successful operation of the INSERT and DELETE statements. Local variables are set to the...
May 27, 2003 at 8:58 am
Try odbcping.exe. You can download it from microsoft website.
May 27, 2003 at 8:53 am
Have you tried -E parameter in OSQL.
-E
Uses a trusted connection instead of requesting a password.
Edited by - Allen_Cui on 05/27/2003 08:46:29 AM
May 27, 2003 at 8:46 am
select cast((convert(varchar(4), DATEPART( yy , getdate())) + '-' +
convert(varchar(2), DATEPART(mm , getdate())) + '-' +
...
May 27, 2003 at 8:44 am
quote:
DECLARE @ErrorsExist IntSelect @ErrorsExist = @@Error
@@ERROR Returns the error number for the last Transact-SQL...
May 27, 2003 at 8:31 am
Register MSDE 2000 instance with EM and change from there. If you don't have EM, you then have to change the registry.
Change key \\hkey_local_machine\software\microsoft\mssqlserver\mssqlserver\loginmode to 2.
May 26, 2003 at 1:46 pm
Which version Crystal Report do you use? We don't have problem to run Crystal 8.5 against SQL Server 2000. I don't know why it doesn't work with MSDE 1.0. Can...
May 26, 2003 at 12:30 pm
quote:
Connecting To serve007.hosted.servetheworld.net...Could not open connection to the host, on port 1433.
A socket operation was attempted to an unreachable network.
May 26, 2003 at 12:15 pm
Viewing 15 posts - 1,741 through 1,755 (of 2,387 total)