Viewing 15 posts - 61 through 75 (of 287 total)
Is this going to be an ongoing process or is it just a one-off?
May 16, 2013 at 6:06 am
arooj300 (5/15/2013)
I am new in SQL Server. I have a database whose size is almost 25 GB, there log size 18 GB and mdf file is 6.30 GB, and everyday...
May 16, 2013 at 5:04 am
You may find that the Intellisense that comes with SQL 2008 ain't that great.
ApexSQL do a free Intellisense AddIn for SSMS. One to try, if you like.
May 15, 2013 at 10:57 am
Apples and Oranges is right as they are indeed different but don't let that stop you picking it up if you'd like to as it is pretty much "data access"...
May 15, 2013 at 10:48 am
Your code run as a batch should work.
I think what you are probably doing is highlighting and running the statements individually which would reproduce the error you are getting.
May 9, 2013 at 6:59 am
Marcus Farrugia (5/1/2013)
update dbo.testTable set
fname = (select fname from dbo.testTable where pkid = 2)
where
pkid = 1;
Thanks Lynne!
if there were multiple columns...
May 2, 2013 at 5:30 am
Krishna1 (4/30/2013)
I am uisng following code. How do create a table for insert into when 2 resul sets are differnt? Please advice.
CREATE procedure PROC1 as
begin
Select 'aaa',1
select 1,2.22,'xxx'
end
go
DROP PROCEDURE PROC2
go
Create procedure...
April 30, 2013 at 1:34 pm
Krishna1 (4/30/2013)
I have one procedure PROC1 wich resturn multiple result sets. No of coulmn and Datatype of the result set are not same.
I want to access the result of...
April 30, 2013 at 10:00 am
Just something else you can also do if joining that many tables is all new to you.
You can join say the first two tables then check the output and then...
April 2, 2013 at 6:18 am
ssmith 29602 (3/28/2013)
I've got a SQL Server 2008 job which ran ok yesterday but has fail today with an error message ' Error authenticating proxy'. The only thing that has...
April 2, 2013 at 5:51 am
TheGlossBoss (3/27/2013)
March 27, 2013 at 9:43 am
denis.gendera (3/20/2013)
I'm having strange issue trying to do the following which I thought was just going to be straight forward
select top 5 machine.name, machine.model, machine.scantime
'INSERT INTO [SMS_000].[dbo].[BMCMachines] ([ComputerName],[MachineModel],[stime])...
March 20, 2013 at 8:46 am
mberman (3/19/2013)
I created a scratch table in the database (orders_del) that is just being used to hold the order#'s to...
March 20, 2013 at 8:06 am
Table Structures (this is where you need a database architect or a DBA pretending to be one)
This made me laugh 🙂 Very funny.
March 20, 2013 at 7:52 am
Just to clarify I meant the OLE DB Sql Command is run for every qualifying row not every row
I would add that the times I have seen the OLE DB...
March 15, 2013 at 5:59 am
Viewing 15 posts - 61 through 75 (of 287 total)