Viewing 15 posts - 31 through 45 (of 54 total)
ckmoied ,
Sergiy is correct. Please do use INSERT statements. If you should find a need to use Enterprise Manager for appending new rows, you should be able to quickly write...
September 26, 2007 at 6:00 am
Cherie_Bonnici,
Sergiy is correct. You will have to explicitly convert DateTime to Varchar when concatenating values in a PRINT statement. For more details regarding "CAST/CONVERT' see the following link: http://msdn2.microsoft.com/en-us/library/aa226054(SQL.80).aspx
Quick Example:
declare...
September 26, 2007 at 5:47 am
Verl,
This is the implementation that I can think of right away and may not take much time to produce and even create a template, assuming that you can use table...
September 25, 2007 at 8:15 am
Duplicate Posting......
See http://www.sqlservercentral.com/Forums/Topic402003-8-1.aspx
Regards,
Wameng Vang
September 24, 2007 at 11:37 pm
goodguy,
The following implementation assumes that the foreign keys have the same column names in the respective tables. If should find that the following example does not work, please double check...
September 24, 2007 at 11:35 pm
Looks like someone read the documentation.... awesome... LOLz....
September 24, 2007 at 11:14 pm
In response to the original post,
From my past experiences, this is the closest example I can think of. The example uses SQL_Variant_Property() System MetaData Function, which should be present in both...
September 24, 2007 at 9:58 pm
Carlos,
There are a number of ways to accomplish this. The implementation will depend on the requirements.
Options:
1. Create a DTS/SSIS package to extract, transform, and load the data into staging tables.
2....
September 24, 2007 at 9:38 pm
|
September 24, 2007 at 9:04 pm
Please post the structure of the two views, and maybe even the table structures, along with the indexes, this way we can...
July 13, 2007 at 10:24 am
Yeap...
Almost the same logic, I chose my way simply so that I can explain, to the original post, the steps, mathematics and logic.
Regards,
June 1, 2007 at 12:08 pm
Here's a similar solution to Lynn's:
CREATE FUNCTION dbo.fn_BRound (
@TestValue decimal(38,12),
@pos int
)
RETURNS money
as begin
return
round(@TestValue,@pos,
June 1, 2007 at 9:15 am
Can you provide the structure of these four tables, and possibly the query that you are using? With this, we can provide you more detailed help.
Regards,
May 22, 2007 at 7:17 am
Please keep it nice and clean, I was a bit confused on the table because the descriptions were unclear. From your email, intWebID is contained in tblItem not tblContent. After...
April 24, 2007 at 1:29 pm
Viewing 15 posts - 31 through 45 (of 54 total)