Viewing 15 posts - 1,696 through 1,710 (of 2,900 total)
Create a practice database for yourself, and put in sample inventory of things around your house (item #, price, qty ....). Think about how it should be organized. Write some...
November 24, 2009 at 8:26 am
There are 2 basic options
1) In Place Upgrade - Using the existing database, it is upgraded to a new version directly and replaces the old version.
2) Side-by-Side Upgrade - The...
November 24, 2009 at 7:54 am
November 24, 2009 at 7:43 am
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
Viewing 15 posts - 1,696 through 1,710 (of 2,900 total)