Viewing 15 posts - 5,461 through 5,475 (of 5,503 total)
umar iqbal (3/24/2009)
But if you want cheap solution and ... want to save money then it would be INDIA the great. oooooo
We have a saying over here in Germany...
March 24, 2009 at 2:03 pm
umar iqbal (3/24/2009)
Japaneese, Germans, French never outsource . How they surviving?
That's definitely not true! I know a few companies that are at least trying to outsource.
Like I mentioned...
March 24, 2009 at 12:32 pm
Like I said, both of them are a kind of "dirty"...
If the data volume you need to handle allows the first option then you probably should stay with that solution,...
March 24, 2009 at 11:14 am
your procedure is basically correct and supports the existing table structure. But the table structure ist the problem. 😀
If you cannot alter the table structure you have several ways to...
March 24, 2009 at 10:39 am
It seems like there no issue on the SQL Server Side.
I haven't used ACCES in a while, but did you try requery your data and refresh the form after that?
March 24, 2009 at 1:21 am
Hi,
it looks like you're having a self-referencing foreign key (foreign key [EDucationCodedomainIdno] references the prim key [educationcodeidno] of the same table).
Obviously, there has been a delete statement that affected the...
March 23, 2009 at 6:06 pm
I'm just wondering:
is your question related to the country to outsource from or to outsource to? :hehe:
Aside of that, you're normally not outsorcing to a country but to a company....
March 23, 2009 at 4:26 pm
Hi,
after doing some extended (google) research it looks like there is no way of directly joining two SSRS datasets together.
Out there in the wide wide web two options are discussed...
March 23, 2009 at 3:56 pm
Please don't double post!
For those who are going to look deeper into this issue, answers already started at thread http://www.sqlservercentral.com/Forums/FindPost681150.aspx
Edit: link added
March 22, 2009 at 4:36 pm
Would you be a little more specific on how do determine, which Items should be used to sum for the 80%?
Example: Your requirement of "making 80% of the total Class...
March 22, 2009 at 9:44 am
a few more thoughts on your concept / code snippets:
Declare @bid int
select @bid = BrandID from Inserted
Update BrandsMachine
set BrandID = @bid
where BrandID is null
You shouldn't store the result...
March 22, 2009 at 9:02 am
Are both data sets stored in a SQL Server (e.g. SS2K5)?
If so, the easiest way would be to create a view on server side and go from there.
If not, the...
March 21, 2009 at 5:35 pm
I don't think it's the compatibility level...
Looks more like a typo: ROWNUMBER vs. ROW_NUMBER()
Underscores sometimes matter 😛
The RowNumber function is for Reporting Services.
March 21, 2009 at 6:56 am
Sorry, my original stated post was incorrect, so I had to edit (= delete) it....
March 20, 2009 at 1:12 pm
Would it be possible to change the calling procedure to handle the double call by two parameter sets?
Like
CREATE PROCEDURE [dbo].[Add_Order] (
@4FileID int null,
@4OrdererID int null,
@8FileID int null,
@8OrdererID int null
)
and handle...
March 19, 2009 at 1:41 am
Viewing 15 posts - 5,461 through 5,475 (of 5,503 total)