Viewing 15 posts - 691 through 705 (of 1,248 total)
When free space of a drive falls below a threshold, the performance will degrade.
One of its reasonings is that Windows uses hard disk to save something temporarily. My experiences...
February 5, 2008 at 11:17 am
Did you check ProgramName in the output of sp_who2?
Or did you try to run SELECT * FROM master..sysprocesses?
February 5, 2008 at 11:06 am
I would like to check the disk space on T and U drives first, if I were you.
February 4, 2008 at 9:53 am
SQL 2000 desktop version may not be accepted to be installed on Vista. Try SQL 2005 express edition.
February 3, 2008 at 5:50 pm
There are some diferences in syntaxt. SQL Server uses T-Script, which is an extension of ISO92/99. But these syntax may not be accepted in Sybase.
February 3, 2008 at 5:41 pm
I agree with GilaMonster.
In SQL 2000, we can encrypt/decrypt stored procedures, but not saved data.
In SQL 2005, the function of encrypting data is added. Yes, we can encypt data...
February 1, 2008 at 1:57 pm
Did you try
sp_configure 'remote access'
February 1, 2008 at 1:27 pm
Why did you use different functions to convert your criteria?
For example,
SELECT convert(datetime,GETDATE(),1)
UNION
SELECT CAST(FLOOR(CAST(GETDATE() AS FLOAT)) AS DATETIME)
returns
2008-02-01 00:00:00.000
2008-02-01 14:13:09.733
Is it your problem?
Regarding to your second question, grouping your results by...
February 1, 2008 at 1:15 pm
Open your DTS in design mode;
Choose Properties from Package on the menu at your top left;
It is under the logging tab.
February 1, 2008 at 12:57 pm
Just a question.
If you would like to restart the snapshot, do you really need to do all backups on the subscriber side?
February 1, 2008 at 12:54 pm
How about considering each instance as a standalone server separated from others? That is what in my mind.
February 1, 2008 at 12:11 pm
Did you try to add log file in your DTS? If so, you can trace errors in detail.
January 31, 2008 at 3:11 pm
How about
SELECT top 1 * FROM T1 WHERE name ='cash'
UNION ALL
SELECT TOP 1 * FROM T1 WHERE name = 'credit'
January 31, 2008 at 3:07 pm
Here is a link related to your question in another forum. May it help.
http://techrepublic.com.com/5208-6230-0.html?forumID=101&threadID=213243&messageID=2183768
January 31, 2008 at 2:35 pm
Viewing 15 posts - 691 through 705 (of 1,248 total)