Viewing 15 posts - 12,166 through 12,180 (of 26,486 total)
You were told to use the @@ROWCOUNT function. Here is how you would use it:
delete from bill_detail where bill_detail in (9878506)
and policy = 4236807;
SET @v_delete = @@ROWCOUNT;
update prem set...
May 8, 2012 at 12:08 pm
I'm going to go out on a limb here and say that you can't replicate to a text file.
May 8, 2012 at 12:02 pm
mintsql (5/8/2012)
We have a table, lets call it Automobiles. We also have a backup table of Automobiles before it was modified, called AutoB. In both...
May 8, 2012 at 11:15 am
I would say it depends on the size of the databases and the amount of activity on each database.
May 8, 2012 at 9:41 am
Sean Lange (5/8/2012)
Lynn Pettis (5/8/2012)
You don't. SSC forum threads stay open.Yes, I finally beat "fast fingers" Lynn to a response. 😛
But by how much? 😛
May 8, 2012 at 8:50 am
You don't. SSC forum threads stay open.
May 8, 2012 at 8:42 am
looking at what your current max memory setting is at, you may want to consider changing it to a more resonable value, like 28672MB (28GB). If your installation of...
May 8, 2012 at 8:00 am
Cadavre (5/8/2012)
anthony.green (5/8/2012)
it is substituting 0 with the default date of '1900-01-01 00:00:00.000'
You can change the "zero" date at a server level, so test it before you count on it...
May 8, 2012 at 7:32 am
You should always specify the schema with the tablename in the from clause. Microsoft recommends this as well.
May 8, 2012 at 5:25 am
Just for S & G's try this:
DROP PROCEDURE [MyBook].[uspGetCatelogues] ;
GO
CREATE PROCEDURE [MyBook].[uspGetCatelogues]
(
@user-id BIGINT,
@RoleId bigint,
@CodeStatus...
May 8, 2012 at 1:29 am
Does this table also exist in the MyBook schema?
May 8, 2012 at 1:27 am
What schema is this table in? tblUserBookMapping
May 8, 2012 at 1:19 am
mssql.dba (5/8/2012)
I found that 100 blocking had occured.What are the steps required to resolve this issue.
I have no idea what you are talking about. What do you...
May 8, 2012 at 1:10 am
How are you executing the stored proceudres and are you getting an error messages when you do?
May 8, 2012 at 1:09 am
I have created numerous indexed views and answered numerous questions about them here on ssc as well, made this an easy question. Thanks!
May 8, 2012 at 1:07 am
Viewing 15 posts - 12,166 through 12,180 (of 26,486 total)