Viewing 15 posts - 196 through 210 (of 429 total)
Yes, it was a serious question. I always figured it was a throwback to the days when monitors could only display upcase chars. At least that's all my apple II+...
---------------------------------------
elsasoft.org
June 18, 2007 at 5:48 pm
fyi, in 2008 we will finally have arrays natively in sql:
https://connect.microsoft.com/SQLServer/content/content.aspx?ContentID=5507
---------------------------------------
elsasoft.org
June 15, 2007 at 9:19 pm
very much agree on the all caps. so why is it that so many sql devs write the keywords such as SELECT in ALL CAPS?
when it comes to sql it...
---------------------------------------
elsasoft.org
June 15, 2007 at 9:04 pm
in 2005 it's not OWNER anymore, but SCHEMA:
LINKEDSERVER.DATABASENAME.SCHEMA.OBJECTNAME for REMOTESERVER
DATABASENAME.SCHEMA.OBJECTNAME for LOCAL SERVER DBs.
---------------------------------------
elsasoft.org
June 15, 2007 at 9:01 pm
agreed, better to keep historical data in another db, not csv. if it's in csv only, it's impossible to access it unless you load it into a db again. so...
---------------------------------------
elsasoft.org
June 15, 2007 at 8:59 pm
here's an alternative for scripting objects in an automated way using a console app:
http://www.codeplex.com/scriptdb
open source so you can tweak it if you need to.
---------------------------------------
elsasoft.org
June 15, 2007 at 8:55 pm
you could export the data using bcp.exe, then import it to oracle using SQL*Loader
---------------------------------------
elsasoft.org
June 15, 2007 at 8:54 pm
I wrote a console app hosted on codeplex that will script out all objects for any 2000 or 2005 database. since it's a cmd line app it would be very...
---------------------------------------
elsasoft.org
June 15, 2007 at 8:51 pm
you should name the property MS_Description, not Description. if you do that, your comment will be picked up by the MS tools like SSMS, etc.
---------------------------------------
elsasoft.org
June 15, 2007 at 7:25 pm
you might also check out this open source app I wrote for scripting objects and data from any 2000 or 2005 db: http://www.codeplex.com/scriptdb
it makes it easy to automate generating...
---------------------------------------
elsasoft.org
June 15, 2007 at 12:11 am
you might also want to check out SqlSpec (in my sig below). with it you can generate docs for any database, and also edit the extended properties for all objects...
---------------------------------------
elsasoft.org
June 15, 2007 at 12:06 am
you could also create a logon trigger:
http://technet.microsoft.com/en-us/library/bb326598(SQL.90).aspx
---------------------------------------
elsasoft.org
June 15, 2007 at 12:01 am
best is: don't do it at all. read this first if you think EAV is the way to go:
http://weblogs.sqlteam.com/davidm/articles/12117.aspx
---------------------------------------
elsasoft.org
June 14, 2007 at 11:58 pm
SqlSpec will do this for you if you choose the "document permissions" option, or pass "/y 1" on the command line. Also the eval version is free. See the link...
---------------------------------------
elsasoft.org
June 14, 2007 at 3:07 pm
I would think that loading into a staging table with bcp is the way to go, even if this is not a one-off.
it will be much more maintainable to write...
---------------------------------------
elsasoft.org
June 11, 2007 at 9:45 am
Viewing 15 posts - 196 through 210 (of 429 total)