Viewing 15 posts - 106 through 120 (of 181 total)
What about @@rowcount along with the batch size
November 12, 2002 at 4:22 pm
I am sorry i did answer to a wrong query.
What kind of Problem are you getting when you schedule it as a job??
just try this
Net stop mssqlserver /y
In you batch...
November 12, 2002 at 12:32 pm
Sorry,Ignore my posting,You can stop the services but cannot start using xp_cmdshell
November 12, 2002 at 12:29 pm
The second Script is not rounding the value in the variable.
DECLARE @amt money
set @amt = 30088.3200 * 0.0055 / 365 * 31
set @amt = ROUND(@amt, 2)
print cast(@amt as varchar(38))
DECLARE @amt...
November 12, 2002 at 12:24 pm
shendricks,put this into a cursor,if you want to do the bulk insert/update and want to fire the trigger.
November 12, 2002 at 9:49 am
I have a suggestion,Create similar kind of tables (intermediate) import the data into these tables,once the import is completed drop the old tables and rename the intermediate tables.
November 12, 2002 at 9:45 am
Have you tried using the Batchsize option.I think if you use this option with a specific size(1000) you can findout how many batches are processed and calculate the number of...
November 12, 2002 at 9:13 am
Have you checked the execution plan for this query.
November 12, 2002 at 8:08 am
I think it will see those records as updates, since the replication triggers fire when the data gets over written from the temp table to the replicated table even though...
November 12, 2002 at 8:04 am
Configuring tempdb to sit in RAM was in SQL 6.5 but not in versions after SQL 6.5
November 11, 2002 at 3:52 pm
I think in SQL 7.0 it is under logins instead of security audit as in SQL 2000
November 11, 2002 at 3:42 pm
Try running the SQL Profiler and select Security audit,it gives the info. about all the users who are trying to log in.
November 11, 2002 at 3:17 pm
Using the design veiw of the table in the EM one can insert a column in between two columns by right clicking and selecting Insert column.
I think during this process...
November 11, 2002 at 1:09 pm
Viewing 15 posts - 106 through 120 (of 181 total)