Viewing 15 posts - 9,541 through 9,555 (of 13,461 total)
ok the error you can get is:
“The Maximum number of tables in a query (260) was exceeded”.
i poked around using my Google-Fu, and that seems to be the limit;...
May 4, 2010 at 9:55 am
i remember a post from Jeff Moden mentioning that a view could only have ~200 references; it was less than 255 but more than 200; so if you have 400...
May 4, 2010 at 9:21 am
EXCEPT requires the same number of columns from both tables.
remember it's comparing row to row based ont he columns you select, so you need to either remove Column 2 from...
May 4, 2010 at 9:19 am
yet another day where i learned something I didn't know.
Thansk for this post, Brian. Good to know!
May 4, 2010 at 9:16 am
yeah it's so easy once you've discovered ti you want to kick yourself... I found out the hard waywhen i bought a new laptop and installed both SQL 2005 and...
May 4, 2010 at 8:19 am
with both .net and SQL server's built in tools, eventually someone can reverse engineer decrypt everything.
SQL server has to be able to compile any encrypt stored procs/functions ; the WITH...
May 4, 2010 at 7:38 am
Opus it's been a while since i added an oracle linked server; here is the syntax i've used, i put in your server and username to what i think is...
May 3, 2010 at 7:00 pm
Ray i had the same thing happen; locked out of a new install.
the fix is to add yourself as an administrator; you should be able to find the SQL 2005...
May 3, 2010 at 6:53 pm
ok completely different situation than i thought.
Sybase is a database engine, the same way SQL Server is; you'd want to create a linked server in SQL Server to connect to...
May 3, 2010 at 6:35 pm
I'm surprised noone mentioned the Default Trace yet, that contains all the recent DDL Changes;
there's a built in report from the default trace in SSMS: shows table drops and created,...
May 3, 2010 at 8:40 am
Randy i would love to help; these questions are low hanging fruit for me, and helps anyone who reads the thread, but
without the definitions of the tables, anything like an...
May 3, 2010 at 8:09 am
you have to use a varbinary(max) to replace an IMAGE datatype;
I just tested it, and by simply changing the datatype with this command, i did not get any errors...
May 3, 2010 at 6:52 am
najib_sherzadd (5/1/2010)
Hello lowel brother,My table stracture like that
create table salary(id int(9), name char(23), fathername char(23),
Salary number(12))
thanks,
Najibullah sherzad
OK Najibullah; i noticed the Salary is datatyped as number(12), so i...
May 2, 2010 at 6:18 am
Viewing 15 posts - 9,541 through 9,555 (of 13,461 total)