Viewing 15 posts - 151 through 165 (of 190 total)
Google helps.
Here is one:
HTH.
June 23, 2008 at 2:48 pm
I used a temp table to select the latest one. (Not a good one, but works.):hehe:
June 23, 2008 at 2:42 pm
You can google the instruction.
Here is one:
http://www.devarticles.com/c/a/SQL-Server/Replication-SQL-Server-2000-Part-2/
June 23, 2008 at 11:46 am
This problem occurs because the Snapshot Agent always sets the QUOTED_IDENTIFIER option to ON, regardless of the actual setting. Therefore, if the stored procedures or views use double quotation marks,...
June 19, 2008 at 1:52 pm
I don't think you need to restore the Log backup.
June 17, 2008 at 11:18 am
Go for Transactional Replication.
June 17, 2008 at 11:14 am
Is there an option for "backup" check in the maint. plan?
June 13, 2008 at 2:32 pm
The slowness is because SQL engine works hard to get 100G space from your HD (if your HD already has other stuff, it may take longer).
Usually, I create a relatively...
June 13, 2008 at 2:23 pm
1. Replication: SnapShot or Transactional
2. Log Shipping.
3. Mirroring + Database SnapShot (SQL 2005)
June 13, 2008 at 8:33 am
Based on David's script:
SELECT j.[name],
MAX(CAST(
STUFF(STUFF(CAST(jh.run_date as varchar),7,0,'-'),5,0,'-') + ' ' +
STUFF(STUFF(REPLACE(STR(jh.run_time,6,0),' ','0'),5,0,':'),3,0,':') as datetime)) AS [LastRun],
CASE jh.run_status WHEN 0 THEN 'Failed'
WHEN 1 THEN 'Success'
...
June 12, 2008 at 1:53 pm
Go to Books Online, check "CONVERT". There are lots of time format.
June 12, 2008 at 12:01 pm
Check this article:
http://sqlinthewild.co.za/index.php/2008/02/25/parameter-sniffing-pt-2/
---- I got this from Gail Shaw.:)
June 12, 2008 at 10:08 am
I would rather create the 2nd Raid 1 for TempDB on Controller 1 since it is faster.
June 12, 2008 at 9:57 am
How about this?
UPDATE TIH--#TEMPINVENTORYHISTORY
SET
ORIGCONTAINERNO = TP.ORIGCONTAINERNO,
ORIGPACKAGENO = CAST(TP.ORIGPACKAGENO AS VARCHAR)
FROM #TEMPINVENTORYHISTORY TIH
INNER JOIN TRANSREPACKAGING TP ON TIH.TRANSID = TP.TRANSID
WHERE
...
June 12, 2008 at 9:40 am
Viewing 15 posts - 151 through 165 (of 190 total)