Viewing 15 posts - 196 through 210 (of 1,248 total)
Thank you Brian for your feedback. I thought it might work but I had not tried any time. It is very glad to know it works.
August 6, 2008 at 10:04 am
Try the link below.
http://support.borland.com/kbshow.php?q=27099
Read the paragraph of the description. It is related to a driver used in application with the same error code you got.
May it help.
August 6, 2008 at 9:47 am
You may use SSIS from the BIDS (Business Intelligence Development Studio).
August 6, 2008 at 9:28 am
Are you asking the SQL Server Configuration Manager? We can set up network utility there.
August 4, 2008 at 3:54 pm
What is your third party application? Did you ask your third party what driver you need?
August 4, 2008 at 3:47 pm
I got the same returns as Manu.
When I used the script provided by Perry Whittle, I could not be able to locate NumberOfCores and NumberOfLogicalProcessors properties in Win32_Processor Class.
It seems...
August 2, 2008 at 6:05 pm
Are you asking to set up replication between servers in different domains? If yes, the answer is yes as long as you have right authority.
August 1, 2008 at 4:07 pm
DECLARE @string varchar(360)
set @string = ''
SELECT @string = @string + letter + ' ' from #test
SELECT @string
August 1, 2008 at 3:52 pm
Change the related part as below.
DECLARE @string varchar(360)
set @string = ' '
--SELECT @string = COALESCE(letter + ' ', '') + @string from #test
SELECT @string = @string + COALESCE(letter +...
August 1, 2008 at 3:49 pm
Did you remove the old files for tempdb?
There is one post recently. See the link below. May it help.
http://www.sqlservercentral.com/Forums/Topic526254-146-1.aspx
August 1, 2008 at 1:13 pm
How about the Profiler in SQL Server? Do not forget applying filter on it if use it.
July 30, 2008 at 10:43 am
How about the Profiler in SQL Server? We can trace login name and spid there.
July 30, 2008 at 10:42 am
Your account does not have permission to make backup. Check with your administrators.
July 30, 2008 at 10:38 am
Use DBCC SHRINKDB command rather than DBCC SHRINKFILE command.
July 30, 2008 at 10:35 am
Viewing 15 posts - 196 through 210 (of 1,248 total)