Viewing 15 posts - 5,236 through 5,250 (of 13,465 total)
the UPPER function is what you want in the query, or you can format it in the report side of things with the UCASE or .ToUpper function;
similarly, there is a...
July 9, 2012 at 11:31 am
it's not clear what you are asking...why would i want to update "mick"s balance with the information from "Jack"? for example? I'm sure that's not what you meant, but you...
July 9, 2012 at 11:14 am
i wouldn't be fixated on having a primary key just for the sake of having a primary key;
if you will be searching by [logtime] date primarily , i would simply...
July 9, 2012 at 11:02 am
you replaced "D" with a space.
repalce with an empty string instead:
select LTRIM(REPLACE(A_H, 'D', '')) from tableA
July 9, 2012 at 8:18 am
if you search the forums here, there is a function "dbo.StripnonNumeric" that could help as well;
July 9, 2012 at 7:08 am
also take a look at the two articles here on SQL Server Central;
they list a lot of free tools, some of which are related to monitoring:
July 9, 2012 at 6:13 am
julien.dutel (7/6/2012)
July 6, 2012 at 1:27 pm
this will generate the statements so you can copy and paste them with just a little bit of cleanup:
SELECT
'SELECT Signal_Index, Sample_TDate_' + convert(varchar,N) + ', Sample_Value_' + convert(varchar,N) + '...
July 6, 2012 at 1:09 pm
by default, a linked server will only show the objects available in the DEFAULT DATABASE of the loginthat is connecting;
That's important, because if you have a login 'bob' that has...
July 6, 2012 at 11:18 am
to get just the existing procs, you want to use the sys tables to help generate the commands you need:
SELECT
'GRANT ALTER ON ' + schema_name(schema_id) + '.' + quotename(name)...
July 6, 2012 at 11:12 am
Kenneth.Fisher (7/6/2012)
July 6, 2012 at 11:08 am
I purchased the SSMS Addin from The same company BrainDonor mentioned;
$50 bucks, and I went for the add-In vs the batch processing executable, as my coding is more...
July 6, 2012 at 9:57 am
print your @tableHTML variable before you get to the sp_sendmail.
is it null, maybe due to concatination? that would make your html body blank for sure.
check your one parameter and three...
July 6, 2012 at 8:52 am
this was an interesting article on setting custom file attributes;
http://blog.rodhowarth.com/2008/06/how-to-set-custom-attributes-file.html
i found it interesting that you can set attributes on non- MS Office files, and the attribute stays as long as...
July 6, 2012 at 8:48 am
most likely permissions.
The problem is that when you access any resource OUTSIDE of SQL server, like network shares, local hard drives and folders,xp_cmdshell,bcp with a "trusted" connection, sp_OA type functions...
July 6, 2012 at 5:24 am
Viewing 15 posts - 5,236 through 5,250 (of 13,465 total)