Viewing 15 posts - 7,081 through 7,095 (of 7,636 total)
Agree with Michael: using BCP from a trigger is a bad idea, and re-querying data from another process synched with your trigger code (and that is what you are doing...
April 23, 2008 at 2:18 pm
OK, here is my entry. This should be pretty close to what you want. Note that if you do not have case-sensitive collation on your database, then you...
April 23, 2008 at 11:37 am
average Hard page faults below 10/sec should not be a problem.
Suggest you do the following:
1) Get the CPU% and the (correct) Disk Idle% for all of your disks
2) use profiler...
April 23, 2008 at 11:17 am
Steve Jones - Editor (4/21/2008)
Named pipes is an older technology, super-seeded by TCP Sockets.
Not disputing anything else posted here, but Named Pipes are nowhere near as old as TCP/IP sockets...
April 22, 2008 at 4:47 pm
If mydate is not the Clustered Index and the total numbers of rows it estimates to return exceeds some value (10% maybe?), then it will scan instead of seek.
April 22, 2008 at 4:29 pm
ksullivan (4/22/2008)
select * from #xxwhere convert(int, z1) = 1111
and z1 like '%1111'
will not include values like '001001111' and '1111111' because both convert to ints greater than 1111.
Right you are, my...
April 22, 2008 at 4:20 pm
COUNT(column_name) can do this also, no need for all of the CASE functions. Just subtract it from COUNT(*) for the count of NULLs in the column.
April 22, 2008 at 3:50 pm
Try this:
Update dbo.service_orders
Set repeat_call = 1
From dbo.service_orders O
Where Repeat_call = 0
And Exists(Select * From dbo.service_orders o2
Where o2.ID_Code = o.ID_Code
And DateDiff(dd, o2.service_date, o.service_date) <=...
April 22, 2008 at 3:32 pm
SPID's do get re-used, you know.
SysProcesses should be fine.
April 22, 2008 at 2:57 pm
vittorio caminiti (4/22/2008)
April 22, 2008 at 2:41 pm
Reasons for "DB not accessible":
1. The DB does not exist
2. The DB/server is not "up" right now.
3. You misspelled the Server/DB name.
4. The DB/Server is not on the network.
5. You...
April 22, 2008 at 2:36 pm
Methods of finding pre-defined ranges from Excel macros:
1) Fixed column/row offsets
2) "marker" or "flag" values
3) Named ranges
4) Dedicated sheet
(anything on the sheet is part of the range)
5)...
April 22, 2008 at 2:08 pm
Viewing 15 posts - 7,081 through 7,095 (of 7,636 total)