Viewing 15 posts - 4,036 through 4,050 (of 5,394 total)
I think you're confusing the way data should be stored internally with how it should be presented to the users.
It's not a conversion issue, it's just how you format data...
June 30, 2010 at 3:00 am
Dave Ballantyne (6/30/2010)
Coincidence ? , homework ? or left hand not talking to right hand ?Both similar problems , 2000 to 2008 upgrade , udf performance
http://www.sqlservercentral.com/Forums/Topic945233-392-1.aspx
http://www.sqlservercentral.com/Forums/Topic945210-392-1.aspx
I initially posted a...
June 30, 2010 at 2:06 am
To get rid of the lazy pool you should alter the function WITH SCHEMABINDING.
As a side note, using functions in join conditions is not a good idea at all.
Hope...
June 30, 2010 at 1:50 am
I suppose you're not running this query on a SQL Server 2008.
I think you're on SQL Server 2005.
June 30, 2010 at 1:27 am
Deadlock priority can be set at session level with SET DEADLOCK_PRIORITY, or can be determined automatically by the sql engine calculating the cost of the rollback for each process involved....
June 30, 2010 at 1:16 am
Eugene Elutin (6/29/2010)
try:
UPDATE Temp set Discounturl = replace(replace(replace(Discount,'--','-~'),'-~',''),'-',' ')
Doh! Now I see what you mean. Sorry for misunderstanding.
June 29, 2010 at 10:10 am
I don't see a question here... can you explain?
June 29, 2010 at 9:57 am
Try tracing it with a server side trace.
Select at least statement completed, stetment starting and user error as events and set up a filter on application name=SSIS.
This should help you...
June 29, 2010 at 9:42 am
Paul White NZ (6/29/2010)
June 29, 2010 at 7:31 am
I had to face the same problem and it's not so easy to solve with SSIS, so I decided to use .NET code.
I'm no SSIS guru, so probably there's something...
June 29, 2010 at 6:30 am
Try sorting using the numeric part only:
select top 1 @num = num from table order by right(num,len(num)-4) desc
June 29, 2010 at 2:08 am
ChiragNS (6/29/2010)
Yes... or an application where users log in with different "application users" but the connection uses the same SQL user for all the different application users.
That's what I was...
June 29, 2010 at 1:53 am
Use UNC paths:
\\yourcomputername\sharename\filename.csv
Bulk inserts use delegation, so make sure your share can be accessed by the user that performs the BULK INSERT command in SQL Server.
June 29, 2010 at 1:52 am
Viewing 15 posts - 4,036 through 4,050 (of 5,394 total)