Viewing 15 posts - 6,856 through 6,870 (of 7,429 total)
Most likely yes. But I have never tried. Let me know.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 13, 2002 at 7:09 pm
What I amn sure Steve means is the users should not have any rights or access on MSDB. Jobs and such run under the context of sysaccount or SQLAgentExec so...
March 13, 2002 at 7:05 pm
You will need to rebuild it on the NT4 server in debug mode so you can get an idea of why. Most likely you called some other com object that...
March 13, 2002 at 7:02 pm
Well, now the next logical thing I would think then is can we add a link submission area Steve, browkn down into specific areas of relationship like your article basically...
March 13, 2002 at 6:57 pm
This is an error message that comes directly from from the application (it is a C++ message based are trying to initialize a COM object). If you are getting the...
March 13, 2002 at 6:50 pm
I just enjoy a challenge. Glad to here that was it in one failed swoop.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
March 13, 2002 at 6:33 pm
To restore the master you have to start the server in Single User mode not just the database. See BOL "Restoring the master Database from a Current Backup" for details...
March 13, 2002 at 6:22 pm
Actually baring the missing ' from the end (which I bet you have) this message is coming from the OS Command Prompt. Open a command prompt and type PATH. Make...
March 13, 2002 at 5:49 pm
This should do the trick.
SELECT UID, [DATE], VALUE
FROM smpTbl
INNER JOIN
(
SELECT UID, MAX(DATE) AS MAXDATE
FROM smpTbl
WHERE [DATE] < '3/13/02'
GROUP BY UID
) AS smpBase
ON
smpTbl.UID = smpBase.UID AND
smpTbl.[DATE] = smpBase.MAXDATE
What happens is...
March 13, 2002 at 5:46 pm
No what Steve was saying is that you cannot use a TSQL statement to do this, you have to go in EM and turn it own, then EM will rebuild...
March 13, 2002 at 1:05 pm
First if your data is coming the DTS or Import wizard use a query to define what is coming from your remote source using the SELECT DISTINCT method, if there...
March 13, 2002 at 8:48 am
I don't believe a replication source can be a none SQL server database. You can however use DTS and schedule it to pull the data periodically.
"Don't roll your eyes at...
March 13, 2002 at 8:41 am
You would need to do something like
SELECT col1 AS DataX FROM tblX
UNION ALL
SELECT col2 FROM tblX
UNION ALL
SELECT col3 FROM tblX
UNION ALL
SELECT col4 FROM tblX
But the problem is the order will...
March 13, 2002 at 8:18 am
Viewing 15 posts - 6,856 through 6,870 (of 7,429 total)