Viewing 15 posts - 5,956 through 5,970 (of 13,468 total)
ok i ran your command, and i have a trace up and running...it is not stopped for me.
i had to change the path from c:\MyTrace\ to a folder for me...
February 10, 2012 at 8:52 am
i think that last command is missing the variable:
exec sp_trace_setstatus TRACEID, 1 --start trace
--should be
exec sp_trace_setstatus @TraceID, 1 --start trace
February 9, 2012 at 5:12 pm
ok, i think i see what you mean.
correct me if I'm misunderstanding the question please.
The default behavior is to create a user witht eh same name as a login.
so for...
February 9, 2012 at 8:16 am
Lowell (2/8/2012)
if you can provide sample tables and data that truly emulates the situation, we can help further.
the key there was emulates what you are trying to do, not necessarily...
February 8, 2012 at 1:28 pm
this is where regular expressions will help out;
can you install a CLR on your server to let you do regular expressions?
converting a string is a two part process, I...
February 8, 2012 at 12:24 pm
you probably need to partition by customer number + upc or invoice_number + upc instead...it completely depends on your specific data. based on what i was able to derive,...
February 8, 2012 at 11:30 am
you cannot remove the public role, it's built in and required. everyone is part of the public role.
what you can do is never grant any permissions to that role. so...
February 8, 2012 at 10:09 am
notice how i provided all the code you might need to test the solution? if you can do the same, by providing either CTE or CREATE TABLE...INSERT INTO statements, you'll...
February 8, 2012 at 10:05 am
sj999 (2/8/2012)
I want to find all customer IDs that have txn type AB occurring within 24 hours of txn type CD for that customer for the years 2010 and 2011....
February 8, 2012 at 5:35 am
shah.simmy (2/7/2012)
if two tabel has two same schema,but not primary - foreign relation,i want to identify matching record from both table.how can i do it,i cant use join thre
a foreign...
February 7, 2012 at 7:34 pm
linqpad is something i always carry in my portable apps flash drive;
it's got multiple query window/tabs, syntax highlighting as well as an object explorer and ability to run/test...
February 7, 2012 at 6:51 pm
you skipped over the reason i stated previously. slow down and read a little deeper.
there are TWO instances of SQL on the server.
the default instance, which is already using...
February 7, 2012 at 2:49 pm
you cannot. simply reset the password to a new known value.
Copy
ALTER LOGIN Mary5 WITH PASSWORD = '<enterStrongPasswordHere>';
February 7, 2012 at 2:19 pm
the screenshot you posted showed port 1433, which is wrong. it cannot be 1433,
choose another port.
i personally like 14330., but that's me.
February 7, 2012 at 2:17 pm
Laura as I remember it, it mostly depends on the error level that gets raised.
anything 16 or above, like foreign key violations, constraint violations, etc cannot be handled in...
February 7, 2012 at 1:45 pm
Viewing 15 posts - 5,956 through 5,970 (of 13,468 total)