Viewing 15 posts - 3,316 through 3,330 (of 13,469 total)
Michelle-138172 (6/5/2013)
June 5, 2013 at 2:10 pm
so much of it depends on how it was presented, also;
As a veteran of more than a couple of posts here,
How well the question is phrased directly affects...
June 5, 2013 at 1:47 pm
Michelle-138172 (6/5/2013)
June 5, 2013 at 1:09 pm
luis covered a couple important points i wanted to mention again: you'll need a new column for the ClientId in there somewhere.
we've done this in the past, and the way...
June 5, 2013 at 1:05 pm
Michelle-138172 (6/5/2013)
June 5, 2013 at 12:53 pm
glycere2000 (6/5/2013)
June 5, 2013 at 12:08 pm
glycere2000 (6/5/2013)
June 5, 2013 at 9:42 am
lsalih (6/5/2013)
1- A time stampt for record creation in a table, a time stamp shows...
June 5, 2013 at 8:53 am
sure, just run sqlcmd /? to see the defaults, but BOL for details:
sqlcmd /?
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\lizaguirre>sqlcmd /?
Microsoft (R) SQL Server Command...
June 5, 2013 at 7:20 am
this is syntactically correct, and what i think you were looking for:
now you will NOT use the procedure, but run this command instead.
MERGE INTO linked.dbo.student tgt
USING linked.dbo.studentdetails src
ON src.[StudentID] =...
June 4, 2013 at 2:58 pm
run this command with the original/unaltered version of generate_merge , and copy and paste the results:
EXEC [dbo].[generate_merge]
@SrcDB = LINKEDCP,
@SrcSchema = dbo,
@SrcTable = student,
@TgtDB = LINKEDCP,
@TgtSchema = dbo,
@TgtTable = totalstudent,
@predicate =...
June 4, 2013 at 2:43 pm
don't modify the procedure.
paste the results of the procedure for your table here.
we can help you modify the results,a nd you'll execute those modified results instead.
for example, after formatting, my...
June 4, 2013 at 2:16 pm
i knew there was a dmv with this info (select * from sys.dm_exec_sessions) , but i had to google it myself to be sure;
this blog has a nice explanation and...
June 4, 2013 at 2:02 pm
we don't need the source code in this case, we just need to see the exact command you are trying to execute, i think;
exec [generate_merge] 'CDM','dbo','tbstate','CDMLIVE','dbo','tbstate',@debug=1
the issue with the code...
June 4, 2013 at 1:58 pm
Viewing 15 posts - 3,316 through 3,330 (of 13,469 total)