Viewing 15 posts - 3,016 through 3,030 (of 13,469 total)
andybellenie (8/1/2013)
CREATE UNIQUE CLUSTERED INDEX [IX_campaignContacts] ON [dbo].[campaignContacts](
campaignId ASC,
contactId ASC
)
The index you created above would be used if you had a statement like this:
SELECT contactId
FROM campaignContacts
WHERE campaignId ...
August 1, 2013 at 11:50 am
EamonSQL (8/1/2013)
The reason I know is that this is an old app which the vendor isn't supporting anymore.
Sometimes a data issue occurs and we've been told that a...
August 1, 2013 at 10:53 am
dzoll (8/1/2013)
Msg 14624, Level 16, State 1, Procedure sp_send_dbmail, Line 260
At least one of the following parameters must be...
August 1, 2013 at 6:53 am
prakashr.r7 (8/1/2013)
The Texas A& M is superb. This site has an option of Batch processing. It just made me curious, how many addresses...
August 1, 2013 at 5:12 am
Ed Wagner (7/31/2013)
July 31, 2013 at 2:12 pm
Jared i tried it on my 2012/2008 and 2005 instances,a nd all three returned an error referencing the column sJob.Originating_Server
Msg 207, Level 16, State 1, Line 3
Invalid column name 'Originating_Server'.
do...
July 31, 2013 at 12:33 pm
Sanity Checks are always a good thing! glad i could help!
July 31, 2013 at 12:16 pm
you are correct; you are testing for five specific values in your CASE, and there's no explicit ELSE in it to handle other values, and the built in logic...
July 31, 2013 at 11:12 am
a basic example:
Create LOGIN [ClarkKent] WITH PASSWORD='NotTheRealPassword'
USE [WHATEVER]
Create USER [ClarkKent] FOR LOGIN [ClarkKent]
CREATE ROLE [ReadOnlyRole]
EXEC sp_addrolemember N'db_datareader', N'ReadOnlyRole'
--can the users EXECUTE procedures? comment out if false
GRANT EXECUTE TO...
July 31, 2013 at 11:08 am
prakashr.r7 (7/31/2013)
Lowell (7/31/2013)
July 31, 2013 at 10:34 am
prakashr.r7 (7/31/2013)
I can not use this web page as you say it would do only about 1000 addresses . i have more than 30000...
July 31, 2013 at 10:23 am
not sure if that's an issue or not. on my test server, i did exactly this code, and see the command text for both;
regardless of whether the command text is...
July 31, 2013 at 8:40 am
i've used the free portion of this web service, which does a best-lookup of an address and converts it into the official standardized address pieces...if it's an invalid address, it...
July 31, 2013 at 8:16 am
clas (7/30/2013)
July 30, 2013 at 3:03 pm
well, i think you've abstracted the problem out to where we can't tell what you want.
why can't you do everything, in a single step, with SELECT ID, Type, Value +...
July 30, 2013 at 11:51 am
Viewing 15 posts - 3,016 through 3,030 (of 13,469 total)