Viewing 15 posts - 496 through 510 (of 761 total)
Yes there are third party tools using which you can synchronize Outlook with MSSQLServer. Following are a few I have heard of(but haven't used):
May 7, 2012 at 11:38 pm
From what I understand.....I think you are looking for a Left Outer Join.
I recently saw this very good explanation on JOINS. I think you should check the following link...you might...
May 7, 2012 at 11:26 pm
This is the edited procedure:
CREATE PROCEDURE dbo.CreerComplement
-- Add the parameters for the stored procedure here
@CMP_ID uniqueidentifier = '00000000-0000-0000-0000-000000000000' OUTPUT,
@Dos_ID uniqueidentifier,
@Cmp_NoBr nvarchar (50),
@Cmp_Desc nvarchar (50),
@Cmp_verse money,
@Node nvarchar (50)
AS
BEGIN
-- SET NOCOUNT ON...
May 7, 2012 at 11:17 pm
Something like this:
Select Col1, Col2, Col3, (Col1 + Col2 + Col3)/Col3 As Col5 From TableName
May 7, 2012 at 6:20 am
This might work:
Select * From Ex
Where DEPTNO In (Select DEPTNO From Ex Where ENAME = 'SCOTT')
Edit:
If you Don't want Scott in the result set then you can edit the above...
May 7, 2012 at 6:00 am
Works perfectly without any error
May 7, 2012 at 5:42 am
Nope. That's not necessary. You can create Tables in any way depending on your requirement.
May 7, 2012 at 5:32 am
This might help you in this context:
May 7, 2012 at 3:55 am
elham_azizi_62 (5/6/2012)
I put script for insert in to tables that used in view.please first create tables and insert into its and then run view.please give me script of pivot for...
May 7, 2012 at 3:49 am
You have got yourself confused with User Defined Functions and User Defined CLR Functions.
What you are trying to do can be done using a simple USER DEFINED FUNCTION
What you are...
May 5, 2012 at 4:51 am
The View that you created doesn't show any data....you need post the sample data in the tables which would show in the View. Since you want to pivot the View...without...
May 5, 2012 at 2:31 am
I give up...I've banged my head on this for really long....I have come to the conclusion that a loop cannot be avoided in this scenario.
However un-SetBased( 😛 ) or Procedural...
May 4, 2012 at 6:49 am
You're not thinking SET-based, you're thinking procedurally. SQL is designed for set operations, if you're using it for procedural code then you're probably doing something wrong.
I agree with you...
May 4, 2012 at 6:28 am
Cadavre (4/25/2012)
Method 2:
SET NOCOUNT ON;
--DDL
CREATE TABLE Ex (NAME VARCHAR(30));
--Sample Data
INSERT INTO Ex
SELECT 'Jack'
UNION ALL SELECT 'Vinu'
UNION ALL SELECT 'Jim'
UNION ALL SELECT 'Stan'
UNION ALL SELECT 'Ash';
--No Cursors
SELECT
MAX(CASE WHEN rn =...
May 4, 2012 at 4:43 am
This might help:
--Creating Table
Create Table Ex
(Date Date,
StoreName varchar(10),
ItemID varchar(10),
Lcount int )
--Inserting Sample Data
Insert Into Ex
Select '11/22/2011', 'AAAAA', 'Z123', 5
Union ALL
Select '11/22/2011', 'BBBBBB', 'Y688', 6
Union ALL
Select '11/22/2011', 'CCCCC',...
May 4, 2012 at 2:44 am
Viewing 15 posts - 496 through 510 (of 761 total)