Viewing 15 posts - 316 through 330 (of 616 total)
tomes12 (2/21/2013)
Of course, I see what you're saying.
Yes, mirroring/log shipping is all an option and under consideration.
That still asks the question how would it work...
February 21, 2013 at 3:31 am
Although replication may seem like a good idea, I'm not sure it was intended by Microsoft to be used as a DR solution. Have you considered mirroring or log shipping?
February 21, 2013 at 1:56 am
adonetok (2/19/2013)
What is wrong?
AttachmentKey is varchar(175)
SELECT AttachmentKey
FROM ...
February 19, 2013 at 1:13 pm
Thanks for this. I see what you're doing but I will have to play around with it to get it to fit with my name matching matrix which looks something...
February 19, 2013 at 8:10 am
I don't understand what you mean by a multi step UNION. Can you give a simple example?
February 19, 2013 at 5:28 am
anthony.green (2/19/2013)
Abu Dina (2/19/2013)
(modify_date >='2012-01-28 15:43:46.077' or modify_date <='2012-12-28 15:43:46.077')
Your query is looking for record where the modified date = '2012-01-28 15:43:46.077'
Slight change to Tony's version:
select...
February 19, 2013 at 3:45 am
The problem is with this:
(modify_date >='2012-01-28 15:43:46.077' or modify_date <='2012-12-28 15:43:46.077')
Your query is looking for record where the modified date = '2012-01-28 15:43:46.077'
Slight change to Tony's version:
select create_date, modify_date from...
February 19, 2013 at 3:39 am
Replace
select @van_id + replace(convert(varchar(11), @nextdel, 113), ' ' ,'') datekey from replicationLock
set @count = @@rowcount
with :
SELECT @count = COUNT(@van_id + replace(convert(varchar(11), @nextdel, 113), ' ' ,'')) from replicationLock
February 19, 2013 at 3:34 am
sinha73 (2/18/2013)
I have never used import/export utility.Can you share steps for import export?To use import export utility I should have the staging table already created?
Thanks
Dee
Sure, see below: You can set...
February 18, 2013 at 1:14 pm
If this is a one off exercise then no need to create a sproc for it to be honest.
You can use the Import/Export utility to import your ID into a...
February 18, 2013 at 11:45 am
I've also found that if a function has over 200 IF statements, that it's time to go back to the drawing board. Many such "hopeless" functions frequently do have...
February 15, 2013 at 10:28 am
Jeff Moden (2/15/2013)
byecoliz (2/15/2013)
February 15, 2013 at 10:01 am
Take the others' advice and ditch the loop for the inline table valued function.
February 15, 2013 at 9:57 am
Jeff Moden (2/14/2013)
Abu Dina (2/14/2013)
mr.neil.bryan (2/14/2013)
Any tips on making this career change?Has anyone done this?
Many thanks,
Yup, I made this decision in July last year however, as hard as I tired...
February 15, 2013 at 9:52 am
Arrghh David beat me to it! 😛
CREATE FUNCTION dbo.FN_REMOVEL_VOWELS (@STRING VARCHAR(max))
returns varchar(max)
as
begin
RETURN REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(@STRING, 'A', ''), 'E', ''), 'O', ''), 'U', ''), 'I', '')
END
SELECT DBO.FN_REMOVEL_VOWELS('INFORMATION SYSTEM')
Quick note about your original...
February 15, 2013 at 9:06 am
Viewing 15 posts - 316 through 330 (of 616 total)