Viewing 15 posts - 7,516 through 7,530 (of 9,641 total)
Can you please explain what you are trying to do, then someone may be able to help you. Right now all I know is that you were trying to...
September 12, 2008 at 1:42 pm
If you start a server side trace to a file you can use ::fn_trace_gettable([path], [# of files]) to return the data in tabular format and insert them into a table....
September 12, 2008 at 12:58 pm
Based on the error message, you have not declared the variable/parameter @y correctly. Are you directly calling this stored procedure? According to BOL:
These system stored procedures will show...
September 12, 2008 at 12:15 pm
Thanks for the positive comments Carla, glad it was helpful.
If you really want to turn it off you could actually make the change in the advanced properties of...
September 12, 2008 at 10:33 am
Arthur.Lorenzini (9/12/2008)
Such as
LEFT OUTER JOIN dbo.employee s1 WITH (NOLOCK) ON (s1.employee_id = t.salesman_employee_id)
LEFT OUTER JOIN dbo.employee s2 WITH (NOLOCK) ON...
September 12, 2008 at 10:31 am
MrBaseball34 (9/12/2008)
ptChemoMedicalBilling table that the trigger is on. The ptChemoMedicalBilling record is based on the OrderID in...
September 12, 2008 at 8:43 am
Which changes the errors or ALL data changes?
If you want to see all data changes the best way, IMO, is to use triggers on the table. I suppose in...
September 12, 2008 at 8:30 am
Reginald J Ray Jr (9/12/2008)
set ANSI_PADDING off
go
create table duh (
col1 varchar(50)
)
insert into...
September 12, 2008 at 8:26 am
Here are 2 options:
[font="Courier New"]CREATE TRIGGER [tr_ptChemoMedicareBilling_StoreCharges_del]
ON [dbo].[ptChemoMedicareBilling]
AFTER DELETE
AS
BEGIN
SET NOCOUNT ON
DELETE P
FROM
ptEncounterDetailsCharges P JOIN
deleted D ON
P.MRN = D.MRN AND
P.DOS...
September 12, 2008 at 8:13 am
Jack Corbett (9/12/2008)
steitelbaum (9/12/2008)
IE 7.0.5730.11resolution 1024 x 768
It is related to the resolution. Apparently the table is not resizing based on resolution. Not being an HTML guy I'll...
September 12, 2008 at 8:07 am
steitelbaum (9/12/2008)
IE 7.0.5730.11resolution 1024 x 768
It is related to the resolution. Apparently the table is not resizing based on resolution. Not being an HTML guy I'll have to...
September 12, 2008 at 7:58 am
I subscribed to this thread hoping someone would post a solution since I don't know of one within RS. I'll give you a couple of ideas, the first one should...
September 12, 2008 at 7:54 am
I'm curious, are running the SP then the Ad-Hoc? Does the SP run faster the second time? What happens if you run DBCC DROPCLEANBUFFERS before running each query?
September 12, 2008 at 7:46 am
Server level permissions are Server Level. So there is no way to limit it if you grant that permission.
You could develop a report that connects with proper permissions, but,...
September 12, 2008 at 7:38 am
You also need to know when you are at the last file as all restores prior to that will need WITH NORECOVERY and the last RESTORE will be WITH RECOVERY.
If...
September 12, 2008 at 7:28 am
Viewing 15 posts - 7,516 through 7,530 (of 9,641 total)