Viewing 15 posts - 196 through 210 (of 9,641 total)
MMartin1 (12/3/2015)
December 3, 2015 at 1:56 pm
Why are you returning results from a trigger? The ability to return results from triggers has been deprecated. From BOL:
Returning Results
The ability to return results from triggers will...
November 25, 2015 at 11:18 am
Do you have the linked server connections setup to "be made using the login's current security context"? If you do you likely are experiencing a double-hop authentication issue and...
November 24, 2015 at 6:49 pm
Yes that is how it should work. The first row is inserted successfully because it won't violate the PK and the next row with the same PK values will...
November 24, 2015 at 6:43 pm
The parameter "name" for OLE DB is the ordinal position of the parameter starting with 0.
So with 4 parameters you'd have parameter names, 0 through 4.
November 24, 2015 at 5:04 pm
One option, which I've used in the past, is to not use fast load. Then you can use the error output on your destination to process those rows however...
November 24, 2015 at 4:58 pm
Mad-Dog (11/24/2015)
ok..this is not what i'm looking for.
i need to see if a user is connected from 2 different hostname.
So
SELECT
DES.login_name,
COUNT(DISTINCT DES.host_name) as...
November 24, 2015 at 8:37 am
You shouldn't be using sys.sysprocesses anymore. You should be using the new DMO's sys.dm_exec_sessions and/or sys.dm_exec_connections depending on what you are looking at. I'm not sure what you...
November 24, 2015 at 7:34 am
itsgaurav (11/23/2015)
My connection string is this where
Data Source=Gaurav-Pc;Initial Catalog=AEX15;Integrated Security=False;User id=admin;Password=a
Server Name : Gaurav-Pc
database : AEX15
User Id on Sql server and database : admin
Password : a
But message...
November 24, 2015 at 7:21 am
One thing not mentioned yet, is that an uncommitted(open) transaction will also keep the transaction log from being truncated (marked for re-use) so the transaction log will continue to grow...
November 23, 2015 at 2:06 pm
Can you define "sequentially"? If it isn't processing the folders in parallel then technically it is processing them sequentially. I have to assume you want the folders to...
November 23, 2015 at 1:56 pm
You should be able to query the default trace for this information, as long as you look for it before the trace file that contains the information has been rolled...
November 23, 2015 at 1:51 pm
Can you post the connection string you are using for your application to connect to the SQL Server? It looks like you aren't providing a user name and password,...
November 23, 2015 at 1:35 pm
You can use perfmon counters to show what the network card(s) are handling. Like Current Bandwidth, Bytes Total/Sec, Output Queue Length, And Packets/Sec.
I've also just used Task...
November 23, 2015 at 1:31 pm
I don't know if you can start multiple installations at the same time, but I do know you can save quite a bit of time by slipstreaming your SP[/url] and/or...
November 23, 2015 at 1:20 pm
Viewing 15 posts - 196 through 210 (of 9,641 total)