Viewing 15 posts - 3,316 through 3,330 (of 13,462 total)
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
i don't think there's a limit on RAM;
the default setting is 2048 terabytes of ram as the default maximum setting until you change it to something less than what is...
June 4, 2013 at 1:32 pm
Howard I have 2012, but I'm not sure where, specifically, you are talking about where the objects get bracketed by the quotename() function;
do you mean when you script an object?...
June 4, 2013 at 1:27 pm
GabyYYZ (6/4/2013)
SQLRNNR (6/4/2013)
GabyYYZ (6/4/2013)
Back...what I miss?We are busy writing the DR plan for SSC and RedGate. Nothing big.
Ahhh...in our company, we consider naivete and blissful ignorance as sound DR...
June 4, 2013 at 12:10 pm
sachin6139 (6/4/2013)
June 4, 2013 at 11:51 am
i had to add one more alias near the end to get this to parse correctly in SQL:
(also several columns are using reserved word names: xxxSTAFF.[File],xxxBanks.[Desc], xxxPayrollBankGroups.[Group])
...
FROM [xxxOES Absence 2006...
June 4, 2013 at 10:37 am
Viewing 15 posts - 3,316 through 3,330 (of 13,462 total)