Viewing 15 posts - 10,966 through 10,980 (of 15,381 total)
lallu_jaya (8/22/2012)
temp_id, temp_test_id, temp_status
1 2 ...
August 22, 2012 at 2:22 pm
Holy cow!!! You have 9 points and your post was absolutely perfect!!! It included all the ddl, sample data, desired output, a clear explanation of what you wanted. I wish...
August 22, 2012 at 1:56 pm
Lynn Pettis (8/22/2012)
Evil Kraig F (8/22/2012)
Lynn Pettis (8/22/2012)
August 22, 2012 at 1:36 pm
sqlfriends (8/22/2012)
In the long sql, here is a part...
August 22, 2012 at 1:28 pm
mishka-723908 (8/22/2012)
I understand and completely agree, but are there any other options? I dont see any but just add a column in the future when necessary.
Yes that would be better....
August 22, 2012 at 12:45 pm
salliven (8/22/2012)
Sorry, I said wrongly.I want to catch all request witch refer to my database.
These requests from another database:
select * from mydatabase.schema.tables
execute mydatabase.schema.procedures
etc,
These requests from my database:
All request
Thanks
There is one...
August 22, 2012 at 11:14 am
salliven (8/22/2012)
I think you can include "dbid" column on profiler - it should tell you from where the query is being executed.
I don't know what database is runing the query...
August 22, 2012 at 9:09 am
salliven (8/22/2012)
How to catch a query from an another database (example from profiler)?
-- Example:
USE [master] -- or another database
GO
-- How to catch this query on the SQL server?
SELECT name, database_id...
August 22, 2012 at 8:54 am
Ankur Bajaj (8/22/2012)
Cheers!
SELECT 'CREATE VIEW ' + TABLE_SCHEMA + '.vw_' + TABLE_NAME + '...
August 22, 2012 at 8:51 am
duplicate thread. Please direct all replies here. http://www.sqlservercentral.com/Forums/Topic1348317-392-1.aspx
August 22, 2012 at 7:40 am
rahul_yerramareddy (8/22/2012)
Please find below detailed explanation.
We have two domaind DOM1 and DOM2. Our Central server is in DOM1.Users have local servers either in dom1 or dom2.
If users from DOM1...
August 22, 2012 at 7:29 am
jfriedl (8/21/2012)
August 21, 2012 at 3:23 pm
newbieuser (8/21/2012)
THanks so much for your quick response... I really appreciate it. I tried a few different variations with your example, I think I'm pretty close but not...
August 21, 2012 at 2:55 pm
newbieuser (8/21/2012)
CREATE procedure temp
as
BEGIN
...
August 21, 2012 at 1:00 pm
Something like this.
create table #table1 (employeeID int)
create table #table2 (employeeID int)
insert #table1
select 1 union all
select 2 union all
select 3 union all
select 4 union all
select 5 union all
select 6
insert #table2
select...
August 21, 2012 at 11:24 am
Viewing 15 posts - 10,966 through 10,980 (of 15,381 total)