Viewing 15 posts - 3,016 through 3,030 (of 7,164 total)
Patti Johnson (9/27/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 10:51 am
Sure, in the spirit of objectivity XML might help you in some specific cases. If you're in need of every ms of performance test XML. You could also reasonably include...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 9:35 am
Thanks for posting the code.
I have no problem with this:
ALTER TABLE Invoicing_2005..T2 ADD CONSTRAINT CK_T2 CHECK (Val BETWEEN 10 AND 10)
BETWEEN is inclusive so it's the same as saying this:
ALTER...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 9:10 am
laurie-789651 (9/27/2012)
You could use a table-valued parameter perhaps?
+1
This is where I would start as well.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 8:13 am
Can you please post the view code? The DDL for the 2013 table maybe useful as well, but I'd really like to see how the view is defined.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 7:32 am
Have a look at Ola Hallengren's Database Backup script. It does what you're wanting and if setup in a SQL Agent job you can send an email if the job...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 7:21 am
http://www.sqlservercentral.com/Forums/Topic1364971-391-1.aspx#bm1365006
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 7:01 am
JAZZ Master (9/27/2012)
Ray K (9/27/2012)
Cliff Jones (9/26/2012)
crookj (9/26/2012)
Daniel Bowlin (9/26/2012)
Back to reality (from a short vacation )Back to the Future...
Marty McFly
Dr. Emmitt Brown
Flux Capacitor
Cuisinart
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 27, 2012 at 7:00 am
Shameless self-promotion:
http://groupconcat.codeplex.com/%5B/url%5D
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 26, 2012 at 9:20 pm
I just did this last week but do not remember if it was Eval to Enterprise or Eval to Dev Edition. I do remember I used the Edition Upgrade feature...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 26, 2012 at 8:35 pm
An EKM system would solve this problem for you I think. If it supported Windows Auth all the better. You could secure the key so only your devs and relevant...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 26, 2012 at 8:31 pm
Perry Whittle (9/25/2012)
opc.three (9/25/2012)
CREATE TABLE #LOGSPACE(
DB SYSNAME,
LogSize FLOAT,
SpaceUsed FLOAT,
Stat BIT
);
INSERT INTO #LOGSPACE
(
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 26, 2012 at 4:25 pm
Jeff Moden (9/26/2012)
opc.three (9/25/2012)
sanjuv999 (9/25/2012)
please guide me
Do not enable xp_cmdshell! You do not need it for this scenario and it introduces risk in your environment.
If you want to do everyting...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 26, 2012 at 3:48 pm
An alternative to CHECK constraints are Foreign Keys referencing lookup tables. These are useful when you need to validate that a value in a column is within a set and...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 26, 2012 at 2:46 pm
You can have SQL server listen on a specific IP, one that is bound to the NIC card you want to accept the traffic. You set the IP and Port...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
September 26, 2012 at 2:06 pm
Viewing 15 posts - 3,016 through 3,030 (of 7,164 total)