Viewing 15 posts - 11,056 through 11,070 (of 26,486 total)
But, you might be able to get a team together from here that can help, if you are willing to work with geographically dispersed individuals.
The marvels of modern technology.
June 26, 2012 at 10:22 am
sturner (6/26/2012)
patrickmcginnis59 (6/26/2012)
sturner (6/26/2012)
One other thing about the three entrepreneurs you cited: they all achieved their success without a dime of government stimulus (i.e taxpayers money).Counterpoint: the Apollo space program.
Its...
June 26, 2012 at 10:17 am
bitbucket-25253 (6/26/2012)
Any one interested in convincing this OP that for a development / design / implementation contract as a consultant they would help him/her solve their problem.http://www.sqlservercentral.com/Forums/Topic1321325-391-1.aspx
As an individual, nope....
June 26, 2012 at 10:14 am
Not sure why you got the error message you did, the function only has one parameter and you are passing it one parameter.
The following, however, is how I would do...
June 26, 2012 at 10:05 am
ScottPletcher (6/26/2012)
You're more likely to lose a complete RAID1 mirror, than you are 3 drives out of a 4 disk RAID10 array
OK, but it's not the odds against losing it,...
June 26, 2012 at 9:32 am
Sean Lange (6/26/2012)
Robert.Sterbal (6/26/2012)
I guess I'm trying to figure out where to spend my time going forward. Please add to the list as needed
I guess that depends on what you...
June 26, 2012 at 9:28 am
Try the following code snippet based on what you originally posted:
DECLARE @Document TABLE (DocumentID INT);
INSERT INTO C_Documents (
DocumentSectionID,
FullPath,
FileName,
FileTitle,
Description,
UserID,
DateCreated,
TimeStamp
)
OUTPUT INSERTED.DocumentID INTO @Document(DocumentID)
VALUES (
@DocumentSectionID,
@FullPath,
@FileName,
@FileTitle,
@Description,
@UserId,
GETDATE(),
GETDATE()
);
INSERT INTO F_ProjectDocument(
ProjectID,
RoundID,
DocumentID,
DocumentTypeID,
FFPUploadID,
UploadOn,
UploadBy,
DateCreated,
UserID,
TimeStamp
)
SELECT
--VALUES (
@P,
@R,
D.DocumentID,
@DocumentTypeID,
@FFPUploadID,
GETDATE(),
@UserId,
GETDATE(),
@UserId,
GETDATE()
--)
FROM
@Document d;
June 26, 2012 at 9:16 am
UconnDBA (6/26/2012)
...
June 26, 2012 at 9:01 am
river1 (6/26/2012)
I have this query:
(SELECT
DISTINCT([NIF_ANTIGO]),
[NIF],
[FILIAL_NUMBER],
[STATUS],
[COD_GRP_CONTRIBUINTE],
[COD_TP_SINGULARES],
[COD_MET_TRIBUTARIO],
[COD_TP_IMPOSTOS],
[GRANDE_CONTRIBUINTE],
[NOME],
[MORADA],
[COD_CIDADE],
[C_POSTAL],
[TELEFONE],
[FAX],
[COD_PROVINCIA],
[COD_MUNICIPIO],
[COD_REP_FISCAL],
[DT_INICIO],
[DT_ALTERACAO],
[DT_CESSACAO],
[COD_MOT_CESSACAO],
[MOT_CESSACAO],
[COD_TP_INSTITUICAO],
[COD_FUNC],
[COD_COMUNA],
[COD_BAIRRO],
[OBS],
[DT_BEGIN],
[BI],
[OLD_NIF],
[PSERVTCO],
[PSERVTCP],
[PSERVA],
[DTACESSACAOTCO],
[DTACESSACAOTCP],
[DTACESSACAOA]
FROM
BULK_CONTRIBUINTES_21 A
WHERE
A.VALIDO_BULK IS NULL AND
A.NIF_ANTIGO NOT IN
(SELECT NIF_ANTIGO FROM SGCTCentral.DBO.CONTRIBUINTES WHERE NIF_ANTIGO IS NOT NULL) )a
Shoudn't it return only...
June 26, 2012 at 8:54 am
I'd say both queries have issues as well. Since you are apparently using SQL Server 2005 (this is a SQL Server 2005 forum you posted in) and are using the...
June 26, 2012 at 8:38 am
Please realize that I am just shooting in the dark here since I can't see from here what you see there. If it is the service account, you should...
June 25, 2012 at 6:26 pm
mtillman-921105 (6/25/2012)
Lynn Pettis (6/25/2012)
Evil Kraig F (6/25/2012)
bitbucket-25253 (6/25/2012)
June 25, 2012 at 6:15 pm
Which server are you trying to run SSIS package? I wouldn't be surprised if the problem is the account on which your Dev box is running (Local Service Account)...
June 25, 2012 at 5:50 pm
Evil Kraig F (6/25/2012)
bitbucket-25253 (6/25/2012)
Any one know if those spreading Colorado wild fires are threatening Steve's home or the horses? Any one hear from Steve on twitter or whatever?http://news.yahoo.com/colorado-fire-near-pikes-peak-forces-11-000-014551591.html
He's...
June 25, 2012 at 5:40 pm
Viewing 15 posts - 11,056 through 11,070 (of 26,486 total)