Viewing 15 posts - 466 through 480 (of 496 total)
This is what first came to mind, I was trying to find more...
June 6, 2003 at 5:33 am
There are also trusted logins, that were deleted from the domain a week ago. Can I delete them without caution?
June 5, 2003 at 5:57 am
2Jeremy Kemp:
The procedure I call from the job does a number of backups in a cycle:
set @backup_command = 'BACKUP DATABASE ' + @db_name + ' TO DISK=''' + @full_backup_path +...
June 5, 2003 at 12:16 am
I just wanted to fetch a single column at one place of the procedure and take the others at another. So "partial" fetching is not possible.
Thanks all...
June 4, 2003 at 6:50 am
Another one:
The properties listed in the Active Directory may not always be exactly the same as they are in SQL Server. If there is discrepancy between the publication and attributes...
June 3, 2003 at 6:29 am
Just found it: BOL (keywords: Active Directory Services)
Typically, if a user wants to subscribe to a publication, they must know the name of the instance of Microsoft SQL Serverâ„¢ and...
June 3, 2003 at 6:28 am
Not quite understand, but what is the practical use of such publications?
June 3, 2003 at 5:07 am
Suppose I use a stored procedure. How can place data (few records) it returns into a cursor or a temporary table. I need something like:
select * from [exec...
June 3, 2003 at 2:46 am
This works fine for DBs like Northwind, but does not work for my working DBs (returns nothing) This is the second time I face such situation. This procedure...
May 29, 2003 at 6:03 am
Well, wrote a code, that works fine, can count number of records and size of all tables, even system (just change the type of the object):
print GetDate()
print '------------------------------------------------'
DECLARE @table_name varchar(100)
DECLARE...
May 28, 2003 at 11:51 pm
I am doing it in EM and this is the only log backup and I have SP3 for mai SQL2000.
So should I do this in query analyzer?
May 28, 2003 at 3:10 am
Maintenance plan does not allow me to choose all databases on all servers but a list of DBs that are not to backup. Maintenance plan does not allow me to...
May 27, 2003 at 3:04 am
Big thanks! It worked!
restore database ACCPAC2
from disk = '\\Saturn\sql_backup\ACCPAC_BACKUP.BAK'
WITH REPLACE,
MOVE 'accpac_data' TO 'd:\sql_data\ACCPAC2_Data.mdf',
MOVE 'accpac_log' TO 'd:\sql_log\ACCPAC2_Log.ldf'
May 26, 2003 at 12:14 pm
So, can I do the task (saving the number of the string of table, where the time of procedure start is recorded) any other way?
The structure of the table where...
May 26, 2003 at 8:10 am
Viewing 15 posts - 466 through 480 (of 496 total)