Viewing 15 posts - 331 through 345 (of 650 total)
Leaving aside the issue of what type of database principals you'd assign (but I agree entirely with the use of roles) here is the sort of code I'd use to...
January 11, 2010 at 4:23 am
While we are waiting for more information, this is how I'd tackle the problem as I understand it... (actually, I'd make sure there was a primary key before I'd do...
January 11, 2010 at 2:37 am
It wasn't Ada King but Ada Byron (her real name) or Ada Lovelace (husband's name) who was the first programmer.
On 8 July 1835, Ada Byron married William King, 8th Baron...
January 7, 2010 at 1:45 am
. That's like saying we should have more women in the mining industry."
If we accept the research published by the 'Women in Mining' organization (who would, I'm sure, disagree with...
January 6, 2010 at 2:57 am
But for many women, their thinking patterns are predisposed another way. This is what brings a different perspective to any endeavor
Is this a cultural or innate difference? What research do...
January 6, 2010 at 2:29 am
I haven't tried this yet, but it says it allows you to make SQL queries to an OLE DB database
http://www.logicainformatica.it/NewSite/CosaFacciamo/DispositiviMobili/iPhone/RemoteQuery_en.html
January 4, 2010 at 3:17 pm
...security problems of using an Iphone or Android to RDP to a server...
With the iPhone, you can set up a VPN link. I haven't heard of any security hole...
January 4, 2010 at 2:54 pm
Yes, if I could only use a small bluetooth keyboard with it, the thing would be nigh-on perfect.
January 4, 2010 at 1:48 am
Yes, give it a look. The original routine took 19 minutes to run. We now have entries in the 5 seconds region and each revision is pushing the speed up....
December 7, 2009 at 7:40 am
[p]Yes. I put everything in MS_Description because this is the only thing that is accessible to SSMS. I then put a YAML structure into the string so I can do...
December 3, 2009 at 11:38 am
I know it is a bit of a trip down memory lane now, but Robyn Page and I wrote an article in 2007, SQL Server Excel Workbench[/url] (http://www.simple-talk.com/sql/t-sql-programming/sql-server-excel-workbench/) describing various...
December 3, 2009 at 8:45 am
Simple Talk has just published Donald Knuth as Geek of the Week[/url] on http://www.simple-talk.com/opinion/geek-of-the-week/donald-knuth-geek-of-the-week/. Donald Knuth is in the list of people interviewed in the 'Coders at Work' book....
November 27, 2009 at 10:27 am
November 24, 2009 at 6:57 am
[font="Courier New"]SELECT SCHEMA_NAME(tbl.schema_id) AS [Table_Schema],
tbl.name AS [Table_Name],
clmns.name AS [Column_Name],
p.name AS [Name],
CAST(p.value AS SQL_VARIANT) AS [Value]
FROM sys.tables AS tbl
INNER JOIN sys.all_columns AS clmns ON clmns.OBJECT_ID=tbl.OBJECT_ID
INNER JOIN sys.extended_properties AS p ON p.major_id=clmns.OBJECT_ID
AND p.minor_id=clmns.column_id
...
November 24, 2009 at 6:40 am
Unfortunately, a production database administrator isn't necessarily for the design of the database or for writing the SQL.
Sure, this topic is more for the database developers in the community....
November 19, 2009 at 9:59 am
Viewing 15 posts - 331 through 345 (of 650 total)