Viewing 15 posts - 1,906 through 1,920 (of 2,647 total)
eseosaoregie (1/19/2012)
January 19, 2012 at 3:13 pm
Evil Kraig F (1/19/2012)
eseosaoregie (1/19/2012)
January 19, 2012 at 3:11 pm
SQLKnowItAll (1/19/2012)
rpt_tblOracleCustomers.[Account Number]
Is incorrect. It is either:
databaseName.rpt_tblOracleCustomers.[Account Number]
OR
rpt_tblOracleCustomers.schemaName.[Account Number]
First... Use aliases so your select statement is shorter:
SELECT alias.column1, alias.column2
FROM server.database.schema.table alias
Second... Text should be enclosed in single quotes and...
January 19, 2012 at 3:08 pm
EDIT... I counted wrong... Removed statement.
January 19, 2012 at 3:03 pm
rpt_tblOracleCustomers.[Account Number]
Is incorrect. It is either:
databaseName.rpt_tblOracleCustomers.[Account Number]
OR
rpt_tblOracleCustomers.schemaName.[Account Number]
January 19, 2012 at 3:01 pm
Based on the information you gave and the question you asked...
SELECT PACKAGE,CODE,[DESCRIPTION]
FROM #TEST
WHERE PACKAGE = 12000 AND CODE = 'BOXC' AND [DESCRIPTION] = 'BOXING'
So, if there is more to this,...
January 19, 2012 at 2:58 pm
I think some here are operating under the assumption that no previous due dates are in that table. That's why they are selecting TOP 1.
My guess is that...
January 19, 2012 at 2:46 pm
SQLKnowItAll (1/19/2012)
Ok, look at this:
Select @Filename, @Databasename
from #TempTable
where ID_Num = @I
@filename and @databasename have not been set to anything. So they are NULL.
Are you getting this? HINT: SELECT @filename...
January 19, 2012 at 2:31 pm
Ok, look at this:
Select @Filename, @Databasename
from #TempTable
where ID_Num = @I
@filename and @databasename have not been set to anything. So they are NULL.
January 19, 2012 at 1:59 pm
Right off the bat I can see that you are using 2 ## instead of 1 for your temp table...
January 19, 2012 at 1:51 pm
Adam Machanic (1/19/2012)
TravisDBA (1/19/2012)
Come on guys. :w00t: Drop the crack pipe and step back away please. RIF (Reading Is Fundamental) 😀
Oooohhh, Reading! Yeah, I *totally* agree. You should start reading...
January 19, 2012 at 1:45 pm
TravisDBA (1/19/2012)
Come on guys. :w00t: Drop the crack pipe and step back away please. RIF (Reading Is Fundamental) 😀
I thought a Borg reference was acceptable since we are all a...
January 19, 2012 at 1:42 pm
Adam Machanic (1/19/2012)
TravisDBA (1/19/2012)
Fact. RIF.
Realistic Imitation Firearm ? 😀
Room Inventory Form? 😀
Ruhe in Frieden? 😀
Routing Information Field? 😀
Rain-Induced Fade? 😀
Rapid Innovation Fund? 😀
😀 😀 😀 😀 😀 😀 😀 :-D...
January 19, 2012 at 1:34 pm
ohack (1/19/2012)
Posted this in the SS2K5 Replication forum a couple of days ago but it seems very quiet there. This issue comes about under SQL 2008 as well so...
We've changed...
January 19, 2012 at 12:32 pm
guerillaunit (1/19/2012)
January 19, 2012 at 12:20 pm
Viewing 15 posts - 1,906 through 1,920 (of 2,647 total)