Viewing 15 posts - 3,796 through 3,810 (of 7,496 total)
I downloaded it last Friday (2009-04-10) and just wanted to let you know it the install on my 32-bit Dev Edtn instance went fine.
Initial test seem OK.
We currently don't have...
April 14, 2009 at 5:03 am
FYI Lynn also posted a nice overview of common date routines.
http://www.sqlservercentral.com/blogs/lynnpettis/archive/2009/03/25/some-common-date-routines.aspx
April 14, 2009 at 1:55 am
If you have the dba edition, you should be able to do far more then reverse engineer and forward engineer.
http://sqlblogcasts.com/blogs/simons/archive/tags/Data+Dude/default.aspx
April 14, 2009 at 12:27 am
Indeed, must have been a dyping error 😉
April 13, 2009 at 11:59 pm
INFORMATION_SCHEMA views also work with pre sql2005 versions.
To only select actual tables you need to add the where clause
Where TABLE_TYPE = 'BASE TABLE'
April 13, 2009 at 1:28 pm
did you test this ?
Select datediff(dd, dateadd(mm,-18,getdate(), getdate)
i.e. determine the number of days ( dd ) between the getdate minus 18 months (12+6) and the current date.
It will not hurt...
April 13, 2009 at 1:14 pm
here's an example we tested to restrict some non-sa (but dbo) actions.
In your case you'll need to check for event type "DROP_TABLE".
/****** Object: DdlTrigger [ddlDatabaseTriggerNonSA] Script...
April 13, 2009 at 1:10 pm
AFAIK, you cannot do this with the active job.
What I mean is that you can modify a job step using msdb.dbo.sp_update_jobstep
but those modifications will only get active with the...
April 13, 2009 at 1:04 pm
I haven't experimented with the migration assistant for oracle, but the one for access also has an option to migrate the data.
April 13, 2009 at 7:56 am
So you were able to create the tables (please create them in their own database, and not in any of the system databases (master, msdb, tempdb, model))
Maybe using the GUI...
April 13, 2009 at 6:42 am
great solution Bob.
Nice application of outer apply. Still have to get used to that feature 😎
April 13, 2009 at 3:44 am
start with:
Select ...
from information_schema.tables
where table_name like '%yourcryteria%'
order by table_name
April 12, 2009 at 11:07 am
Just like the others, I would suggest to first concentrate on TSQL, Management studio and sqlserver organisation (detailed if needed), then you'll get to sqlcmd for deployment facilities,...
April 12, 2009 at 11:06 am
If this is a single shot action (migration ?) it may be best to use Microsofts migration assistant for Oracle. It can be downloaded free from here :
http://www.microsoft.com/sql/migration/
This may...
April 12, 2009 at 9:32 am
barryocteau (4/11/2009)
April 12, 2009 at 9:29 am
Viewing 15 posts - 3,796 through 3,810 (of 7,496 total)