Viewing 15 posts - 1 through 15 (of 17 total)
Vijaya Kadiyala (4/8/2009)
Jeff Moden (4/7/2009)
I've not read all the posts on this thread, but why not just use replication for this?
Hi jeff, this is not about replication.:-D Its about moving...
April 8, 2009 at 5:51 pm
until I build a System of Records applications
I would like to take this issue into a different direction. As I mentioned above, I am in the planning phase...
April 7, 2009 at 6:40 pm
Is this domain type??
No it is not. One of the legacy applications (A) uses 'Access_Level' as VARCHAR which only uses "1", "2", "3",....."8". The second application (B) uses the 'Access_Leval'...
April 7, 2009 at 6:02 pm
Do I have to use CAST/CONVERT when I change data type from [VARCHAR] to [int]? My VARCHAR has only values of "1", "2", "3", .... "8". I read something about...
April 7, 2009 at 5:49 pm
I have to ask, what are you going to do when you find out that they're equal or not?
I was trying to find which records in table A that not...
April 7, 2009 at 2:19 pm
When you say compare, you want to find the records which are not in another table or find teh common records or !!
In either case If you use FULL...
April 7, 2009 at 2:17 pm
Table 'ClientsDB.Users' is in 'MyClientsDB' database and table 'MarketingDB.Users' is in 'MyMarketingDB'. Table 'ClientsDB.Users' has 12,000 records that I want to copy to 'MarketingDB.Users'. I got the number of records...
April 7, 2009 at 2:12 pm
Lynn Pettis (4/4/2009)
First, I was slightly confused, as the code Lowell posted uses a CTE and this is in a SQL Server 7, 2000 forum.
My bad. I am using SQL...
April 6, 2009 at 5:46 am
I changed the 20 to 64 and I am using this random string as a handshake token between two applications. My next task is to replicate this random string on...
April 4, 2009 at 7:34 pm
I think I got it. I entered 'dbo.fn_RandomString()' and it worked.
April 4, 2009 at 6:55 pm
Very nice sample. So now I have a function called 'fn_RandomString' and in the table field I set the 'Default Value for Binding' to 'fn_RandomString()'. But when records are inserted...
April 4, 2009 at 6:47 pm
Ramesh (3/14/2009)
INSERT INTO...
March 14, 2009 at 7:19 am
I know that the following will do the comparison, but I'm not sure about the update in the same code.
Select FilePath
From tblArticles
Where NOT EXISTS (Select URL
From rating_urls
Where tblArticles.filepath = rating_urls.url
)
March 13, 2009 at 7:22 pm
Viewing 15 posts - 1 through 15 (of 17 total)