Viewing 15 posts - 11,761 through 11,775 (of 13,460 total)
Matt that's interesting, i didn't know about WITH SCHEMABINDING to a function...
does the results have to come from a SELECT statement in order to be deterministic?
I'd assume that an IF...
Lowell
January 14, 2009 at 8:15 pm
I'm watching for better answers, but this is how i understand it:
suppose you had a table with every address in the united states...200 million or so.
any search is going to...
Lowell
January 14, 2009 at 9:43 am
i would not put the counter_id data in the table...instead i would make a view which had the value you were looking for:
[font="Courier New"]
SELECT Row_number() OVER (PARTITION BY x.chk_no ORDER...
Lowell
January 13, 2009 at 1:21 pm
I'd tripped over the same issue previously.
ok, really you only need to search columns that are of type varchar,char,nvarchar and ntext....you obviously wouldn't need to search a numeric field for...
Lowell
January 13, 2009 at 12:23 pm
truncation implies that x number of characters of a string are not being saved....that wouldn't happen to a number(int for example)
do you mean decimal information? the definition for your columns...
Lowell
January 9, 2009 at 6:17 am
i don't know if you'll find it;for the indexes on all the PK's and UQ indexes, you can find it because the creation date of the PK and it's index...
Lowell
January 8, 2009 at 9:30 pm
there is an example in this forum post which has my example:
creates a database and two example roles: one that can create and alter tables, and one that can just...
Lowell
January 8, 2009 at 9:13 pm
well first you need a proof of concept: can you find a char(0) in a field...actually, you don't need to search every column,
but rather every char, varchar, nchar and...
Lowell
January 8, 2009 at 9:01 pm
see the thread here:http://www.sqlservercentral.com/Forums/Topic326235-5-2.aspxit's got a complete explanation on the flags., as well as a code snippet to plug in your status and get the results.
Lowell
January 8, 2009 at 5:04 pm
as long as the logon exists, you could then add lots of users to the same logon. once the logon exists, you don't need to throw the password around...is that...
Lowell
January 7, 2009 at 3:47 pm
while you were in master, you should have added a login to the server, and then in your database, add a user to that login
here's a simple example, where I'm...
Lowell
January 7, 2009 at 2:30 pm
urgent? if you had read the chapter or listened to the lecture in class....
Lowell
January 7, 2009 at 1:56 pm
in SQL 2000, after the fact, most likely you cannot find out.
if you had profiler running a trace, you can go to the profile....but unless you set it up and...
Lowell
January 7, 2009 at 10:50 am
So as Administrator, it can access the folder with Read/Write permissions, but as it's normal domain rights it can't...I think it goes back to Security permissions on the Folder.
If the...
Lowell
January 7, 2009 at 6:57 am
you need to track changes in the TEMPDB? maybe you mentioned the wrong db?
Are you sure you need to do that? all the tables would get dropped at the...
Lowell
January 6, 2009 at 10:57 am
Viewing 15 posts - 11,761 through 11,775 (of 13,460 total)