Viewing 7 posts - 1 through 7 (of 7 total)
thanks Sue, I did make the transactional replication working between SQL 2008R2 publisher with SQL2017 distributor and subscribers. I always uses script other than GUI, that's why I was confused...
October 14, 2018 at 5:57 pm
Don't know whether is this you looking for. You can always use print to print out the query to check.
DECLARE @sql_str nvarchar(max)
DECLARE @RNum varchar(max)
DECLARE @County varchar(max)
DECLARE @Year varchar(max)
SELECT @sql_str =...
July 24, 2012 at 12:04 am
You can't change an existing column to identity, but you can have two options:
1.create a new table with identity column, then insert value from your old table(Table1)
2.create a column in...
July 15, 2012 at 11:51 pm
Thanks for all your reply.
Probably, I need add a date format field on my template table, and using SET DATEFORMAT at the beginning of the dynamic query and try ISDate()...
June 5, 2012 at 7:18 pm
Michael Valentine Jones (6/5/2012)
What is the actual format of the strings that you are trying to convert to datetime?
Hi Michael,
The project is loading a csv file into a staging table...
June 5, 2012 at 6:40 pm
Gianluca Sartori (6/5/2012)
However, that would require changing the function...
June 5, 2012 at 5:29 pm
Can you establish a PPTP connection between the client and the server router? Nowadays, most of serve router can act as a PPTP server, If you can do this, connecting...
April 30, 2012 at 1:07 am
Viewing 7 posts - 1 through 7 (of 7 total)