Viewing 15 posts - 9,646 through 9,660 (of 13,469 total)
SQLWB.EXE = SQL Work Bench, otherwise knows as SQL Server Managment Studio; that's the executable you are using to look at and connect to SQL server, running the sqlserver.exe process.
April 22, 2010 at 7:21 am
Grant Fritchey (4/22/2010)
April 22, 2010 at 6:12 am
jameswhitby (4/22/2010)
By doing that I get the following error message:
Msg 7313, Level 16, State 1, Line 1
An invalid schema or catalog was specified for the provider "Ifxoledbc" for linked server...
April 22, 2010 at 4:25 am
james it's probably just the dbname.schemaname then;
you said you were running this commnad:
select * from LIVE.live_db.informix.thistable
try
select * from LIVE...thistable instead; that lets the linked server infer the dbname and...
April 22, 2010 at 4:11 am
when you concatenate, you cannot alias the CASE statement...right at the end of your case you have this:
end as type||','||
also you have a logic hole: null concated with anything...
April 21, 2010 at 5:29 pm
yes you can Eric; i did the same thing making a SSMS clone in .NET, for me it was just for fun, but you learn all the pieces you need.
What...
April 21, 2010 at 5:26 pm
Elliott W (4/21/2010)
So the PHB strikes again..CEWII
it took me 3 searches for the definition till i found Pointy Haired Boss, which i should have realized right away...
i have a bunch...
April 21, 2010 at 3:05 pm
homebrew01 (4/21/2010)
Maybe I jumped through hoops that I didn't need to ?!
well, I've never had to restart the default trace or a c2 trace; i could be wrong, but that's...
April 21, 2010 at 2:59 pm
am i reading this wrong?
i thought a server side trace starts when you run the command EXEC sp_trace_setstatus @traceid, 1, and runs continuously. rebooting or stopping/starting the server...
April 21, 2010 at 1:56 pm
solid advice so far; I agree with everyone above that encryption should be selective to specific items.
think it through a little though:
Is it not true that if EVERY field is...
April 21, 2010 at 10:08 am
try this command first:
EXEC sp_tables_ex LinkedServerName
that should give you a list of the tables the login you are using can view/has access to;
if the linked server has access to more...
April 21, 2010 at 8:36 am
well, you can't get TRUNCATE to activate a trigger on a table;from BOL:
TRUNCATE TABLE cannot activate a trigger because the operation does not log ... the db_owner and db_ddladmin fixed...
April 21, 2010 at 7:24 am
in 2005 and above, syscomments is a view, and no matter the override setting, cannot be updated.
please test any advice you make before posting it...it can mislead floks who don't...
April 21, 2010 at 6:15 am
just use the ISNULL function to convert the null, i would think should work just fine:
SELECT
C.LOCATION_NAME,
SUM(ISNULL(A.SALE_AMOUNT,0.00)) AS SALE_AMOUNT
FROM SALES A,
LEFT OUTER JOIN ACCOUNT...
April 20, 2010 at 4:08 pm
you'll need to paste the exact code you are using; encrypting part of a string, then concatenating the decrypted results is easy, so it's probably something fairly basic that is...
April 20, 2010 at 2:45 pm
Viewing 15 posts - 9,646 through 9,660 (of 13,469 total)