Viewing 15 posts - 76 through 90 (of 388 total)
Sounds like a data problem - you'll have to find the problems in your data first, and then decide how to deal with them.
Suggestions
1) Run your script without the...
June 25, 2013 at 1:03 am
....something like....
cast(date_start + left(hour_start,2)+':'+substring (hour_start,3,2)+':'+right(hour_start,2) as datetime)
June 24, 2013 at 8:29 am
You're probably going to have to cut up the time and insert colons, using the substring (and if you like, left and right) functions, so that you end up with...
June 24, 2013 at 8:27 am
My advice, for what it's worth, stick with SSIS - get the knowledge. I agree, it can be a pain (is frequently a pain), but it's matured a lot...
June 14, 2013 at 4:04 am
Not an issue for me...this has always been the behaviour of UNION.
I've often used
select c,b FROM #a
UNION
select c,b FROM #a
to eliminate / identify duplicates.
As for multiple UNIONs / UNION ALLs...
May 14, 2013 at 4:14 am
Interesting idea...but the article has a somewhat incomplete feel to it.
I notice that you never get beyond the 'Introduction' heading.
A little more explanation - perhaps a working example...and more importantly...
April 29, 2013 at 4:18 am
badOedipus (4/26/2013)
I'm not sure how far back this goes, but I...
April 29, 2013 at 12:11 am
Not on my sql box right now but...
I think there's something circular going on....e.g. A reports to B, B reports to A
Can you check your data? Also have you...
April 26, 2013 at 8:25 am
sqlpanther (4/10/2013)
Yes all the objects are in the same server
Then you can do as Lowell suggests...or something similar with sys.columns if you need to drill down further.
April 10, 2013 at 9:12 am
Krasavita (4/10/2013)
Yes,this is just for tables,what about any changes on database?
DML Triggers are for tables.
DDL Triggers are for the rest.
April 10, 2013 at 7:52 am
Are the databases on the same server?
April 10, 2013 at 7:29 am
SQL_Surfer (4/5/2013)
April 8, 2013 at 12:29 am
Does your notepad++ have a hex editor?
In Ultraedit I can see the hex value of the bytes, and I can clearly see in a unicode file that there are 2...
April 5, 2013 at 10:06 am
haiao2000 (4/5/2013)
David McKinney (4/5/2013)
Do you have the option of creating a copy of the stored procedure with the variable declared as an int, and...
April 5, 2013 at 9:54 am
Viewing 15 posts - 76 through 90 (of 388 total)