Viewing 15 posts - 6,856 through 6,870 (of 7,185 total)
Have you tested your assumption that the silly proc1 would time out if run in a loop?
August 17, 2006 at 4:31 am
Marco
To help you out, we'll need to see the code in the stored procedure, and probably also table DDL and sample data. Then we may even be able to help...
August 17, 2006 at 3:54 am
I would say you can't do it in that timeframe. But then you knew that anyway. Management is going to have to decide whether the postpone the live date or...
August 17, 2006 at 3:50 am
No need to ask the same question more than once. Answered here.
August 17, 2006 at 3:33 am
Irene
You can set the max server memory and the min server memory on SQL Server, and SQL Server will allocate itself memory dynamically based on those constraints. The min server...
August 17, 2006 at 3:28 am
When I've had servers restarting for no apparent reason in the past, it has often been traced to the network card. Are your NICs teamed, by any chance?
John
August 17, 2006 at 2:52 am
I noticed after I posted my reply that you're on SQL 2005, so I may not be the best person to help. However, if replication on 2005 is anything like...
August 16, 2006 at 9:45 am
Meena
Look at the differences between the two servers - memory, disk, processor. Does the log file continually grow during the import on the second server? Do you have the same...
August 16, 2006 at 4:02 am
Look at the properties of the MSSQLSERVER service in the Services applet. You can also find the same information in Enterprise Manager by right-clicking on the server name, choosing Properties...
August 16, 2006 at 3:20 am
Dave
I think the biggest risk is in terms of performance. Both SQL Server and IIS like to grab as much memory as they can. If you are short on resources...
August 16, 2006 at 3:10 am
If you're asking will the query optimiser use the index on PK_TAB_B, the answer is no, not if the PK is defined with the columns in the order you specify. ...
August 16, 2006 at 3:06 am
I think you will be able to achieve what you want with replication. You can use the replication stored procedures to transform the data using code similar to what you...
August 14, 2006 at 3:29 am
Luis
It shouldn't be a problem. If you try to create a stored procedure that calls another that doesn't exist, you'll get a warning message but the stored procedure will be...
August 14, 2006 at 1:54 am
Brian
Have a look at the topic SET IDENTITY_INSERT ON in Books Online. You will want to pay particular attention to the following line:
If the value inserted is larger than...
August 11, 2006 at 8:59 am
Jef
Please will you post the DDL and some sample data for the four tables (or three if, as I suspect, table_lines and table_orderline are actually the same table).
Thanks
John
August 11, 2006 at 4:48 am
Viewing 15 posts - 6,856 through 6,870 (of 7,185 total)