Viewing 15 posts - 9,661 through 9,675 (of 14,953 total)
How about creating a synonym in one of the databases for the objects in the other database? That should allow what you need.
May 1, 2009 at 11:59 am
I discovered the feature (the go-to-page thing) by accident. Was a couple of months ago, I think.
May 1, 2009 at 11:52 am
For something like that, I probably would use a cursor to step through the codes.
To avoid blowing up the tran log, I'd probably add a log backup step after every...
May 1, 2009 at 11:51 am
Next thing to try is changing this:
WHERE @pFromDt = CAST(FLOOR(CAST( HRS.ACT_END_DT AS float)) AS datetime)
to:
WHERE HRS.ACT_START_DT >= @pFromDt
AND HRS.ACT_END_DT <= @pToDt + 1
It might also help if you have an...
May 1, 2009 at 10:08 am
The first thing to do is try this:
SELECT
CONVERT(nvarchar(30), EIN) AS EIN,
ORG_NM,
CAST('' AS VARCHAR(50)) AS ORG_ADDR,
...
May 1, 2009 at 9:53 am
Might not be a bad idea. I haven't tested something like that, but it would seem that it would allow for easier scale-out.
May 1, 2009 at 9:32 am
First, the execution plan would be key to helping you solve this. Please save it, zip it, and upload the zipped file.
Second, which one of the three objects in...
May 1, 2009 at 8:51 am
So if I understand you correctly, I have two tables:
Table 1 - the holding table for the full file.
Table 2 - the final table that the production data is in.
1)...
May 1, 2009 at 7:15 am
You could probably accomplish that with SSIS pretty easily. Output the data and calculations to a file, and then copy the file to the printer port.
May 1, 2009 at 7:04 am
Florian Reischl (5/1/2009)
john.arnott (4/30/2009)
By the way, your English is very good -- I hope you were kidding when you asked if it's "that bad".
I would say it was a little...
May 1, 2009 at 7:01 am
Take a look at Red Gate's MultiScript tool. Might be what you're looking for.
April 30, 2009 at 2:21 pm
The easiest way to do this would be get a product that does it for you. Red Gate's SQL Doc will probably do what you want, and then a...
April 30, 2009 at 2:17 pm
Then you just need to change the letters in that part of the select to whatever state abbreviation is appropriate.
April 30, 2009 at 2:12 pm
Sorry, assuming a bit here, aren't I?
What I'm suggesting is import the CSV into a holding table, then using that to batch-update the real table.
You'd start out by downloading the...
April 30, 2009 at 2:08 pm
You're welcome.
April 30, 2009 at 1:59 pm
Viewing 15 posts - 9,661 through 9,675 (of 14,953 total)