Viewing 15 posts - 3,016 through 3,030 (of 7,168 total)
See if this gets you there:
EXEC('SET IDENTITY_INSERT CORELIBRARY_ARCHIVE.dbo.MessengerLog ON') AT [NAS2-RPS];
September 27, 2012 at 11:01 am
You might be able to do it using Extended Events.
September 27, 2012 at 10:53 am
Patti Johnson (9/27/2012)
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...
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...
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.
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.
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...
September 27, 2012 at 7:21 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
September 27, 2012 at 7:00 am
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...
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...
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
(
...
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...
September 26, 2012 at 3:48 pm
Viewing 15 posts - 3,016 through 3,030 (of 7,168 total)