Viewing 15 posts - 16,816 through 16,830 (of 18,923 total)
Holly sh1t!! I need to get some networking skills like this
.
June 14, 2005 at 8:10 am
Maybe there was a unique index that's been deleted.
Or did you change the context of the delete (likw now using access when the old app was in vb)?
June 14, 2005 at 8:09 am
I still need the script to insert the sample data.
Also you're aware that this system is denormalized (escalate1hours1, 2, 3)?
June 14, 2005 at 8:07 am
The problems comes from the fact that I don't know what application needs to do with the data, and where that data is sitting. The server, and the applications...
June 14, 2005 at 8:06 am
try this :
use pubs
go
Select * from northwind.dbo.Categories
It works, but I don't know enough about your design to make a final statement.
June 14, 2005 at 8:03 am
Can you show me the query that produces those results?
Or can you repair the data?
June 14, 2005 at 8:01 am
That's exactly the reason I stay way from this syntax...
June 14, 2005 at 7:55 am
You're idea is good, just need this tweak :
Select LEFT(PostCode, CHARINDEX(' ', PostCode) - 1) from dbo.YourTable where CHARINDEX(' ', PostCode) > 0
Now it works
June 14, 2005 at 7:53 am
... That can't be good for performance!!!
June 14, 2005 at 7:52 am
You can use the data of database B when you are in database A, so I definitly wouldn't copy all the data (especially if you have millions of rows).
June 14, 2005 at 7:48 am
This is formated to work in a select statement... could be optimized to be used in a function.
Declare @Zip as varchar(6)
SET @Zip = 'L5 3QE'
Select LEFT(@Zip, CASE WHEN charindex(' '...
June 14, 2005 at 7:46 am
Yes but that would take extensive efforts. How about you copy the sp and adapt it to your needs on the 2nd server?
June 14, 2005 at 7:42 am
Why can't you use the same database for the 2nd application?
How will you use the first database?
June 14, 2005 at 7:37 am
Viewing 15 posts - 16,816 through 16,830 (of 18,923 total)