Viewing 15 posts - 6,406 through 6,420 (of 13,460 total)
my issue with it is that no matter how long you wait between the clicks to "add 30 seconds", 30 seconds + 30 seconds = 60 seconds....
Lowell
November 15, 2011 at 10:32 am
if you watch the first video, it does a quick demo showing how the schema is migrated, and then how data requires a seperate click/call, so you'll get your...
Lowell
November 15, 2011 at 6:01 am
duplicate thread:
follow it all here where the detailed answers exist:
http://www.sqlservercentral.com/Forums/Topic1205779-146-1.aspx
Lowell
November 15, 2011 at 6:00 am
duplicate thread:
follow it all here where the detailed answers exist:
http://www.sqlservercentral.com/Forums/Topic1205779-146-1.aspx
Lowell
November 15, 2011 at 5:59 am
rocky@123 (11/15/2011)
could anyone provide the step by step process for migrating the oracle data(only specific objects) to Sql Server using SSMA tool..Thanks
looks like there is a series of videos here...
Lowell
November 15, 2011 at 5:55 am
the code you posted points to two different folders; 'C:\SQLServerFiles\serviceMasterKey'
and 'C:\SQLServerFiles\TDE\serviceMasterKey'
could that have been the issue? the extra folder?
Lowell
November 14, 2011 at 5:58 pm
something like this?
select [Years] = datediff(year,0,ET-ST)-1,
[Months] =...
Lowell
November 14, 2011 at 1:59 pm
not sure about an Alert, but certainly from a scheduled job; i simply use IF EXISTS...sp_send_dbmail
i use this a lot actually, here's a rough example:
IF EXISTS(SELECT *
...
Lowell
November 14, 2011 at 1:19 pm
for reference, this DDL trigger worked for me;
ALTER TRIGGER [Create_Database_Trigger]
ON ALL Server
WITH EXECUTE AS 'sa'
FOR Create_Database -- Captures a Create Database Event
AS
DECLARE
...
Lowell
November 14, 2011 at 10:09 am
somewhere in there you need something like this: that was a partial from my own version of a DDL trigger:
DECLARE @msg XML
SET @msg = EVENTDATA()
--replace also msg. with @msg.
Lowell
November 14, 2011 at 9:56 am
GilaMonster (11/14/2011)
Lowell
November 14, 2011 at 9:21 am
sounds like a networking issue with the WINS(Windows Internet Name Service)
are you on a network with a primary domain controller providing that service, or just happen to be on a...
Lowell
November 14, 2011 at 8:53 am
PaulB-TheOneAndOnly (11/14/2011)
About tools... yes!... Brain 1.0 has been very useful 🙂
kewl! where can i download that?! 😀
Lowell
November 14, 2011 at 6:09 am
shubham.saxena67 (11/12/2011)
Dear Friends,I want to convert stored procedure that containing Loops ,Table valued
functions,Scalar Function written in Oracle to SQL Procedure and functions
Is there any tool ?
Thanks!!
no, there's no...
Lowell
November 12, 2011 at 5:38 am
WinMerge has a great GUI, windiff can be called forma command line, they are for comparing two text files for differences...is that what you are after?
Lowell
November 11, 2011 at 11:40 am
Viewing 15 posts - 6,406 through 6,420 (of 13,460 total)