Viewing 15 posts - 2,296 through 2,310 (of 2,469 total)
Don't know why it says datatype and not function though...
Don't shoot - I'm only the messenger!
May 19, 2005 at 3:10 pm
Here's something my googling fished out...
Conversion of "NOW()" Access datatype in SQL Server 2000 datatype - GETDATE()
May 19, 2005 at 2:55 pm
Yes Amit - this is true!
I just don't know of people who actually change the extensions preferring to go with the SQL Server defaults!
May 19, 2005 at 1:37 pm
Remi - I found that if you go to the Results tab instead and select "Tab Delimited" in the Results output format then you get your wish ...query & results...
May 19, 2005 at 1:05 pm
Thanks Noel!
It's amazing how one post spawns another...no end to the invaluable information on this site!
May 19, 2005 at 12:48 pm
My question too....you didn't mean grid right ?!
May 19, 2005 at 12:35 pm
Et Voila! Thanks a million Noel - Ron!
Remi - You're too modest!
ps:I wonder how that darn thing got checked in the first place - I'm the only one in the...
May 19, 2005 at 12:20 pm
What would you get if you ran:
SELECT DATABASEPROPERTYEX(N'DBName', N'RECOVERY')
and
SELECT DATABASEPROPERTY(N'DBName', N'RECOVERY')
in Query Analyzer ?
May 19, 2005 at 10:35 am
Maybe therein lies the key to the solution - the fact that it's running a function "databasepropertyex" on something that still recognizes only the old (sql 7.0) function "databaseproperty"....?!?!
May 19, 2005 at 10:32 am
If you want to change the properties at least you can do so using t-sql via Query Analyzer - & view them using sp_dboption.
I guess what I'm trying to...
May 19, 2005 at 8:00 am
Chris - wouldn't there be only one .mdf in the primary filegroup - I thought all other datafiles created get the default .ndf extension ?!?!?!?!
May 19, 2005 at 6:49 am
Could you explain a little more ?!
For instance are Detail1 & Detail2 part of a single ID?!
Would there always be only 2 details associated with each ID ?
How...
May 18, 2005 at 6:09 pm
What if you tried using
exec sp_dboption 'dbname' in Query Analyzer ??
May 18, 2005 at 6:05 pm
You can attach a single file using:
exec sp_attach_single_file_db @dbname = 'dbname',
@physname = 'C:\Program Files\Microsoft SQL Server\Data\xxxData.mdf'
May 18, 2005 at 5:28 pm
Viewing 15 posts - 2,296 through 2,310 (of 2,469 total)