Viewing 15 posts - 691 through 705 (of 760 total)
From whatever I could understand I came up with this script. Try this and tell me if it meets your requirement.
--Create Table
Create Table Ex
(Itemcode varchar(10),
Field1 varchar(10),
Field2 varchar(10),
Field3...
April 17, 2012 at 4:38 am
If you mean that A100 and C100 are same on the basis of field values, then instead of using cursor then can be selected in a SET based manner as...
April 17, 2012 at 3:51 am
"Example
Itemcode Field 1 Field 2 Field 3 Field 4
A100 A B C D
B100 B C D E
C100 A B C D
The unique items are thus A100 & C100. We...
April 17, 2012 at 3:25 am
Here is my point of view on when to use which Replication Topology:
Snapshot Replication
Use snapshot replication when you want an occasional data push done. Because all data is moved...
April 17, 2012 at 3:16 am
What do you mean by BLOCKING?
According to Microsoft the following is BLOCKING:
Is that what you mean??...
Anyways you can get the Database back to that state if you have a Database...
April 17, 2012 at 3:14 am
If the id in first table is an Identity, then you have to use Scope_Identity to know the last inserted Identity and then insert value into the other table with...
April 17, 2012 at 2:59 am
I am not sure about this(haven't faced such a problem before), but maybe the SSIS installed is the 32 bit version and may not work for 64 bit.
Have you checked...
April 17, 2012 at 2:28 am
Q. Can you use a table to join multiple columns?
Yes, Using Aliases.
April 17, 2012 at 12:08 am
;WITH fechas (fecha) AS (
SELECT GETDATE() AS fecha UNION ALL
SELECT DATEADD(day,10, fecha) from fechas )
select fecha from fechas
option (maxrecursion 32767)
The above code causes an infinite recursion. "SELECT DATEADD(day,10, fecha)...
April 16, 2012 at 11:56 pm
Yea. Select works multiple times in an SP.
The difference between using PRINT and SELECT is simply the difference of a SQL DBA's(or developers) thinking and any other developer's thinking.
SQL was...
April 16, 2012 at 11:32 pm
Did you install Integration Services independantly??...
April 16, 2012 at 11:01 pm
You're Welcome. I'm glad I could help.
April 16, 2012 at 10:57 pm
If you can see the job using Windows Explorer then do the following to create a job and run it as a part of the trigger. I just tried this...
April 16, 2012 at 10:31 pm
+1 on dat Jeff.
My Sincere thanks to everyone.
April 16, 2012 at 10:18 pm
Unique Index - Allows one(and only one) Null value.
Primary Key - Does not allow Nulls.
April 16, 2012 at 9:54 pm
Viewing 15 posts - 691 through 705 (of 760 total)