Viewing 15 posts - 1,096 through 1,110 (of 7,429 total)
Been a while since I have use a CAL scenario but I believe it does throw a message about license limit being reached but that would mean 200 connections at...
February 15, 2006 at 6:30 am
Do not destroy and recreate the DMO SQLServer object for every iteration. -- Actually doesn't really matter I just hate wasting the resources used to create an destroy an...
February 15, 2006 at 6:15 am
SASI.ASTU5031 -- Previous School Attended?
SASI.ACHS5031 -- Current School
-- Looks like a list of the schools based on a portion of a filed but not sure which table came from.
BEGIN
...
February 15, 2006 at 6:09 am
Your vendor who sold you DB2 or IBM should b able to help get the correct client driver. Otherwise you could get a DB2 DBA to build a view of...
February 15, 2006 at 5:48 am
REPLACE cannot be used on an NTEXT field. You will have to cast to another datatype like NVARCHAR which can be used with.
February 14, 2006 at 9:08 am
You to my knowledge have to have Excel installed and fully for proper support. Make sure your SQL agent service account has rights to use Excel, do not use Local System....
February 14, 2006 at 7:23 am
If you are using DTS then you use a data driven query task. The object looks like a Database with a magnifying glass over it in the Task tool bar.
Ex. (Oracle...
February 14, 2006 at 7:20 am
Have you installed the latest DB2 client on the machine running the SQL Server? Or what version are you using of the DB2 client, mine is version 8.
February 14, 2006 at 6:56 am
There have been several threads along these lines in the past.
However you might try working out a couple of table designs and a list of the data you would...
February 14, 2006 at 6:48 am
First off you have many syntax errors including a ) missing for a declare statement. But as for you IF statement you are using the wrong logic method this is...
February 13, 2006 at 12:02 pm
Try it this way
set objSQLServer = CreateObject("SQLDMO.SQLServer")
while not rstSQLinstances.eof
on error resume next
objSQLServer.Connect rstSQLinstances("ServerName") , "sa", rstSQLInstances("saPassword")
if err.number <> 0 then
Call writeerrortolog("Cannot connect to " & rstSQLInstances("ServerName") , Err.Number)
err.clear
Else
objSQLServer.Disconnect ...
February 13, 2006 at 11:02 am
Consists of a single contiguous region of addresses within the SQL Server process space that is set aside at startup. This area is static (the size cannot change) and is...
February 13, 2006 at 9:44 am
You really should suggest doing something like this.
Schools (Details about the school)
School
Address
...
Surveys (The base details of the survey)
Survey_ID
Date_Performed
Performed_By
Survey_Answers (The Answers)
Survey_ID (Foreign Key to Survey_ID in Surveys)
Question_ID (Foreign Key to Question_ID...
February 7, 2006 at 8:01 am
You might also consider creating a job to copy the log lines from msdb..sysjobhistory to another table for the items you have to maintain.
February 7, 2006 at 7:53 am
generally all activity related to MSDB is due to SQL Server Agent tasks. It is not uncommon to see large amounts of CPU and DISK IO utilization as these are cumulative...
February 7, 2006 at 7:47 am
Viewing 15 posts - 1,096 through 1,110 (of 7,429 total)