Viewing 15 posts - 1,726 through 1,740 (of 7,429 total)
If not as Ed says then it may be the files are still locked. Try rebooting with SQL disabled and then see if that doesn't work. Again if yours doesn't...
June 28, 2004 at 6:21 am
Always, just make sure you alter any sensitive bits.
June 28, 2004 at 6:16 am
Actually on count 4 I suggest you read this
http://www.microsoft.com/sql/evaluation/overview/default.asp
It states that it can handle 25 concurrnt users. Basically this means only 25 connections can be open at any given...
June 27, 2004 at 8:23 am
You have to stop SQL server or close the db from open state (auto close option) and keep everyone out while defrag occurrs. Personally best way is to stop SQL...
June 27, 2004 at 8:16 am
ALong those lines can you post the DDL of the staging and live table. It may be as simple as the data is being suffeled in memory for inserts but...
June 25, 2004 at 5:29 pm
Start here if you need restoring more than just SQL.
http://www.microsoft.com/technet/security/tips/recover.mspx
SQL However this is a good read. (it is a link on the first url listed)
http://www.microsoft.com/resources/documentation/sql/7/all/proddocs/en-us/admincmp/75517c03.mspx
June 25, 2004 at 5:23 pm
As long as you followed general syntax of SQL 92 wihout using extended DDL for Postgre then it should be as simple as point to the SQL drivers. However I...
June 25, 2004 at 5:16 pm
Ok I do think you are making more of it than you need to. Now that I understand what you need do this
@Some_String_Variable + (CASE
WHEN COALESCE(@PhoneNumber, @PhoneExtn, '') =...
June 25, 2004 at 5:12 pm
Note you need to change
while @i < 36
to
while @i < 37
or you will miss 9
However building on Steves here is an example to give you what you want.
set nocount...
June 25, 2004 at 5:02 pm
DO
SELECT @strString1 = @strString1 + sql_name + ', '
FROM (SELECT DISTINCT sql_name FROM #temp) A ORDER BY SQL_name
June 25, 2004 at 4:47 pm
You cannot because it is not a MAPI client.
June 25, 2004 at 4:44 pm
You need to look at the code of the procedure (GetRunDataset) to know why.
June 25, 2004 at 9:23 am
If you have SQL Server Client Network Utility installed on that machine check to see if the Named Pipes Library is disabled (General tab) or missing (Network Libraries tab).
June 25, 2004 at 7:08 am
Either use Triggers to audit (only selects won't work) or check you settings for the Trace.
1) Is it pointed at the right server.
2) Are there any filters
3) Make sure profiler...
June 25, 2004 at 6:56 am
Viewing 15 posts - 1,726 through 1,740 (of 7,429 total)