Viewing 15 posts - 1,471 through 1,485 (of 7,504 total)
both will be equal;
However, I always advise to use the join syntax because it nicely distinguishes join conditions and filter conditions.
This is especially interesting with outer joins.
BTW as of...
January 16, 2012 at 12:07 am
another reason to switch to a more intelligent solution in stead of a maintenance plan.
there are a couple of alternatives at SSC.
Ola Hallengren has a very nice one at http://ola.hallengren.com/
January 12, 2012 at 12:48 pm
What about servername, instance name for your standalone server ?
Are they equal to the original servername ?
If not, you may have some issues with msdb (sqlagent), and master sysservers
have a...
January 12, 2012 at 12:34 pm
with numeric data, leading zeroes do not play a significant role, so don't worry.
If you want leading zeroes in your result, handle that in your presentation layer (gui, report, ...)
January 12, 2012 at 12:28 pm
GilaMonster (1/12/2012)
...Speaking as a occasional trainer and presenter..
And a darned good one too, may I say ! :w00t:
January 12, 2012 at 6:55 am
As Jason stated, the query I provided should cover your quest.
Oh indeed. I forgot to mention this:
Test it, Test IT !
January 12, 2012 at 1:01 am
- the trc files you see are the ones generated because the default trace is active (+_ 20MB each, wright ?) I presume.
( please let it be active. It can...
January 11, 2012 at 2:03 pm
Because you're only using inner joins, just let the sql engine determine at which step in the process it will handle your where clause.
(It will take indexes and statistics into...
January 11, 2012 at 1:47 pm
Maybe this can be an option too
Declare @SeriesStartDate datetime
Declare @SeriesEndDate datetime
Select @SeriesStartDate = '2010-11-01'
, @SeriesEndDate = DATEADD(mm, 4, @SeriesStartDate)
Declare @DynamicPivot varchar(1000)
declare @Separator char(1)
Select @DynamicPivot = ''
, @Separator = ''
Select @DynamicPivot=@DynamicPivot...
January 11, 2012 at 1:24 pm
I would first look for things that may cause your kind of corruption:
A good starter is : http://sqlskills.com/BLOGS/PAUL/post/Example-20002005-corrupt-databases-and-some-more-info-on-backup-restore-page-checksums-and-IO-errors.aspx
You'll find more corruption/checksum related blogs on that site.
http://www.sqlservercentral.com/articles/Corruption/65804/ also contains very helpful...
January 10, 2012 at 12:04 am
you could try to investigate its execution count
select qs.execution_count
FROM sys.dm_exec_query_stats qs
cross apply sys.dm_exec_query_plan(qs.plan_handle) QP
January 6, 2012 at 1:23 pm
that's one of the advantages you get when switching to dbmail 🙂
January 6, 2012 at 1:10 pm
Thank you for the feedback !
Others will benefit from it.
January 6, 2012 at 1:08 pm
Is this a single shot migration ?
Did you have a look at the SSMA for access (freeware by MS )?
( SQLServer Migration assistant for access )
January 6, 2012 at 1:03 pm
Viewing 15 posts - 1,471 through 1,485 (of 7,504 total)