Viewing 15 posts - 8,881 through 8,895 (of 9,641 total)
I usually say Sequel, fewer syllables, thus more effiient and we all know performance is important:P
April 4, 2008 at 9:09 am
If you are using a sub query you want to use IN like this:
Update TableA
Set ColumnA = 'Test'
Where
ColumnB In (Select...
April 4, 2008 at 9:01 am
I have SP2 installed and did not have any issue creating a job in SSMS. Have you tried creating a job using the job creation SP's directly?
Are you having...
April 4, 2008 at 8:56 am
That has been my typical approach as well Grant. I am looking for the hard core performance guru's approach as well.
This question assumes that the update is being done...
April 4, 2008 at 8:37 am
Make sure you lookup SQL Injection before releasing any web page that allows this.
Do you want to provide "drag and drop" type functionality to select tables and fields or just...
April 4, 2008 at 8:28 am
YOu executing the insert on the remote server not the local server so there is not an identity value being created in the scope of the local server. If...
April 4, 2008 at 8:25 am
You need to create Linked Servers between the Servers. Then you they can reference each other.
For instance on ServerA you create a Linked Server to ServerB. On ServerA...
April 4, 2008 at 8:08 am
I don't know of any off the shelf components that would do this as I have never given users that kind of permission.
The first thing I would do...
April 4, 2008 at 7:59 am
Anthony K. Valley (4/4/2008)
April 4, 2008 at 7:00 am
I have to agree with Gail. If there are indexes that will help regularly run queries it is a "best" practice to add them.
April 4, 2008 at 5:54 am
I'm not sure if this is designed behavior, but this section:
IF @LOCKSTATUS=0
BEGIN
SELECT
@LOCKSTATUS=COUNT(*)
FROM
LOCK (NOLOCK)
WHERE
TABLENAME=@TABLENAME AND
ROWID=@ROWID
IF @LOCKSTATUS=0
BEGIN
INSERT INTO LOCK
(
TABLENAME,
ROWID,
USERID
)
VALUES
(
@TABLENAME,
@ROWID,...
April 3, 2008 at 2:11 pm
DBA (4/3/2008)
so a good value is above 40?
Any value you want to be aware of is going to vary based on your baseline and setup. As I said, this...
April 3, 2008 at 1:06 pm
Lynn,
I actually had never placed an alert on performance condition, but I knew "how" to do it. I just created one on my local SQL Server on:
SQLServer:Locks - Lock...
April 3, 2008 at 12:27 pm
J.D. Gonzalez (4/3/2008)
April 3, 2008 at 9:28 am
Viewing 15 posts - 8,881 through 8,895 (of 9,641 total)