Viewing 15 posts - 6,976 through 6,990 (of 7,466 total)
sorry to fall back in so late ... meeting time
Joining is just a question of good old maths ... sets and subsets.
May 28, 2004 at 10:11 am
so, you have full and log-backups up til monday, right ?
You have full or bulk-logged recovery model ?
If you take a new log-backup (incremental), you can restore the full with...
May 28, 2004 at 10:03 am
did you enter the fully qualified name in EM ?
'MyW2k3SQL2KServer.theotherdomain.theotherdomainsuffix' ?
May 28, 2004 at 4:54 am
add a country-code column to your tables and create a partitioned view.
This way sqlserver may serve you best if you want to avoid dynamic sql.
check BOL
With dynamic sql you might...
May 28, 2004 at 4:44 am
have the frist step of your fullbackup doing this :
EXEC MSDB.DBO.sp_update_job @job_name = N'MyserverLog_Incremental', @new_name = N'FullbackupProcedure_Disabled - MyserverLog_Incremental', @enabled = 0
and add a last step doing :
EXEC MSDB.DBO.sp_update_job...
May 28, 2004 at 4:33 am
Take a look at Intervention system for runaway jobs
it needs to be updated for sql2ksp3. But it might get you on track.
May 28, 2004 at 1:44 am
- compare execution plans !
How is this one doing ? (don't like it myself but give it a try  
May 28, 2004 at 12:19 am
That's what you get when your interviewer only has his/her mandatory-questions-list but without a clue what it's all about
May 28, 2004 at 12:10 am
"Is it possible that the insert trigger is firing prior to the commit tran? "
Yes !
the trigger is launched at command-time ( insert...
May 28, 2004 at 12:06 am
- backup your transactionlog !
Do you have a fullbackup taken before this incident, to which the logbackup can be applied ?
If yes, restore the fullbackup with another dbname using the...
May 27, 2004 at 11:56 pm
make sure each db has at least one .mdf _and_ one .ldf file !
Also keep your backups !
As lholman mentioned, if sqlserver did...
May 27, 2004 at 12:11 am
in the backup-folder you'll mostly find .bak-files. These contain regular sqlserver backup-files. (these are to be user with the "restore database"-commandser)
The ones with .mdf, .ndf or .ldf are sqlserver data-...
May 26, 2004 at 12:25 am
If you have recent backups, restore will be possible with "restore db" (as long as you stay with the same version or with a higher version of sqlserver).
May 26, 2004 at 12:00 am
run DBCC CHECKDB ! see BOL
May 25, 2004 at 4:42 am
Oops. Overlooked the select
back to profiler then
May 25, 2004 at 12:01 am
Viewing 15 posts - 6,976 through 6,990 (of 7,466 total)