Viewing 15 posts - 10,216 through 10,230 (of 13,469 total)
Pete there is a difference between Joining and using a WHERE statement to limit your results; I'm thinking that you are including the WHERE statement as part of the join,...
December 20, 2009 at 8:40 pm
As Jeff's link pointed out, you can easily script the enabling and disabling of xp_cmdshell;
if you had checked BOL before posting a question here, you'd have found it yourself, and...
December 20, 2009 at 5:37 pm
good job posting details Bryan! that gives us just what we need for testing.
with the table definitions, we can emulate what you are doing, and provide solid comprehensive answers.
now we...
December 18, 2009 at 12:45 pm
details, that's the key.
you said you want to put XML in the following folder:
c:\AllSites\romah.com\ folder of target
does that mean the web server and the sql server are the same...
December 18, 2009 at 12:10 pm
if you are getting a specific error, we really need to see the code in your triggers; that's where the error lies; it sounds like you have declared variables in...
December 18, 2009 at 11:45 am
still fairly easy: you jsut add the dependancies and the columns to teh same query:
SELECT
CASE
WHEN object_name(tr.parent_id) IS NULL Then 'Database'
...
December 18, 2009 at 11:14 am
here's an example of what Jason was talking about; my SandBox database had a database trigger, and I thought that deserved mentioning and a demo of special handling:
SELECT
...
December 18, 2009 at 10:53 am
the best way is to switch to your own cursor, and do whatever you were going to do to the specific tables;
here's a generic example; note how you could exclude...
December 18, 2009 at 9:47 am
DR = Disaster Recovery.
a SQL disaster Recovery Regime would simply be the steps you plan to take to bring SQL server back up in the event of a disaster...whether that...
December 18, 2009 at 7:37 am
yes! that is the "tipping point" Jeff was referring to; most huge updates take seconds/under a minute total, isntead of hours.
after your update, have you done a select to...
December 17, 2009 at 10:32 pm
i agree with Bru; i don't think you can change column names via replication.
an alternative might be to create a view that aliases the column names, but if these are...
December 17, 2009 at 10:44 am
not that a million records a day is a lot, but here's a question for you:
are the million records at a time date related? ie since you are doing this...
December 17, 2009 at 10:28 am
the error pretty much tells you what the issue is.
when you do a CREATE TABLE statment, you can optionally say what filegroup it will be created on...the "default" group is...
December 17, 2009 at 7:28 am
i'd say there was an error in assigning roles;
how can you update something(db_datawriter) if you can never query it for the original values(db_datareader)
i think you need to add db_datareader to...
December 17, 2009 at 7:13 am
here's my guess at it:
DECLARE @pid int
--don't see it assigned a value..this might be a select for ALL recs, and pid is the current record?
SELECT ISNULL(CustName,'') As CustName,
ISNULL(CustAddress,'') As CustAddress
FROM...
December 16, 2009 at 9:48 pm
Viewing 15 posts - 10,216 through 10,230 (of 13,469 total)