Viewing 15 posts - 286 through 300 (of 321 total)
1) Explain different types of BACKUPs avaialabe in SQL Server?
2) Given a particular scenario, how would you go about choosing a backup plan?
December 11, 2007 at 1:14 am
No indexes, table scans, missing or out of date statistics, blocking, excess recompilations of stored procedures, procedures and triggers without SET NOCOUNT ON, poorly written query with unnecessarily complicated joins,...
December 10, 2007 at 11:53 pm
This error will appear, if you never registered the the computer by it´s
exact name, which you want to define as a subscriber (don´t define only the
IP adress!). The main database...
December 10, 2007 at 11:23 pm
DATALENGTH returns the length of the string in bytes, including trailing spaces. LEN returns the length in characters, excluding trailing spaces. For example,
SELECT
LEN('string'),
LEN('string '),
...
December 10, 2007 at 4:55 am
SQL Server Agent service account is not what xp_cmdshell running under in the cleanup scenario, another suspect will be
the SQL Server service account. In any case, you should be able...
December 6, 2007 at 10:25 pm
msdb..sysjobsteps, msdb..sysjobs
December 6, 2007 at 10:11 pm
Snapshot Agent must have full control access to the replication folder (by default: ...\Program Files\Microsoft Sql Server\ReplData), and the Distribution Agents and the Merge Agents must have read access. This...
December 6, 2007 at 10:03 pm
The owner of the job (who is probably the user who created the job or who first set up replication) does not have the necessary permissions.
December 6, 2007 at 9:59 pm
wrap all the statments into the string and after that execute it with exec()
December 5, 2007 at 2:29 am
Any time no problem. It will not effect the performance.
December 5, 2007 at 2:22 am
Table variables require less locking and logging resources than temporary tables, so table variables should be used whenever possible.
December 4, 2007 at 3:27 am
Have you checked both the system event log (looking for hardware issues) and the SQL errorlog?
December 4, 2007 at 3:04 am
Cross joins - Cross joins return all rows from the left table, each row from the left table is combined with all rows from the right table. Cross joins are...
December 4, 2007 at 2:37 am
Viewing 15 posts - 286 through 300 (of 321 total)