Viewing 15 posts - 7,051 through 7,065 (of 13,460 total)
MySQL Syntax?
Lowell
July 29, 2011 at 8:20 am
we'd have to see your actual code you executed;
nia.CHARINDEX really implies something you changed.
the CHARINDEX function is builtinto SQL, just like ISNULL...so if you preface it with a schema name...
Lowell
July 29, 2011 at 7:13 am
- Win. (7/29/2011)
Sorry track this to another way.
- Is there anyway that to track the Logins, created date, accessed date, when it was accessed the particular database.
Is this...
Lowell
July 29, 2011 at 6:38 am
defintiely the second; if you grant per item, otherwise if you drop and recreate a proc, or add a new proc you have to regrant the permissions
that's very similar...
Lowell
July 29, 2011 at 6:24 am
http://technet.microsoft.com/en-us/library/ms189612(SQL.90).aspx
db_owner has all the rights of these subordinate roles as well...
basically the db_owner role can do anythign to the database..back it up, drop it, or create/change/destroy anything within that...
Lowell
July 28, 2011 at 11:03 am
parameters don't do what you are expecting them to do there...@level is a string, which [by coincidence] contains commas, which makes you think it might do somethign special.
to do what...
Lowell
July 28, 2011 at 9:42 am
a lot of scrambling of data is specific to the tables and lookups invloved;
I've got something that replaces all existing data with something like this (street names are a random...
Lowell
July 28, 2011 at 7:32 am
the LIKE operator can be used in a join, as well as CHARINDEx or PATINDEX to try and find matching criteria.
see how i provided copy-and-pasteable CREATE TABLE and sample data...
Lowell
July 28, 2011 at 6:04 am
not bad to, good job posting your work. since you put some effort into the homework problem , let me try to offer some constructive advice.
i think i see two...
Lowell
July 27, 2011 at 12:54 pm
Thanks everyone;
I've attached it successfully as a user database and will now make a huge mess of things.
Thanks!

Lowell
July 27, 2011 at 12:08 pm
what you want to do is all the case logic inside the SELECT, without using that extra variable.
something like this is syntactically correct...let me know if it is logically correct:
select...
Lowell
July 27, 2011 at 9:38 am
at our shop, we have to do both SQL and Oracle;
as a result, to make our scripting a little easier, we added this package a long time ago;
this makes the...
Lowell
July 27, 2011 at 9:20 am
Nice, Jason, i like that...
I think she has data that is not in 4 part naming conventions tho...version 10.45 compares to 8.34.53.2234 for example....i'm adding a CTE to my...
Lowell
July 27, 2011 at 9:04 am
yeah, you should test drive mine first before you say it won't work....
whaty would you expect to be greater if you compare Version "10" to version '1.4.56.2344'?
if everytthing is 4...
Lowell
July 27, 2011 at 8:43 am
Joy the only way i thought to do this right was with a case statement...i ended up dumping it into a scalr function;
you can use this as an example and...
Lowell
July 27, 2011 at 8:16 am
Viewing 15 posts - 7,051 through 7,065 (of 13,460 total)