Viewing 15 posts - 1 through 15 (of 17 total)
I found this helpful. I had to add myself as an administrator to Analysis Services in the destination server...
May 30, 2008 at 9:43 am
I just used Windows Explorer and opened C:\Program Files.
If you find a file called "Microsoft" without the quotes, delete or name it.
Similarly if you look at C:\...
October 26, 2007 at 11:40 am
In my case, I had a file called Microsoft just below c:\Program Files. Once I renamed it, SQL start OK.
What a scare.
May 31, 2007 at 9:43 am
Within TSQL you could try - but with your column name instead of the local variable of course.
declare @AssetDescr VARCHAR(30)
set @AssetDescr= 'This has quotes at 6".'
select @AssetDescr
SELECT REPLACE(@AssetDescr, '"','in')
March 15, 2007 at 12:41 pm
Perhaps the problem is not Excel but UNION. Can you re-arrange the SELECT to pull from a worksheet that has text in col3 first. This will define the destination col...
March 15, 2007 at 12:32 pm
Polar Bear Corporate Education Solutions is good.
September 16, 2005 at 9:29 am
October 27, 2004 at 8:48 am
There is a utility that does this. If the upgrade tools have been installed it can be found in \program files\microsoft sql server\mssql\upgrade\scptxfr.exe Run with /? to see...
May 18, 2004 at 9:08 am
This happens to me when I don't wait a few moments between killing, and restarting it. Patience grass hopper.
October 15, 2003 at 7:50 am
May I ask what raid controller is installed. We have similare problems on one server. It has adaptec, and I don't know how to check if write caching...
October 2, 2003 at 9:37 am
This one is, very similar to wzablatzky;
CREATE TABLE #ProcText (LineText varchar(255) NULL)
INSERT #ProcText (LineText) EXEC ('exec master..xp_cmdshell ''NET START''')
SELECT RTRIM(linetext) FROM #ProcText WHERE linetext LIKE '%SQL%' OR linetext...
September 10, 2003 at 3:08 pm
A work-around would be to
create a view of the original data, but casting the date to varchar, and substituting '' where null.
CREATE VIEW BlankDate as
select . . . isnull(CAST...
July 31, 2003 at 9:01 am
I have used this sequence of commands to tell me if SQL is running, assuming the account can run XP_CMDSHELL.
CREATE TABLE #ProcText (LineText varchar(255) NULL)
INSERT #ProcText (LineText) EXEC ('exec...
June 19, 2003 at 7:21 am
One thought - you cannot restore to a point in time this way. I would let SQL backup to disk, then save disk to tape.
April 17, 2003 at 7:00 am
The maintenance plan is probably set up to backup the transaction log prior to db backup. This clears them from the db backup. The plain backup will include transaction log...
April 17, 2003 at 6:52 am
Viewing 15 posts - 1 through 15 (of 17 total)