Viewing 15 posts - 8,326 through 8,340 (of 15,381 total)
dao.tran (5/16/2013)
I'm having exactly the same problem, please let me know how to drop this table as I have tried all solutions above and none work.
Also allow system catalog updates...
May 16, 2013 at 8:40 am
One suggestion, since you are now on 2008 can you change the datatype of your text column to varchar(max)? That will likely help your query because it won't have to...
May 16, 2013 at 8:26 am
adonetok (5/16/2013)
Now, I...
May 16, 2013 at 8:21 am
adonetok (5/16/2013)
I do not think that without loop can do it.
Can someone...
May 16, 2013 at 8:19 am
John Mitchell-245523 (5/16/2013)
Phil Parkin (5/16/2013)
lnardozi 61862 (5/16/2013)
Just for completeness sake, you never use more than one UNION, which is the last one. All the rest should be UNION ALL.Why not?
I...
May 16, 2013 at 8:14 am
adonetok (5/16/2013)
COLOR
ID----BLUE---RED---YELLOW
111---X--------------------
222----------X------X------
333---X--------------------
444-------------------------
I need a loop to check above table cell by cell and then update another table.
The final result is table...
May 16, 2013 at 7:57 am
sqlguy-736318 (5/15/2013)
I originally queried sys.objects for the info but...
May 15, 2013 at 12:24 pm
select *
from sys.objects
where object_id = object_id('YourProcNameHere')
May 15, 2013 at 10:54 am
baseehkhan (5/14/2013)
For that i need help....
May 15, 2013 at 8:33 am
Maybe you can split this into 2 updates?
Something like this:
UPDATE [dbo].[Customer]
SET
[Resort] = @p_Resort,
[RoomNo] = @p_RoomNo,
[DepartDate] = @p_DepartDate,
[Paid_Accomm] = @p_Paid_Accomm
WHERE [CU_ID] = @pk_CU_ID
and [RoomNo] <> @p_RoomNo
SET @l_rowcount = @@ROWCOUNT
IF @l_rowcount...
May 14, 2013 at 3:32 pm
You're welcome. Glad that worked for you.
May 14, 2013 at 2:02 pm
carsten.crystaldive (5/14/2013)
I moved my last one about the Stored Procedure into a New Topic ... you're more than welcome to check it out 🙂 ...
Is there a way...
May 14, 2013 at 2:01 pm
salliven (5/14/2013)
Exapmle: we're monitoring MS replication with profiler, but it don't use identity reseed. It use always simple insert.
Profiler may not be capturing everything as you think. If the reseed...
May 14, 2013 at 1:57 pm
Jack Corbett (5/14/2013)
Sean Lange (5/14/2013)
Sapen (5/14/2013)
Sean Lange (5/14/2013)
May 14, 2013 at 1:53 pm
Jack Corbett (5/14/2013)
Sean Lange (5/14/2013)
May 14, 2013 at 1:52 pm
Viewing 15 posts - 8,326 through 8,340 (of 15,381 total)