Viewing 15 posts - 481 through 495 (of 921 total)
It might be easiest to just get this information using SQL-DMO, where they are all properties of the column object, except for "Description"; is that an extended property?
--Jonathan
November 17, 2003 at 6:31 am
Use one file per filegroup and one filegroup per drive array. Use up to 80% of disk capacity. If your arrays are twelve-drive RAID 10 on a four-channel...
November 17, 2003 at 6:13 am
SELECT CAST(CAST(LEFT([Date],3) + 1900 AS char(4)) + '-' + STUFF(RIGHT([Date],4),3,0,'-') + ' ' +
STUFF(REPLACE(REPLACE(STR([Time]/100,8,2),'.',':'),' ','0'),4,0,':') AS datetime)
FROM StrangeDates
--Jonathan
November 17, 2003 at 6:00 am
quote:
I decided to go with adding a bitmask to the parameter table and have now found the following code to return the...
November 17, 2003 at 5:31 am
quote:
I hail thee, o mighty newborn SQL Server Guru.May thy fountain of wisdom never run dry and may thy attitude never...
November 17, 2003 at 5:11 am
quote:
You can add constraints to each table and them build a view to union the tables together. The end effect should...
November 14, 2003 at 3:09 pm
You omitted not only the percentage but also the entire option. Try:
RESTORE DATABASE DB1
FROM DISK = 'K:\Backups\DB1.bak'
WITH
MOVE 'DB1_Data' TO 'k:\SQL\DB1_data.mdf'
,MOVE 'DB1_Log' TO 'l:\SQL\DB1_Log.ldf'
,REPLACE
,STATS
--Jonathan
November 14, 2003 at 2:44 pm
quote:
Can you think of any logical reason why a referenced key would need to be unique? I haven't checked this in...
November 14, 2003 at 2:22 pm
quote:
So if we do use the /PAE and only have 4GB, is that ignored or should we remove it?Darren
November 14, 2003 at 2:00 pm
sp_msforeachtable 'SELECT TOP 5 * FROM ?'
--Jonathan
November 14, 2003 at 1:08 pm
quote:
quote:
but if one wants just the ID to be a foreign key then one...
November 14, 2003 at 12:30 pm
quote:
So if we turn that off and reboot, it should access more than 2GB, correct?Darren
Set...
November 14, 2003 at 11:22 am
Don't use AWE with only 4GB of memory in the server; use just /3GB. AWE is for managing memory above the 4GB boundary.
--Jonathan
Edited by - Jonathan on 11/14/2003 ...
November 14, 2003 at 10:10 am
quote:
Would it help if you made the ID column in the "one" table your primary key, then create an index on ID...
November 14, 2003 at 9:49 am
Viewing 15 posts - 481 through 495 (of 921 total)