Viewing 5 posts - 316 through 320 (of 320 total)
Use the script below
IF EXISTS (SELECT 1
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE='BASE TABLE'
AND TABLE_NAME='tablename')
...
October 16, 2008 at 1:45 am
Why dont you shrink the log file by using the following command
USE DatabaseName
GO
DBCC SHRINKFILE( , 1)
...
October 16, 2008 at 1:40 am
Executing a stored procedure on another database / server is very easy: follow the following steps:
1. if you have to execute stored procedure in the same server but in different...
October 16, 2008 at 1:36 am
The first thing to remember is that the data to be passing in the Stored procedure must be of same datatype as declared for the particular parameter, and if not,...
October 16, 2008 at 1:30 am
Try to use the Server name before the table name: as
[ServerName].[schema].Table
September 12, 2008 at 4:31 am
Viewing 5 posts - 316 through 320 (of 320 total)