Viewing 15 posts - 6,541 through 6,555 (of 7,429 total)
Duplicate post. See http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=3410&FORUM_ID=5&CAT_ID=1&Topic_Title=Import+data+from+CLMS+to+SQL+Server+7&Forum_Title=Administration to post messages.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 4, 2002 at 9:40 am
Should be able to use the Import Wizard in SQL as long as you have at least an ODBC connector for the database. Will this be ongoing often?
"Don't roll your...
April 4, 2002 at 9:31 am
You could try something like this.
EXEC sp_MSForEachDB '
If ''?'' NOT IN (''master'',''msdb'',''model'',''tempdb'')
BEGIN
USE ? /* Note put ? inside [] to handle odd characters, forum code kept change to
April 4, 2002 at 5:48 am
MS uses Overlapped IO Ports to handle connections in SQL as it does with IIS. There to my knwoledge is no way to specify a range and it is actually...
April 4, 2002 at 5:38 am
Could be an MDAC issue, VB SP issue. Check the event viewer and it may have more details. Also may want to get a snapshot of the memory and running...
April 4, 2002 at 5:27 am
dbo is the only understood owener reference. When an object is not owned by dbo you must qualify it by ading the ownername. before the object and it login does...
April 4, 2002 at 5:18 am
Yes QA will be the best place to view these quickly, oherwise you have to capture the return error in code or print message.
"Don't roll your eyes at me. I...
April 4, 2002 at 5:06 am
Try this
CREATE TRIGGER trWhatever ON tblWhatever FOR INSERT, UPDATE, DELETE
AS
If conditiontomeet
BEGIN
RAISERROR('Yes',16,-1)
RETURN
END
ELSE
BEGIN
RAISERROR('No',16,-1)
RETURN
END
Should return one or the other to be sure what is occurring.
"Don't roll your eyes at me. I will tape...
April 3, 2002 at 8:25 pm
This is a duplicate post. Please see other thread at http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=3399&FORUM_ID=9&CAT_ID=1&Topic_Title=Insert++slows+down+due+to+Clustered+Index&Forum_Title=General for posting.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 3, 2002 at 7:09 pm
The problem isn't the clustered index. The problem is the pages filling up. When this occurrs page splits occurr and data has to be moved to make room. Thus if...
April 3, 2002 at 7:05 pm
Yes, that should be right. You essentially are setting the parentid = to the last records issue_id, but due to other transactions it could possible not happen that way (I...
April 3, 2002 at 5:17 pm
Your best bet is to check with Veritas. However when the name of a server differs from that SQL has stored it usually will not corrupt. I personally do straight...
April 3, 2002 at 5:08 pm
This is the reason I resorted to scripts. But it may have something to do with what SP level your running, what is your SP level and have you checked...
April 3, 2002 at 4:53 pm
Basics is as Andy says, here however is an example.
SELECT * FROM tblX WITH (HOLDLOCK TABLOCKX)
But I too question why.
"Don't roll your eyes at me. I will tape them in...
April 3, 2002 at 4:51 pm
That is because the variable does not exist in the same scope as the dynamic SQL query. And then this comes from BOL
A table variable behaves like a local...
April 3, 2002 at 4:48 pm
Viewing 15 posts - 6,541 through 6,555 (of 7,429 total)