Viewing 15 posts - 9,526 through 9,540 (of 13,461 total)
i suspect you need to use ISNULL for each of your columns, right?
concatenating NULL to anything is null, so i think that's the problem:
DECLARE @tableHTML NVARCHAR(MAX);
SET @tableHTML =
N'<H1>Hot Item(S)...
May 6, 2010 at 8:56 am
you don't really print results; you'll want to toggle between grid mode and text mode to get the results you want.
in SSMS click control + t to switch to text...
May 5, 2010 at 8:26 pm
also, isn't your UPDATE statemnt in a non-SQL server format?
i'd think it should be something like this:
UPDATE p.dbo.B
SET hotflagemail = 1
WHERE isnull(available_qty,0) = 0
AND isnull(available_qty_temp,0) = 0
AND...
May 5, 2010 at 12:05 pm
exec sp_tables_ex MyLinkedServer will show you all the tables in the linked server that you can directly access; from there it's things like select * from MyLinkedServer...Tablename, and you might...
May 5, 2010 at 11:56 am
Paul thank you so much for providing the code you were trying to use; it gave me everything i needed to try and look at the issue. Since this was...
May 5, 2010 at 11:51 am
no it's not possible; the html textbox item itself does not support internally changed fonts;
you could use a <span> tag instead of a textbox, that would allow you to put...
May 5, 2010 at 9:17 am
some errors are driver specific; your error said this specifically: spaces, tabs, or carriage returns as delimiters.
my code obviously had lots of CrLf's for readability; can you jsut add a...
May 5, 2010 at 9:11 am
b.noof (5/5/2010)
it's just a variable and not a table
no it's not. variables do not have row indexs or columns.
your multiple quotes demonstrate it over and over again:
v_accounts_info_table(index).account_sequence for example
v_accounts_info_table(v_account_id).account_sequence...
May 5, 2010 at 9:07 am
i think in Oracle, a semicolon is manditory to determine the end of a statement;
i reformatted your queries and pasted them into SLq Developer, and got the same error.
when i...
May 5, 2010 at 8:37 am
the utility i described should work for you;
i found out the hard way on a new Windows7 laptop; the security is tighter, and it does not automatically add the person...
May 5, 2010 at 8:28 am
Henrico Bekker (5/5/2010)
drop the account from the DB, recreate it on sql...
May 5, 2010 at 7:12 am
i think you can use the Surface Area Configuration tool to add yourself as an administrator, and then change the passwords of the lost admins, including "sa", right?

May 4, 2010 at 8:30 pm
Well, my SSMS is actually what gets installed with SQL 2008 standard; it runs the reportagainst any database I point it at;
your SSMS might not have that feature;
anyway, i profiled...
May 4, 2010 at 10:59 am
Viewing 15 posts - 9,526 through 9,540 (of 13,461 total)