Viewing 15 posts - 61 through 75 (of 146 total)
If moving the backup file due to a 2GB limit is the problem, could you backup the database to more than one file. Then move each file independently?
Or, fix the...
January 23, 2015 at 9:31 am
It would help if the dates where stored in date data types.
Using the following would work:
declare @datedifference TABLE
(
id INT
,start_date INT
,end_date INT
)
INSERT INTO @datedifference VALUES (10,20091202,20100629)
INSERT INTO @datedifference VALUES (20,20071202,20090330)
INSERT...
January 23, 2015 at 5:29 am
Thanks. I've already checked this and the SPN's are set up.
The best guide I've found which details how to resolve this issue is this one which I...
January 21, 2015 at 1:46 am
Probably the best answer to this question IMHO would be to explain both GETDATE() and CURRENT_TIMESTAMP, including a short version of the pros and cons (without sounding condescending like the...
January 9, 2015 at 2:11 am
Jeff Moden (1/8/2015)
January 8, 2015 at 9:50 am
You could just use a replace in your select
SELECT REPLACE(<columnName>, '.','. ')
FROM <tableName>
May not be efficient, but would work.
December 12, 2014 at 5:25 am
With the quorum, I would say you could just remove this from the cluster and then delete the disks, then re add them and set the quorum up again. ...
December 3, 2014 at 6:39 am
If you can, I would create new drives which are sized correctly and add them to the server. Shutdown the instance. Copy the data files and log files to...
December 3, 2014 at 6:07 am
There is still one or more connections to the database. Exec sp_who2 and look to see what connections are connected to your database.
November 21, 2014 at 8:40 am
Perfect. Thanks.
November 21, 2014 at 3:04 am
If this helps, I install the following procedure on all SQL Server instances I set up and create an agent job which runs the proc each morning to tell me...
November 12, 2014 at 9:41 am
We experience this a lot when our DC's are patched. Especially on busy systems where lots of connections occur from domain users.
We're yet to find a decent solution to...
November 6, 2014 at 9:40 am
Thanks for the reply. It's funny how you spend ages on something, then when you write it out in a question on a forum, the answer comes to you.
I ended...
November 6, 2014 at 6:43 am
Is the SQL 2000 instance running with a domain account and does this domain account have read access to the file share where the backup file is?
November 6, 2014 at 2:18 am
Viewing 15 posts - 61 through 75 (of 146 total)