Viewing 15 posts - 3,016 through 3,030 (of 13,461 total)
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
wow just some wild guesses here, no idea if it is right:
i'm assuming ticks means what i found on my search internet search:
declare @ticks bigint = 624511296000000000;
--One Tick is 10...
July 30, 2013 at 11:06 am
i can find it on Amazon.com, and through them, lots of various retailers, but i think that implies a US purchase.
additionally, i'm not sure how many processors that includes for...
July 30, 2013 at 10:52 am
ktager (7/30/2013)
Lowell,thanks, I will update the trigger to use the INSERTED table and retest to see if the trigger fires every time.
Kevin
the trigger always fires every time, it's just it...
July 30, 2013 at 10:04 am
easiest way is to use bcp.exe to a CSV file, which by default opens in Excel on most peoples machines.
if you want a single document, with three worksheets, you'll...
July 30, 2013 at 7:36 am
ktager (7/30/2013)
Lowell,Sorry, didn't see your inserted code? Would using the INSERTED table get the trigger to fire each time?
basically, we are updating the current table from INSERTED, so...
July 30, 2013 at 7:01 am
Viewing 15 posts - 3,016 through 3,030 (of 13,461 total)