Viewing 15 posts - 10,171 through 10,185 (of 13,461 total)
also use the search feature here on SSC for "Base64"; there are a number of forum posts and submitted scripts to encode/decode;
here's the first of many i found:
December 30, 2009 at 11:54 am
char 160 in a lot of fonts looks like a space; if you use it in an html document, multiple char(160)'s in a row get respected as valid chars to...
December 30, 2009 at 9:41 am
i think filenames/paths with spaces need to be wrapped in double quotes, right?
also, are you not CALLING the datapump? why is the DIR command in there?
exec master.dbo.xp_cmdshell '"C:\Program Files\Monarch Data...
December 30, 2009 at 9:12 am
i couldn't find a way to change it in the GUI, but when i looked in the registry, I found the spot to change it:
the key HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\100\Tools\Shell has...
December 30, 2009 at 9:07 am
Rider i added a CASE in order by with two columns, and it seems to do exactly what you were after; am i missing anything?:
here's my results:
PART TYPE ...
December 29, 2009 at 12:30 pm
ouch that changes things a bit;
can you please do a SELECT DISTINCT ColumnName From yourtable, so we can have the list of columnnames to normalize this data into? so...
December 29, 2009 at 11:26 am
Justin James (12/29/2009)
One question I have about your SQL:
select ID/6 as REC, [ID]%...
December 29, 2009 at 10:43 am
Ray K (12/29/2009)
December 29, 2009 at 10:18 am
in TSQL, you could search for where any string begins by using the CHARINDEX function; it is the equivilent of vb INSTR function, or .NET's string.IndexOf("StringToFind")
if it is greater than...
December 28, 2009 at 10:56 am
i just googled "free system monitoring software" and found lots of stuff;
you want to watch for more than just the SQL server service being up or down; you've also got...
December 28, 2009 at 7:11 am
QML you did not answer any of the questions asking for clarification.
please, please read the comments a bit slower, and try to reply back to us to determine what you...
December 28, 2009 at 6:48 am
everything is working as expected; the user cannot directly insert/update/delete from the tables.
the assumption is that if you grant EXECUTE to a stored procedure, then the procedure can do whatever...
December 28, 2009 at 6:39 am
mahesh when i read BOL, it has this statement:
http://msdn.microsoft.com/en-us/library/ms188354.aspx
what user are you logged in as before you try to execute as 'dom'? are you in as sa or a sysadmin...
December 28, 2009 at 6:29 am
the error message is the clue: you can't select the row_id_no, because it is not part of the subquery in parenthesis.
remember what i said about aliases and parenthesis? that goes...
December 27, 2009 at 8:29 pm
a subselect in parenthesis must have an alias;
formatting helps identiy the problem, too:
SELECT
max(DWT40034_BZL_VAT_TAX.ROW_ID_NO)
from
(
select
DWT40034_BZL_VAT_TAX.INTGRT_CNTRY_CD,
DWT40034_BZL_VAT_TAX.ORD,
...
December 27, 2009 at 8:07 pm
Viewing 15 posts - 10,171 through 10,185 (of 13,461 total)