Viewing 15 posts - 7,516 through 7,530 (of 8,753 total)
faisalfarouqi (8/13/2014)
Eirikur Eiriksson (8/13/2014)
faisalfarouqi (8/13/2014)
August 13, 2014 at 2:24 am
Here is an example using IN / NOT IN for error report and insert. Same can be done with EXISTS / EXCEPT
😎
USE tempdb;
GO
DECLARE @CLIENT TABLE
(
CLIENT_ID INT...
August 13, 2014 at 2:11 am
faisalfarouqi (8/13/2014)
Is...
August 13, 2014 at 1:40 am
julie.breetzke (8/13/2014)
I want to pick someones brain
I am using a Trigger to search for existing values in a column in a table to look if the value is already...
August 13, 2014 at 1:36 am
Can you post the DDL including the collation for AU.dbo.INV1, AU.dbo.OINV, SCE.dbo.AU_SALES_R, SCE.dbo.AU_SALES_H and the database collation?
😎
August 13, 2014 at 1:24 am
Quick questions
1. How much free space is on the P: drive?
2. Has the content of P:\Mnt\DATA4B\ changed?
3. Do you have a file backup of P:\Mnt\DATA4B\ ?
😎
August 13, 2014 at 12:19 am
Quick thought, if the indexes cannot be partition-aligned, how about dropping them before the switch and then re-create them?
😎
August 13, 2014 at 12:06 am
F/-\R//-\Z (8/12/2014)
hiI want Compare two Table data and insert changed field to the third table
who can help me
thanks a lot:-):hehe:
While I suspect that the requirements might possibly...
August 12, 2014 at 11:39 pm
Jeff Moden (8/12/2014)
It's even "worse" than that, although it works exactly as advertised. Please see the following article.
I was just about to update the post, adding a link to...
August 12, 2014 at 11:03 pm
Luis Cazares (8/12/2014)
http://www.amazon.com/Microsoft-Server-Fundamentals-Developer-Reference/dp/0735658145
You could also read some of the stairways...
August 12, 2014 at 10:51 pm
pratiksawant28 (7/21/2014)
I have an database name ABC. In this DB i have table name XYZ.
This table has the rows more than 1000, but suddenly from yesterday is was showing only...
August 12, 2014 at 10:47 pm
Further on mickyT's post, ISNUMERIC returns 1 for more than just numbers as the sample below shows
😎
USE tempdb;
GO
;WITH T(N) AS (SELECT N FROM (VALUES (NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL)) AS X(N))
,NUMS(N) AS (SELECT TOP(255)...
August 12, 2014 at 10:41 pm
Thank you Perry for this nice piece.
😎
August 12, 2014 at 10:22 pm
Jeff Moden (8/12/2014)
August 12, 2014 at 10:00 pm
Unless I really got it wrong, the sample data you provided should not return any records as the Tab2 effective_date is greater than the values in Tab1 effective_date, hence nothing...
August 12, 2014 at 9:56 pm
Viewing 15 posts - 7,516 through 7,530 (of 8,753 total)