Viewing 15 posts - 3,121 through 3,135 (of 5,394 total)
A table script, some sample data and the expected output would help a lot.
Take a look at the article linked in my signature line and find out how to help...
June 8, 2011 at 9:59 am
Roy Ernest (6/8/2011)
Does going down the stairs and way to the back of the office towards the beach to take a smoke break count for this? 🙂
That's not fair, Roy!...
June 8, 2011 at 9:56 am
Grant Fritchey (6/8/2011)
Jim Murphy (6/8/2011)
I'm not much of a runner. Uh, at all. But with all of...
June 8, 2011 at 9:20 am
I think it's just a display issue, then.
Try this:
-- Source table with some sample values
DECLARE @source TABLE (
id int, -- to...
June 8, 2011 at 9:17 am
GilaMonster (6/8/2011)
Fal (6/8/2011)
Didn't mean to imply you didn't, if it came across as such. Was alluding that the second half would be a wholly contained subset of the first...
June 8, 2011 at 6:01 am
Managers know better. 😛
I think you will have to create a package by hand or use the wizard.
June 8, 2011 at 5:59 am
lanky_doodle (6/8/2011)
Not quite. It converted my numeric value from -0.5700 to 23:03:00.
That's what -00:57:00 looks to me.
What does a negative time mean to you?
June 8, 2011 at 5:58 am
See if this helps:
-- Source table with some sample values
DECLARE @source TABLE (
id int, -- to identify the converted values in the destination table
decCol decimal(19,4)
)
-- some sample values
INSERT INTO @source...
June 8, 2011 at 4:27 am
Let me ask one question: why replicate the database to SQL Server if you can access the data from Oracle?
I know, Oracle sucks. I hope there's a better reason for...
June 8, 2011 at 4:14 am
You could use the Oracle migration assistant
It's not as easy to use as it might seem and it hangs sometimes, but it kinda works.
June 8, 2011 at 3:52 am
ashok.faridabad1984 (6/7/2011)
Hi,There is no harm in usung this
select datename(dw,getdate())
and can check for Sat or Sun accordingly.
Regards
Ashok
It still depends on the client's language:
set language italian
select datename(dw,getdate())
Saturday is ...
June 7, 2011 at 2:56 am
There's no need for FULL recovery model on MSDB:
June 7, 2011 at 2:27 am
Actually syscomments is a compatibility view for SQL2000 and it should not be used. It splits the object definition on multiple rows when it exceeds 4000 characters. sys.sql_modules is the...
June 7, 2011 at 1:59 am
June 7, 2011 at 1:02 am
You can use a query like this:
SELECT OBJECT_NAME(id)
FROM syscomments
WHERE text LIKE '%whateveryoulookfor%'
Hope this helps
Gianluca
June 7, 2011 at 12:58 am
Viewing 15 posts - 3,121 through 3,135 (of 5,394 total)