Viewing 15 posts - 2,461 through 2,475 (of 3,616 total)
I can't speak for the clustered environment but SQL2000 does NOT require the service accounts to be local administrators.
The accounts obviously need full privileges to the directories that SQL uses...
January 24, 2006 at 8:39 am
I believe that each filegroup gets assigned its own thread so the only benefit you will get will be from whatever using separate threads gives you.
January 24, 2006 at 8:10 am
If you pass in a string containing nothing but spaces LEN will return 0.
January 24, 2006 at 1:12 am
UPDATE dbo.account
SET dbo.account.balance = DT.TotalAmount
FROM dbo.account
INNER JOIN (
select sum(amount) AS TotalAmount, account_num from atransaction
group by account_num
) AS DT
ON dbo.account.account_num = DT.account_num
January 23, 2006 at 3:02 pm
Set up a role in DB2 explicitly to allow the execution of a stored procedure to insert the records into the appropriate table.
Add the user from DB1 to DB2 but...
January 23, 2006 at 2:57 pm
Start reading up about the sp_makewebtask and sp_runwebtask.
In summary you can design a simple text template of what you want with tags where your source query should insert its...
January 23, 2006 at 2:46 pm
UPDATE updatetble1
SET updatetble1.updatecol1 = updatetble2.updatecol2
FROM updatetble1 INNER JOIN updatetble2
ON updatetble1.joiningcolumn = updatetble2.joiningcolumn
WHERE Yourcondition = Your Value
January 23, 2006 at 12:00 pm
An element is the main tag itself such as <Element>
An attribute is a value within the definition of an element such as <Element MyAttribute="An attribute value" />
January 23, 2006 at 8:52 am
How can I have 0.00632 reads and writes?
January 23, 2006 at 5:18 am
Use SCOPE_IDENTITY because SCOPE_IDENTITY identifies the last identity value for the current scope where as @@IDENTITY identifies the last identity regardless of scope.
January 23, 2006 at 1:46 am
SELECT @@VERSION
SP3 = 8.00.760
SP4 = 8.00.2039
SP4 plus embarrassing fix for memory problem in SP4 = 8.00.2040.
You should be on at least SP3
January 20, 2006 at 5:44 am
If you have an dbo.addOrderLine stored procedure then you could set up a dbo.addOrder stored procedure that accepts the parameters necessary to add an order and a single order line.
Wrap...
January 20, 2006 at 5:19 am
The N'string' thing converts an standard ASCII string to a unicode one.
db_owner is a database role that can do absolutely anything within the database. Destroy tables, alter stored procedures,...
January 20, 2006 at 1:26 am
Doesn't this mean that Excel has to be installed on the server?
If not then wouldn't it be better to break out the task so that one task writes the Excel...
January 19, 2006 at 12:08 pm
Regardless of whether you have used sp_detach_db you can attach the MDF and LDF files.
As ever, backup your MASTER database on your target server before and after the attach.
You will...
January 19, 2006 at 6:46 am
Viewing 15 posts - 2,461 through 2,475 (of 3,616 total)