Viewing 15 posts - 46 through 60 (of 345 total)
same windows and sql server hot fixes?
I guess this could be affected by something like fragmentation or location of files or buffer space available/what is already cached.
Think I'm saying I...
December 7, 2010 at 10:13 am
Does it need a format fie?
try -t|
to specify the field terminator.
December 7, 2010 at 7:41 am
Obvious.
The setup has invoked something and that has returned an error.
Don't think it needs flowers but you could try yellow ones next to the server :).
I take it nothing useful...
December 7, 2010 at 7:38 am
have a look at cross apply.
You can call a function for each row of a resultset and return a resultset.
Not sure that's what you want to do but sounds something...
December 7, 2010 at 7:32 am
There are a number of ways but I would go with bcp if possible.
If needed it will take a querry as input and if necessary you can format the row...
December 7, 2010 at 6:50 am
In management studion right click on the server (need to add the analysis services server if not already there) properties, security.
December 7, 2010 at 5:53 am
The main issue is finding last fridays data - you could use datepart(dw - but that will depend on the settings.
Safer is to count back
Also do you mean the previous...
December 7, 2010 at 4:22 am
just add the two dates to the resultset - means adding two dates to every row though. Could also include a new datasource which just has those dates - that's...
November 19, 2010 at 2:58 am
The clustered index columns will be added as included rather than indexed.
If it's needed then I would include it explicitely.
If it's not needed and just there by default then I...
November 18, 2010 at 9:39 am
If you need to log the status for each row then you are stuck with a single row insert so there's not much you can do about it.
If you could...
November 18, 2010 at 9:32 am
If you held the start and end dates for reservations the query would become
SELECT h.*
FROM tbl_house H
WHERE
NOT EXISTS (SELECT r.house_id FROM tbl_reservation r where r.house_id = h.house_id
AND
r.julianStartDay <= dbo.udf_dateToJulian('2010-11-04')
and
r.julianEndDay...
November 18, 2010 at 8:08 am
It will have to create a work table which it will use to get the distinct rows.
Do you need all columns to be distinct or can you get the primary...
November 18, 2010 at 7:57 am
Some time ago a similar question turned up a number of times about a hospital bed allocation system. Turned out to be a course project.
Looked at the OPs posting history...
November 18, 2010 at 7:27 am
I spent a couple of years in at a company working ridiculous hours - for the last 3 months I was IT manager (+ two other jobs that I couldn't...
November 18, 2010 at 7:07 am
Viewing 15 posts - 46 through 60 (of 345 total)