Viewing 15 posts - 91 through 105 (of 106 total)
Retrieving data from another database on the same server is very straightforward. E.g. from the master database you can issue the command SELECT * FROM pubs..sales (no need to specify...
February 26, 2004 at 2:54 am
Bear in mind that the answer has been changed since the original posting. When I responded, both answers 2 and 3 stated database name and not filename.
This was corrected but no...
February 17, 2004 at 6:43 am
I'm just wondering why "use DTS" isn't an option - it's a far better method than 1 and 4...
There are many ways to do this (as the footnote to the...
February 16, 2004 at 5:54 am
Replies are split right down the middle between restoring using the logical database name and restoring using the physical database name. This seems to be evidence that people didn't have...
February 16, 2004 at 2:58 am
Oh come on guys! Theres no such thing as the 'Windows Application Application Log'. It is just called the 'Windows Application Log' - viewed using the 'Event Viewer' application
February 5, 2004 at 3:54 am
O.K. so I got it wrong (again)! Is SQL 2000 different to SQL 7.0 in that it doesn't save the ISS file by default?
According to Books Online for 7.0 :
By default, when...
February 3, 2004 at 3:06 am
I'm suprised that noone has suggested using COALESCE. This uses the first non null value in a list of values. So how about replacing
-ISNULL(((KRE_MED_14),0)
with
-COALESCE(KRE_MED_14,0) etc.
January 23, 2004 at 2:52 am
oops sorry! Didn't read the question properly. I thought we were trying to dissable index hints for just one connection.
January 16, 2004 at 4:46 am
How do you set a trace flag for a connection? If the app is connecting through it's own logon, how do you 'get at' that connection to set the flag...
January 16, 2004 at 4:39 am
We also have a policy of always using character months (eg '19 Dec 2003'), however, we came a cropper when we opened an office in Switzerland - where they use...
December 19, 2003 at 2:57 am
OK so the answer was wrong and we want our points back - but not at the cost of losing the QOD section!
I look forward to the...
December 17, 2003 at 3:00 am
quote:
That means that you now have to have 1 million unique last order dates in your table.
November 21, 2003 at 7:49 am
You are correct that you wouldn't normally want to have clustering on a volatile column. However, this doesn't seem to be that volatile and there are no other indices to...
November 21, 2003 at 5:44 am
Only a clustered index will solve this problem. You can only have one of these so you must drop the existing cluster.
Hands up all thise who didn't spot the change...
November 21, 2003 at 4:49 am
Viewing 15 posts - 91 through 105 (of 106 total)