Viewing 15 posts - 7,261 through 7,275 (of 13,460 total)
it depends on the encryption algorythm;
many encrypt to varbinary, but some others can encrypt to varchar/nvarchar for the encrypted values (AES =varchar, for example),
SQL's built in...
June 29, 2011 at 7:10 am
what does not working mean?
you are showing something from excel that you pasted...that doesn't have anything to do with SQL errors or not working as expected or anything., though...
help us...
June 29, 2011 at 6:57 am
TOP 1 isn't useful without an ORDER BY.
if you run this:
SELECT * FROM table
where psp_item_no = 'DRR07DFAB0034'
AND psp_ps_no = 16
how many rows show up? if there is more...
June 29, 2011 at 6:47 am
nested replaces is the way to do it...same as you started:
replace(replace (xxx,"'","^") ,"""","^")
June 29, 2011 at 6:15 am
if you have physical access to the server(laptop?), the first thing to do is right click SSMS...run as...administrator and see if that gets you in.
after that, you might need to...
June 29, 2011 at 5:48 am
a trigger runs with every update of course, but the action that it does inside might be limited based on some logic.
also you've got to consider multiple rows in a...
June 29, 2011 at 5:15 am
try like this:
insert into ##tmp (ColumnListMatchingsp_dependsOutput)
EXEC (@sql)
if you identify the specific columns, you can have more columns in the table than the proc would insert.
June 28, 2011 at 2:53 pm
SQL 2005? is this 64 bit or 32 bit?
June 28, 2011 at 2:48 pm
there is no default order by.
without an ORDER BY , ther eis no guarantee the data is returned in any order.
sometimes, by coincidence, the data is returned in the...
June 28, 2011 at 2:44 pm
it kind of sounds like some dynamic sql and using sp_sendmail would do the trick, just as Welsh Corgi suggested; i'd like to see a little more detail, like a...
June 28, 2011 at 12:38 pm
here's my quick take.
1. Rebuild Indexes - good.
2. Update Statistics - only for those columns NOT participating in an index, since the Rebuild of the Index takes care of the...
June 28, 2011 at 9:35 am
i cannot think of another way to do it easily; row_number makes the join simpler, but you could join two copies of the tables together based on the name ...
June 28, 2011 at 9:00 am
no way to do types, views , procs or functions automatically...you have to edit them and make their definitions find-and-replace ready for editing.
the originals typically may reference items in the...
June 28, 2011 at 8:55 am
the list is a list of all ODBC drivers installed and registered on the server .
the ace driver gets installed when you install this:
http://www.microsoft.com/downloads/details.aspx?FamilyID=c06b8369-60dd-4b64-a44b-84b371ede16d
it might also be installed if you...
June 28, 2011 at 8:12 am
looks like you are missing another function: dbo.weeknumber
June 28, 2011 at 7:53 am
Viewing 15 posts - 7,261 through 7,275 (of 13,460 total)