Viewing 15 posts - 1,396 through 1,410 (of 1,999 total)
I have one question -
I posed a question on our technical tests for new DBA/Developers and I asked
"Name All Types of join you are aware of"
The question was deliberatly loosely...
August 14, 2009 at 2:38 am
apologies - i went from varchar(1) to varchar(2)
i'd had too much coffee
August 6, 2009 at 2:26 am
yes - my column was populated
i converted it from 'a' to 'bb' 39 million rows
August 6, 2009 at 2:24 am
if you are using management tools then this will be very slow as management studio will work on the principle of making this backwards compatible (to sql7 i think -...
August 5, 2009 at 9:48 am
you could do several things here
1st - disallow recursive triggers using
sp_configure 'nested triggers',0
but this might break other DB functionality
possibly i might suggest performing a check on the columns...
August 5, 2009 at 9:10 am
ok - let me be clear
the original post indicated that i wanted an Efficient method of getting the max value from Rown_number()
but the query inside the CTE/subquery may have...
July 27, 2009 at 6:31 am
lynn thanks - i will review this
but to note - changeing my original requirements??:-P LOL -
i think you'll find the original post said
"In this instance and send that back...
July 27, 2009 at 2:37 am
that's not really do-able for me
as i said, this might be a huge query with maybe 15 tables
so your example of
with PagedData as (
select
row_number() over...
July 24, 2009 at 9:39 am
ok - slight modification to my post
i can't supply it as an extra row in the result set - sorry
July 24, 2009 at 8:59 am
one additional thing that might make it easy (on top of the last post)
create a schema for your procs
set the schema as the new users default schema and grant permissions...
July 7, 2009 at 9:51 am
Karsten (7/7/2009)
I...
July 7, 2009 at 9:49 am
hold on - if they're linked servers then go to your target server, create a new login and then change the linked server login to use the new username and...
July 7, 2009 at 9:43 am
you can't script the login to the linked server - microsoft put a lovely feature in that strips out the password and replaces it with '########'
there are a few brute...
July 7, 2009 at 9:41 am
I've done loads of this and it could be any number of issues
when you're dealing with backups etc in 2008 (not sure about 2005) you'll need to make a credential...
July 7, 2009 at 9:30 am
you'll need to post your query and table structure for us to help you more.
i suspect your null values are being removed by aggregation, or if you have no entries...
July 7, 2009 at 9:26 am
Viewing 15 posts - 1,396 through 1,410 (of 1,999 total)