Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
_

_Zorro_

@_Zorro_
About
Posts
246
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Do you ever go back...
    _ _Zorro_

    to your all posts, and somehow feel how the time has passed, and stupid? I was reading a long thread with John Simmons, at that time I had just two years of business work. Now I have just a little bit more, and I absolutely do not agree with myself at that time... Here is the thread in question, it was in 2006... http://www.codeproject.com/Lounge.aspx?msg=1740465#xx1740465xx[^]

    The Lounge question com business

  • Embarrassing code admission of the day (or why C.S. is good for you)
    _ _Zorro_

    Pete O'Hanlon wrote:

    what happens when you remove at 0? How is this handled in terms of resizing when you remove from the start of the list

    I see it now, thank's!

    The Lounge question csharp android com design

  • Embarrassing code admission of the day (or why C.S. is good for you)
    _ _Zorro_

    Oh, what would be a better approach? ElementAt? I thought it would be the same...

    The Lounge question csharp android com design

  • Embarrassing code admission of the day (or why C.S. is good for you)
    _ _Zorro_

    What's wrong with that?

    The Lounge question csharp android com design

  • Embarrassing code admission of the day (or why C.S. is good for you)
    _ _Zorro_

    I guess you were expecting a queue or a stack maybe?

    The Lounge question csharp android com design

  • Abortion
    _ _Zorro_

    I'm not saying it's ok, but what if someone just doesn't think abortion deserves all this concern? I'm not sure if I make myself clear enough... Let's say I don't give a damn, and I decide to take the abortion card everytime I find myself in a situation where we, (both the girle and the guy) didn't take all the precautions, what makes that universally wrong? Good and bad is too subjective to me, they're just opinions based on culture, and there are a lot of cultures. I'm not saying you're wrong, I'm saying that I don't get what your point is in the end. It is an interesting debate though.

    The Soapbox

  • Abortion
    _ _Zorro_

    The opinion is not what's arrogant. It's your tone, the way you say things. You are arrogant ans it has been told numerous times on this thread, you maybe should think about that, I think you should learn to communicate. I downvoted you numerous times too by the way, I don't like reading your posts, wonder why... Have a nice day.

    The Soapbox

  • Making multiple teams coexist
    _ _Zorro_

    Thank you for your answers

    Design and Architecture help csharp javascript asp-net sharepoint

  • Making multiple teams coexist
    _ _Zorro_

    Thank you jschell, What you’re describing about the BL is more or less what we started. We made a project where we allow other developers to override the implementation of our functions. If we find that/those DLLs then we use theirs otherwise we use ours. It works great actually. But the main concern is the UI. We do not want to have to maintain a lot of duplicated (replaced) pages. What we were thinking was to expose some events and let them write their code dynamically. It would be interpreted at runtime. What do you think about that solution? Do you see any inconvenient I may be not anticipating? Thanks again.

    Design and Architecture help csharp javascript asp-net sharepoint

  • Making multiple teams coexist
    _ _Zorro_

    Hi, I'll make it short and clear (I hope). We have two teams developping our product, the R&D and the 'Integrators'. I'm not sure how the Integrators are called in english, maybe TPAM (Third Party Application Maintenance), anyway, let's say that Integrators = People working on the base product, adding or changing functionalities for a specific customer. And the R&D team beeing in charge of doing what's common to all of them (the customers). The R&D team is in charge of developping functionalities available to all our customers, and the other team only does specific developments for specific customers. The problem we're dealing with is that both teams may develop on the same web pages, controls, business logic etc. What happens is that our Release Manager deploys what the R&D team has been doing in some sort of common workspace, and he can't be aware of what's from one team or another, so a lot of times, the Integrators work is lost and our release manager spends hours finding the 'lost changesets' and re applying those modifications. We're need to solve this problem and what we came with far now is to develop some sort of API exposing all the common asp.net events (page_init, load, render, etc.), we also should fire events when entering/exiting BL and DAL functions allowing the Integrators to develop 'manually', maybe injecting some asp.net code into the existing pages, also some code behind, javascript, etc. I'm not really sure if this is a reasonable idea or not, we've just been thinking for like 10 minutes and I wondered what did you recon in this kind of situations. This is just an idea, because they may develop everywhere... Web, BL, DAL and Database (we have a project for that). Just to be clear, we're developing a product, I'm not sure how it's technically called in English but our application will keep growing over time so we really need to do this right otherwise it will cost us a lot of time and money to correct that later when we'll have people using our 'API' (I'm calling this an API but I may be wrong about that) Anyway, we're stuck here, I hope I was clear enough, if not tell me and I'll try again! Thanks in advance PD: I posted this in the ASP.NET and Design and Architecture forums, I apologize if this is not ok and you're free to delete one of them.

    ASP.NET help csharp javascript asp-net sharepoint

  • Making multiple teams coexist
    _ _Zorro_

    Hi, I'll make it short and clear (I hope). We have two teams developping our product, the R&D and the 'Integrators'. I'm not sure how the Integrators are called in english, maybe TPAM (Third Party Application Maintenance), anyway, let's say that Integrators = People working on the base product, adding or changing functionalities for a specific customer. And the R&D team beeing in charge of doing what's common to all of them (the customers). The R&D team is in charge of developping functionalities available to all our customers, and the other team only does specific developments for specific customers. The problem we're dealing with is that both teams may develop on the same web pages, controls, business logic etc. What happens is that our Release Manager deploys what the R&D team has been doing in some sort of common workspace, and he can't be aware of what's from one team or another, so a lot of times, the Integrators work is lost and our release manager spends hours finding the 'lost changesets' and re applying those modifications. We're need to solve this problem and what we came with far now is to develop some sort of API exposing all the common asp.net events (page_init, load, render, etc.), we also should fire events when entering/exiting BL and DAL functions allowing the Integrators to develop 'manually', maybe injecting some asp.net code into the existing pages, also some code behind, javascript, etc. I'm not really sure if this is a reasonable idea or not, we've just been thinking for like 10 minutes and I wondered what did you recon in this kind of situations. This is just an idea, because they may develop everywhere... Web, BL, DAL and Database (we have a project for that). Just to be clear, we're developing a product, I'm not sure how it's technically called in English but our application will keep growing over time so we really need to do this right otherwise it will cost us a lot of time and money to correct that later when we'll have people using our 'API' (I'm calling this an API but I may be wrong about that) Anyway, we're stuck here, I hope I was clear enough, if not tell me and I'll try again! Thanks in advance PD: I posted this in the ASP.NET and Design and Architecture forums, I apologize if this is not ok and you're free to delete one of them.

    Design and Architecture help csharp javascript asp-net sharepoint

  • Data on one server, structure on another [modified]
    _ _Zorro_

    Mycroft Holmes wrote:

    possibly we have simpler deployments

    Heh :) We have quite complex deployment issues right now indeed. We're maintaining a lot of branches for our customers. And it's not always as easy as it's supposed to be when the time has come to merge all the stuff together after a long period of time.

    Database database sql-server sysadmin question

  • Data on one server, structure on another [modified]
    _ _Zorro_

    smcnulty2000 wrote:

    I'm curious enough to continue researching this but let us know if you decide on a solution.

    I don't think there's one... but I will let you know if I find one, indeed.

    Database database sql-server sysadmin question

  • Data on one server, structure on another [modified]
    _ _Zorro_

    Here's why: CREATE SYNONYM [ schema_name_1. ] synonym_name FOR <object> <object> :: = { [ server_name.[ database_name ] . [ schema_name_2 ].| database_name . [ schema_name_2 ].| schema_name_2. ] object_name } USE tempdb; GO -- Create a synonym for the Product table in AdventureWorks2008R2. CREATE SYNONYM MyProduct FOR AdventureWorks2008R2.Production.Product; GO -- Query the Product table by using the synonym. USE tempdb; GO SELECT ProductID, Name FROM MyProduct WHERE ProductID < 5; GO Maybe I'm not seeing it, but how would you manage to use the same procedure and call different databases depending on who called the procedure? Let's say we have db1 and db2 and we're doing: SELECT A, B, C FROM dbo.Table What I need is to call the data from db1 if the application made the call, but go read the data on db2 if the call was made by the build server (the unit/integration tests).

    Database database sql-server sysadmin question

  • Data on one server, structure on another [modified]
    _ _Zorro_

    It works fine for us, but we still have to do some stuff manually. We start having huge problems when humans begin to interact. That's actually why we wanted to validate each deployment step, because there's always something wrong. A file not merged correctly, something forgotten on the database, etc. and it implies a big loss of time to go and repair everything... each time... I suppose your humans are better than ours! :)

    Database database sql-server sysadmin question

  • Single row for multiple results
    _ _Zorro_

    Hi, According to this stackoverflow thread [^], it should work. Don't know why it doesn't work for you... Did you try replacing CHAR(13) + CHAR(10) with "\r\n" just to try? Edit: Maybe you should take a look at this example too: [^]

    Database tutorial

  • Single row for multiple results
    _ _Zorro_

    STUFF is what you're looking for indeed.

    Database tutorial

  • Data on one server, structure on another [modified]
    _ _Zorro_

    Mycroft Holmes wrote:

    Still does not make sense to me. Why not take a copy of the procedures and run them on the test server.

    Because we're using continuous integration with tfs 2010, and want to launch the test sets while the build server is... building. If we have to copy our stored procedures to the test database then this will require a manual action each time a sp is updated, which I think, is a bad idea. Less humans around, less problems. Apart from checking bugs, we'd also like to guarantee that the deploy succeed regardless of the environment (dev, tst, post test, production). I know this seems a bit strange since we should only test on one of those, but we have numerous errors due to deployment issues (large amount of files to merge, a lot of manual actions) and we'd like to prevent that, or at least, be warned as soon as possible. Thanks

    Database database sql-server sysadmin question

  • Data on one server, structure on another [modified]
    _ _Zorro_

    That's not bad, but still, requires me to update all my stored procedures... not cool! :sigh:

    Database database sql-server sysadmin question

  • Data on one server, structure on another [modified]
    _ _Zorro_

    djj55 wrote:

    This rings a bell but I cannot remember.

    Ok, thanks for your time! :)

    Database database sql-server sysadmin question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups