Viewing 15 posts - 10,711 through 10,725 (of 15,381 total)
rena24 (9/14/2012)
September 14, 2012 at 3:26 pm
The thing is that I am not allowed to use SSIS. Just Sql and executables are allowed
Sheesh!!! Some companies have the strangest rules/regulations about things. There is a tool that...
September 14, 2012 at 3:11 pm
GilaMonster (9/14/2012)
SQLRNNR (9/14/2012)
GilaMonster (9/14/2012)
SQL Kiwi (9/14/2012)
GilaMonster (9/14/2012)
SQL Kiwi (9/14/2012)
Lynn Pettis (9/14/2012)
Hey, any comments on what is posted here?My first reaction was, "LOL!". Posted a more serious comment.
Thank you, you...
September 14, 2012 at 2:43 pm
Are you reading this data in from a file? If so, then this is not a big deal at all. The biggest challenge is that if this data is already...
September 14, 2012 at 2:32 pm
martinetymic (9/14/2012)
some details:
d_an = first year with a specific medical condition
before this date : d_YEAR=0
after this...
September 14, 2012 at 2:01 pm
Sure I can help. But first you need to help me. See the first link in my signature about best practices when posting questions. Until you post stuff we can...
September 14, 2012 at 1:59 pm
GilaMonster (9/14/2012)
Lynn Pettis (9/14/2012)
Nothing like having two people obviously in over their heads this week.Which 2 are you thinking about?
Installing SQL 2012, dropping filegroups? Or are there more?
Several more than...
September 14, 2012 at 1:53 pm
martinetymic (9/14/2012)
in fact I did something similar:-)
'd_1998'=
case when diab_d1=1998 then 1
else 0
end,
but it is with the next step that I have some pb:
DECLARE @sql VARCHAR(500)
DECLARE @Annee INT
SET @Annee=1998
WHILE @Annee<=2011
BEGIN
SET @sql='UPDATE...
September 14, 2012 at 1:50 pm
Oh wow...I just looked a little closer at the details. You need to look at the numbers or tally table. This is not the right way to do whatever it...
September 14, 2012 at 1:15 pm
Something is missing here because you reference Primary_Import in your explanation and in your code but the table is not created.
The meat of your issue is found here:
The way...
September 14, 2012 at 1:13 pm
rena24 (9/14/2012)
I have a file with these Data -->
H;2334;8989;90;000
L;XXX;YYY;90;000
L;UUU;PPP;78;000
H;4445;855989;90;000
L;AAA;BBB;90;000
L;YYY;TTT;78;000
I want to set a primary Key (gid) to each row in that way -->
1;H;2334;8989;90;000
1;L;XXX;YYY;90;000
1;L;UUU;PPP;78;000
2;H;4445;855989;90;000
2;L;AAA;BBB;90;000
2;L;YYY;TTT;78;000
Is there any way to do this...
September 14, 2012 at 1:02 pm
martinetymic (9/14/2012)
I have a problem in sql server 2005 to submit :
My table 1 is as follows : 1 column with refid and one with a year (d_an)
Table 1
REFIDd_an
11998
22001
31999
42012
I would...
September 14, 2012 at 12:59 pm
omanjevincent (9/14/2012)
Hello all,How do I create a primary key on an existing sql database?
Vincent
Well a primary key belongs to a table, not the database. I think this link will probably...
September 14, 2012 at 12:52 pm
robert.baird 2778 (9/14/2012)
table1:
Name
Addy
Ph.
table2
RunDateTime
The package writes a new timestamp in table2 everytime its fired off, showing the begin time of the package (the update to...
September 14, 2012 at 12:50 pm
Gary Noter (9/14/2012)
VaxTable as VT
- table2RecordID
- vaxDate
- customerID
- dollarAmount
CustomerRequestTable as RT
-...
September 14, 2012 at 12:48 pm
Viewing 15 posts - 10,711 through 10,725 (of 15,381 total)