Viewing 15 posts - 376 through 390 (of 928 total)
denis.gendera (8/21/2015)
August 21, 2015 at 2:25 am
Eirikur Eiriksson (8/14/2015)
Jeff Moden (8/14/2015)
Heh... since it's for XML...
Trying to put my finger on this, just cannot find which kind of XML phobia is plaguing you Jeff:Whistling:, so far I've...
August 17, 2015 at 2:29 am
With Pivot you effectively turn columns into rows and rows into columns http://sqlrambling.net/2013/10/31/pivot-basic-example/ - your example appear to want to turn an entire table into one row.
'Payer1' uses the 'Payer'...
August 17, 2015 at 2:14 am
In SSMS, right-click on the database and select Tasks/Generate Scripts.
August 12, 2015 at 8:25 am
Thanks for taking the time, much appreciated.
July 31, 2015 at 1:44 am
Hi Jacob,
Thanks for taking the time.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Test2](
[ID] [int] NOT NULL,
[Test_Value] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY =...
July 30, 2015 at 1:37 am
So you just need the year as parameter 1, so you know which July 1st you're after. Then the number of periods, which equates to the number of months. You...
July 29, 2015 at 7:38 am
Execute the stored procedure 'sp_scriptpublicationcustomprocs' against the Publisher, with the Results to Text in SSIS.
This generates the default Stored Procedures for the Publication specified.
Execute the output against the Subscriber.
If you...
July 21, 2015 at 1:03 am
Local instances, where I can do anything I want (within reason). I use this to check that my understanding is correct, before moving into:
Test Server - where my changes and...
July 20, 2015 at 1:43 am
I have an example of how to locate the transaction causing the problem here - http://sqlrambling.net/2014/10/31/replication-monitor-basic-overview/
July 16, 2015 at 7:15 am
Brandie Tarvin (7/16/2015)
If you're going to stay for a few days, check out Abigail's Hotel[/url]. It is AWESOME and they make you breakfast. As in made to order with a...
July 16, 2015 at 6:27 am
Brandie Tarvin (7/16/2015)
BrainDonor (7/16/2015)
Lynn Pettis (7/15/2015)
July 16, 2015 at 4:58 am
Lynn Pettis (7/15/2015)
Not as concerned about getting a flight to Seattle as...
July 16, 2015 at 2:30 am
The packages we have here send emails via Script Tasks, which use system.net.mail.smtpclient.
July 14, 2015 at 5:56 am
Viewing 15 posts - 376 through 390 (of 928 total)