Viewing 15 posts - 1,516 through 1,530 (of 9,641 total)
It worked until yesterday, so what has changed?
Were permissions changed on the remote server?
If being called through an Agent job did the Agent service account change?
If being called from a...
July 11, 2012 at 1:01 pm
you can use a table lock, but then this:
...but there will always be other users who want to read ALL balances for reports etc
will not be possible without using NOLOCK...
July 11, 2012 at 9:38 am
An index's size is dependent upon the size of the columns and the number of rows in an index. For instance a one column index of data type int...
July 11, 2012 at 8:59 am
I suggest you read this article by Jeff Moden, http://www.sqlservercentral.com/articles/62867/
July 11, 2012 at 8:21 am
What is the data in the source? I assume not 0's and 1's.
July 11, 2012 at 8:19 am
Can you be more specific about growing too large? If the volume of data included in the index is growing then the index will grow and as long as...
July 11, 2012 at 8:18 am
When getting the row you can specify the UPDLOCK hint on the select query which will allow users to read the row(s) selected, but not update them.
July 11, 2012 at 8:15 am
Object creation in tempdb will use up space in tempdb so those are part of the issue with tempdb usage. The SORT and HASH warnings are also things that...
July 11, 2012 at 8:10 am
Can you successfully query the linked server using any login?
Can you post your linked server configuration?
July 11, 2012 at 8:04 am
DDL and sample data with desired results certainly makes it easier to provide tested code, but I think something like this would work:
SELECT
*
FROM
...
July 11, 2012 at 8:02 am
sharon_sfy2k (7/10/2012)
EmpNo DateLog Timein TimeOut
001 ...
July 11, 2012 at 7:46 am
Can you post your linked server configuration?
July 11, 2012 at 7:21 am
When you say you run it in BIDS on the server, do you mean the SQL Server or the file server?
Since the job completes it doesn't sound like a permissions...
July 11, 2012 at 7:15 am
I'd use TABLOCK as specified in BOL(http://msdn.microsoft.com/en-us/library/ms174335(v=sql.90).aspx)
July 11, 2012 at 7:09 am
Sure, I had column that delimited values in it and I wanted to split that column so that it created on row for each value. The original table was...
July 10, 2012 at 1:46 pm
Viewing 15 posts - 1,516 through 1,530 (of 9,641 total)