Viewing 15 posts - 1,696 through 1,710 (of 2,897 total)
Carolyn Stern (11/19/2009)
First my most humble apologies as I am sure most of you are going to roll your eyes in dispair.
Not at all.
A well asked question often leads...
November 21, 2009 at 7:27 pm
Right click jobs -> New Job -> Steps -> New -> Type: CmdExec -> Command: c:\MyFolder\Program.exe
November 20, 2009 at 1:08 pm
As I recall, when creating the publication, there is a setting something like:
1) Create snapshot now
2) Create snapshot later on demand
3) Use existing snapshot files or snapshot already exists.
I...
November 20, 2009 at 9:02 am
You can create a linked server, then
insert into Server_B.Database_B.dbo.Table_A
select * from Database_A.dbo.Table_A
November 20, 2009 at 8:00 am
"...when i first start the replication, the shapshot is copy to the subscriber. after that, the shapshot will not ever be used...."
Correct, but in your first post you...
November 19, 2009 at 5:22 am
murgocimark (11/18/2009)
My first question is that this approach is correct, than:
- i know than in a replication, its recommanded than dailly to perform a snapshot replication also, for that the...
November 18, 2009 at 8:37 am
If the job is failing, you should configure it to send you an email notification.
I think failed jobs would be in job history, not backup history.
To double check your current...
November 16, 2009 at 3:20 pm
You could run this to look for unused index that might be candidates for deletion. Keep in mind that the info in sys.dm_db_index_usage_stats is only accurate since the last...
November 15, 2009 at 9:09 pm
Jack Corbett (11/13/2009)
Homebrew01,How long do you need that for? The backup history is never cleaned up unless you do it. Here's one person's reason why, http://feedproxy.google.com/~r/BrentOzar-SqlServerDba/~3/NPNxT9sz2uE/
Since t-log backups...
November 13, 2009 at 8:32 pm
Jack Corbett (11/13/2009)
Homebrew01,How long do you need that for? The backup history is never cleaned up unless you do it. Here's one person's reason why, http://feedproxy.google.com/~r/BrentOzar-SqlServerDba/~3/NPNxT9sz2uE/
Interesting ! ...
November 13, 2009 at 11:02 am
I use this to search for character strings in stored procedures:
select name, create_date, substring(definition,CHARINDEX('CharacterString', definition)-25,150) as 'Code Snippet', definition as 'Entire Code'
from sys.sql_modules com
join sys.objects obj on com.object_id...
November 13, 2009 at 8:51 am
Is this the target database that is receiving logs from log shipping ?? If so, I think you want it to stay in NORECOVERY so it can accept more...
November 13, 2009 at 8:27 am
Can you access the database through the GUI ?? See all the tables & data ?
November 13, 2009 at 8:15 am
I like to keep the backup history information. I find it useful for analyzing database growth over time. It doesn't take up much space, why not leave it there ?
November 13, 2009 at 8:12 am
Viewing 15 posts - 1,696 through 1,710 (of 2,897 total)