Viewing 15 posts - 406 through 420 (of 462 total)
I am just giving it a wild guess, I had not seen that in SQL Server atleast. Lets if someone knows about it. Otherwise what you can do is create...
September 2, 2009 at 1:50 am
You should give data like this to get an answer. See if this solution works in your case.
CREATE TABLE Group_Test(Group_ID int, Status varchar(5))
INSERT INTO Group_Test VALUES(1, 'NPL')
INSERT INTO Group_Test...
September 1, 2009 at 7:29 am
Hi Sharon,
I was closely watching this post if anyone would reply with an answer. I wanted to ask if you could check any other small 'MSI installation' on the machine...
September 1, 2009 at 4:30 am
I know! In Toad you will be prompted with an input box to enter the values.I am not sure if it is there in SSMS. Lets see if anyone else...
September 1, 2009 at 3:12 am
john.imossi (9/1/2009)
I've created a date range within the WHERE clause:WHERE Date Between CONVERT(DateTime, '01-JAN-2008 00:00:00', 103)
AND CONVERT(DateTime, '31-DEC-2008 23:59:59', 103)
Thanks
Not sure if this is what you were looking for,
Create...
September 1, 2009 at 2:34 am
Sample quey is:
select bg.[Group ID],
bg.[Number],
[Status]
from
...
September 1, 2009 at 2:26 am
Thanks Garadin and thanks Mark. We would have to work our way out using these two operators!!!!.
August 31, 2009 at 7:45 am
Mark (8/31/2009)
naveenreddy.84 (8/31/2009)
CREATE TABLE Sequence
(ID INT,
Seq VARCHAR(MAX))
INSERT INTO Sequence VALUES(1,'01111')
INSERT INTO Sequence VALUES(1,'10111')
INSERT INTO Sequence VALUES(1,'11011')
INSERT INTO Sequence VALUES(1,'11101')
INSERT INTO...
August 31, 2009 at 7:14 am
I cant give the entire query, try creating row_id partition by date and your id. Create a temporary table of this may be. Cross join tables. Look for the existence...
August 31, 2009 at 6:58 am
venki.ffcl (12/29/2008)
hi,Can i have two or more instances of sql server running in my machine and access the same simultaneously. If yes how?
Please help...
thank you
Yes you can have multiple instance...
August 31, 2009 at 6:25 am
Assuming its the tli1.updatetime in the select clause, I am guessing yes. Try giving tli2.updatetime in the select query as well? That is what you need isnt it?
August 30, 2009 at 11:00 pm
Thanks all for all your help. Temporarily managed to push the data into the database using your suggestions. Its nice to know that you all explain 'whats really happening' rather...
August 30, 2009 at 10:52 pm
Florian Reischl (8/28/2009)
Use CONVERT to convert ColX and ColY to VARCHAR in your "THEN"-parts
Thanks Florian, it works that way.
I was just curious to know what was happening.
Point is...
August 28, 2009 at 8:32 am
Viewing 15 posts - 406 through 420 (of 462 total)