Viewing 15 posts - 3,046 through 3,060 (of 7,502 total)
Good catch, Perry.
That is indeed fundamental !
April 17, 2010 at 12:01 pm
just to add to the solutions that have been posted already.
The term "primary key" comes from the concept of data analysis (normal forms, ...).
It determines the attribute(s) [columns] that uniquely...
April 17, 2010 at 2:45 am
isn't that a somewhat heavy laptop ? 😀
April 16, 2010 at 1:39 pm
Nice examples.
IMO for a very temporary solution it still may be tolerable ... to use a hybrid solution
CREATE function ufn_GetOrderDetailsCombinations ( @PurchaseOrderID int )
returns table
as
return (
/*
Select...
April 14, 2010 at 7:27 am
Best is to just read about it in Books online and then perform a test using the Database mail configuration wizard of SSMS.
Here's a nice setup ref: http://www.sql-server-performance.com/da_email_functionality.asp
Here's a little...
April 13, 2010 at 1:02 am
The question is also the same ...
Is your goal High availability and/or Data loss protection ?
Do you want no application modification impact (connection string) ?
Do you want no application modification...
April 13, 2010 at 12:53 am
Carl Federl (4/12/2010)
April 13, 2010 at 12:38 am
lauer_Christopher
I have added a reply to the thread Elliot_W mentioned.
April 12, 2010 at 2:36 am
so .... picture this ..
Physical server name TheServer IPaddress 172.16.6.10
The instance TheServer\TheInstance listening at port 2072 (double check its usage if you actually want to use this particular port number...
April 12, 2010 at 2:20 am
just set up a dbmail profile to be able to send emails, and then schedule a sqlagent job to launch your emails.
You can either put your sqlscript in the sqlagent...
April 11, 2010 at 1:19 pm
Thank you for the feedback.
It's nice to see the different solutions and how they actually performed in your case.
IMHO in many cases, queries will have a big performance gain if...
April 9, 2010 at 12:08 am
What is your goal with this/these DRP ?
Microsoft SQL Server 2005 has a number of ways that can help you.
- Failover Cluster (shared storage)
- Database Mirroring
- Database Replication
-...
April 8, 2010 at 5:44 am
just a quick first impression on the original view
I would rewrite that one to avoid as much IO as possible ... so use (not) exists as much as possible
WITH ...
April 7, 2010 at 2:23 pm
What service pack is your sql2005 on ?
Please post the result of
select @@version
or
Select Serverproperty( 'ProductVersion' ) as ProductVersion
, Serverproperty( 'ProductLevel' ) as ProductLevel
, Serverproperty(...
April 7, 2010 at 6:29 am
You have explained your concept, but ... can you provide DDL and some execution statistics of your tests ?
April 7, 2010 at 6:18 am
Viewing 15 posts - 3,046 through 3,060 (of 7,502 total)