Viewing 15 posts - 1,036 through 1,050 (of 5,103 total)
Ugly but it does what you want 😉
DECLARE @ServerNames TABLE
(
[ServerName] VARCHAR(50)
...
July 7, 2008 at 1:11 pm
you may want to read this thread: http://www.sqlservercentral.com/Forums/Topic523260-291-1.aspx
July 7, 2008 at 12:54 pm
Here is a simple rule. Show that the change (hopefully little) that you are going to make can be equivalent to $$$ for the company and you will be on...
July 7, 2008 at 12:49 pm
Grinja (7/3/2008)
this is my first 2K5 replication attempt.
I have server which is acting as Publisher + Distributor.
My replicated DB is 450MB pre-replication setup and after it is around 820mb....
July 3, 2008 at 9:23 am
riga1966 (7/2/2008)
"Cancell_If_Time_Passed":
IF datepart(hour, getdate()) >= 23
BEGIN
execute Send_Status_Email 6,0
EXEC msdb..sp_stop_job @job_name = 'NIAD_stop_job'
END
It's too many little steps now in the...
July 2, 2008 at 2:31 pm
ungmax (7/2/2008)
transport-level error has occurred when sending the request to the server. (provider: TCP Provider, error: 0 - An existing...
July 2, 2008 at 2:28 pm
I think Jeff is reffering to ALTER TABLE SWITCH ... for partitioned tables
July 2, 2008 at 2:27 pm
smunson (7/2/2008)
July 2, 2008 at 1:23 pm
You should pass the "-h ORDER() " hint to your bulkload statement 😉
July 2, 2008 at 1:21 pm
The first thing to do is to really "Know your data". You need to have an idea of what is stored and how it is. Then you will be able...
July 2, 2008 at 1:13 pm
All of this is probably better handled from the client side but YMMV 🙂
July 2, 2008 at 1:10 pm
I know DNS alias do NOT work for replication. For example try to register a publisher using a DNS alias in ReplicationMonitor and you will get an error like the...
July 2, 2008 at 1:06 pm
Bob Shaw (7/2/2008)
We had one single publication and the table causing the timeouts had about 70 joined filters on it for the child tables,...
July 2, 2008 at 12:54 pm
Viewing 15 posts - 1,036 through 1,050 (of 5,103 total)