Viewing 15 posts - 751 through 765 (of 1,109 total)
Could you describe the behavioral difference you are experiencing?
Regards,
Andras
October 19, 2007 at 5:36 am
lalit (10/19/2007)
thanks again for the help.
I am using SSIS 🙂 to do all of this and that is why need a SSIS specific solution to this..
I have added a data...
October 19, 2007 at 4:16 am
How large are your tables? If the table size is small, like only a few pages, then the rebuild will not only result little or no speed improvement, it will...
October 19, 2007 at 4:11 am
Have a look at Red Gate's SQL Log Rescue. It will restore your table based on the transaction log and earlier backups. It is a free tool and it works...
October 19, 2007 at 3:43 am
Hi Lalit,
the reason fro populating CustomerDetails first, is that your CustomerMaster table does not have anything to identify the original customer. It only contains the identifier of this customer, but...
October 19, 2007 at 3:28 am
Cathan Kirkwood's "How to Diagnose and Fix Wait Locks" article describes this in some detail. See http://www.sqlservercentral.com/articles/Administering/wait_types/856/
Regards,
Andras
October 19, 2007 at 3:13 am
Something along the lines of:
DROP TABLE dbo.CustomerDetails ;
GO
SELECT IDENTITY ( INT, 1,1 ) AS CustomerId
, Customers.CustomerName
, Customers.CustomerAge
...
October 19, 2007 at 2:59 am
Susan S (10/18/2007)
Could you tell me how do I do that? or at least give me a start point. 🙂Thanks
Hi Susan,
you can do what Matt suggested with a statement...
October 19, 2007 at 2:40 am
Using sqlcmd is certainly a good idea :). People often forget that SSMS's Object explorer also uses a connection, and in single user mode this will prevent new query windows.
Regards,
...
October 19, 2007 at 2:07 am
How large is your database? How large are the tables? How many indexes do you have? How fragmented are the indexes? How low is the load on your database when...
October 18, 2007 at 8:40 am
Kenneth seems to be right about the declaration being evaluated only once, and then only assignments happening. If you add a print statement to the original code and set @p...
October 18, 2007 at 4:37 am
Just to add, for your current session you can do:
SELECT host_name
FROM sys.dm_exec_sessions
WHERE session_id = @@SPID
Regards,
Andras
October 17, 2007 at 8:26 am
Hi vmon,
yes, have a look at sys.dm_exec_sessions and in there the host_name column.
Regards,
Andras
October 17, 2007 at 8:24 am
This is something that can happen in read committed isolation level. Have a look at http://blogs.msdn.com/craigfr/archive/2007/06/12/query-failure-with-read-uncommitted.aspx.
Normally you can get around it if you impose some more restrictions on the transactions...
October 17, 2007 at 6:01 am
Hi Martin,
assuming that your existing stored procedures can validate individual rows, the service broker could indeed help. You could send a message every time a new row is inserted, and...
October 17, 2007 at 5:36 am
Viewing 15 posts - 751 through 765 (of 1,109 total)