Viewing 15 posts - 4,471 through 4,485 (of 5,103 total)
Take a look at this thread for the log shipping QOD.
In my opinion after put it in standby mode If you set it to dbo only and kill all connections...
March 30, 2004 at 3:13 pm
UDP Port is used to determine the instances and listeneing ports but if you hardcode that on an alias you don't need UDP
March 30, 2004 at 2:53 pm
potucekj : the User SID live in the master datatabase. For an explanation on why to run that? check This out
HTH
March 30, 2004 at 2:46 pm
Select
Job
, histDate as SaleDates
, (Select Min(T1.histDate)
From dbo.Hist_Table T1
Where T.Job = T1.Job
and T1.histCode =10
and T.histDate < T1.histDate ) as CancelDate
From
dbo.Hist_Table T...
March 30, 2004 at 2:35 pm
yes you can:
Create Table TEST (Row int, Data varchar(60))
GO
INSERT INTO TEST VALUES (1, 'a')
INSERT INTO TEST VALUES (2, 'ab')
INSERT INTO TEST VALUES (3, 'abc')
INSERT INTO TEST VALUES (4, 'abcd')
INSERT INTO...
March 25, 2004 at 9:26 am
Again another bad question. If you use standby mode instead of recovery it works it is true that if someone is connected to it the restore process fail... so what?...
March 25, 2004 at 8:16 am
suppose you have a Calendar table with Working days Marked as 1 and Weekends and company holidays marked as 0
EX:
Create table Calendar (Dte Datetime, Workday tinyint)
Populate that table with 2...
March 22, 2004 at 3:00 pm
One of the advantages that sp give and is not very often appreciated is that they can ISOLATE the application from the backend structure AND business rules so the changes on...
March 22, 2004 at 6:43 am
It is NOT EM who does that it just happens indirectly.
Those ports are used by NBT or netbios over tcp/ip it is all because of the NAME resolution mechanism. To minimize...
March 19, 2004 at 2:15 pm
I've had BAD experiences with this.
If an index is to be used for one of the columns on the where clause, sometimes that expression is evaluated FIRST so the chain evaluation...
March 19, 2004 at 8:23 am
change the Update Statement to :
UPDATE tblPN
SET <A href="mailtoN=@NewPN">PN=@NewPN, Cage=@NewCage
WHERE tblPN.PN = @OldPN And tblPN.Cage = @OldCage
March 19, 2004 at 8:07 am
March 18, 2004 at 11:48 am
SELECT @newfield=i.prefix, @oldfield=c.prefix
FROM inserted i
INNER JOIN dbo.WPPI_Main_Load_Globals c ON i.ODBC = c.ODBC
change it to
SELECT @newfield=i.prefix, @oldfield=d.prefix
FROM inserted i
INNER JOIN deleted d ON i.ODBC = d.ODBC
-- I am assuming ODBC is pk
BTW...
March 17, 2004 at 2:09 pm
I had a deja vu:
I posted something here. Check it out.
BTW I still believe a Table is the way to go
March 17, 2004 at 9:56 am
declare @str as varchar(100)
set @str ='''c:m:0603r:mn '' '','' '' c:m:0703r:mn'''
SELECT @str , Replace(@str,''' '','' ''',''',''')
March 12, 2004 at 9:07 am
Viewing 15 posts - 4,471 through 4,485 (of 5,103 total)