Viewing 15 posts - 1,396 through 1,410 (of 1,995 total)
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
What kind of infrastructure exists between the user and the server?
I suspect if they are on different networks then you are going to have to use VPN or FTP to...
July 7, 2009 at 8:43 am
they all have pros and con's -
idera sql diagnostic manager tends to be a little flaky and actually consumes a fair amount of CPU from the sql box with the...
July 7, 2009 at 8:29 am
can you post what you are attempting to do. add a subscription? add an article?
if you have renamed your server then you also need to let sql server know
if...
July 7, 2009 at 8:25 am
seems to me you might be better creating a view on your sql server and then let your application read from the view
that way you get some decent sql that...
July 7, 2009 at 8:20 am
Viewing 15 posts - 1,396 through 1,410 (of 1,995 total)