Viewing 15 posts - 8,461 through 8,475 (of 15,381 total)
todd.ayers (5/2/2013)
How would I connect to those db that are created?
Well technically you don't connect to a database, you connect to an instance of SQL Server. Then from that connection...
May 2, 2013 at 1:14 pm
todd.ayers (5/2/2013)
ok I thought so, but I am having another DBA tell me that there have to be data bases built before those tools will connect to them
Yes that is...
May 2, 2013 at 1:03 pm
todd.ayers (5/2/2013)
May 2, 2013 at 12:44 pm
npyata (5/2/2013)
ffhand i think this would do it in a single shot,...
May 2, 2013 at 12:20 pm
One question I would ask is, do you care about the order? Your cursor has no order by so there is no guarantee what order the data will be returned....
May 2, 2013 at 12:01 pm
npyata (5/2/2013)
DECLARE @log_id INT
DECLARE @vr_seqno INT
DECLARE @getlogid CURSOR
SET @getlogid = CURSOR FOR
SELECT log_id
FROM [testdb].[dbo].[match_event_log]
OPEN @getlogid
FETCH NEXT
FROM @getlogid INTO @log_id
WHILE @@FETCH_STATUS =...
May 2, 2013 at 11:59 am
mjmshopper (5/2/2013)
May 2, 2013 at 11:57 am
Lowell (5/2/2013)
offhand i think this would do it in a single shot, but i'm looking for my friend Sean's matching post to be sure:
ROFL Lowell. I was at a meeting...
May 2, 2013 at 11:43 am
vks.gautam1 (5/2/2013)
thnx It is working now as per you recommnded
The big question is do you know why that fixed it?
May 2, 2013 at 7:56 am
rohit.anshu (5/2/2013)
I just came across an error, the cause of which is unknown to me.
why would a TSQL :
-----------------------------------------------------------------------
IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'Schema1' AND...
May 2, 2013 at 7:48 am
npyata (5/2/2013)
May 2, 2013 at 7:41 am
I think I may see part of the problem. You create a temp table but you never populate it. Then you try to update it and select from it.
CREATE TABLE...
May 2, 2013 at 7:39 am
vks.gautam1 (5/2/2013)
I am getting my data of current year even after adding range date. i tried everything but not found way to understand what i done wrong.
Hi and welcome...
May 2, 2013 at 7:33 am
umm....this new problem is not any better than the last one. Your inserts don't work as posted, your sample data compared to your output doesn't seem to match. The description...
May 2, 2013 at 7:23 am
Agreed about not sending in a where clause. I would guess that if you are wanting to pass in a where clause it is because you are building a search...
May 1, 2013 at 2:59 pm
Viewing 15 posts - 8,461 through 8,475 (of 15,381 total)