Viewing 15 posts - 11,476 through 11,490 (of 13,469 total)
i just had a very similar question in a different thread...it was to scan all columns in a table where for all three search terms occurs
basically, i just did a...
March 6, 2009 at 8:10 pm
Narayana Vyas Kondreddi wrote a really good proc over at http://vyaskn.tripod.com called sp_generate_inserts, which dumps the table's contents out to INSERT statements.
i use it all the time and have used...
March 5, 2009 at 6:53 pm
i don't think replication is a single setting...you can have different replications going for each database...and i think you can have different replication types going on even a single database...you...
March 5, 2009 at 6:46 pm
just a syntax error...you left out the FROM! if you are going to update one table from another, you have to include that table in the from statement:
UPDATE HouseKeeping
...
March 5, 2009 at 6:21 pm
sorry if my post bothered you dev, we get a lot of new posters who ask for help on their homework, without putting any effort in themselves.
For your issue, I've...
March 5, 2009 at 6:23 am
interesting...
there must be a business reason why you are going thru each file, instead of just using the last backup...You basically need the history of changes(if any) between backups, right?
this...
March 5, 2009 at 5:18 am
your example shows 4 columns, none of which intuitively seem to be the PK...
Is the PK of each table ALWAYS an identity field, or is always the first column of...
March 4, 2009 at 6:07 pm
pretty much every db reporting tool out there...from freebies written in Delphi , to crystal reports, etc, all have an RTF object that you just point to the field in...
March 4, 2009 at 3:12 pm
typically, you might pass a comma delimited string to the procedure, and the proc then uses one of the many SPLIT functions in the Scripts section here on SSC to...
March 4, 2009 at 11:25 am
for varchar strings, the = comparison operator strips out ending whitespace.
that is different fromt eh LIKE operator...if you do LIKE 'phrase %', that would not find the item because of...
March 4, 2009 at 11:17 am
compatibility level just decides which syntax rules will be applied against any queries hitting the database...it does not change the behind-the-scenes way the database is stored/saved.
that's why you can switch...
March 4, 2009 at 11:12 am
all minor syntax stuff; i found three things:
the higher case statement for a.staff said case a.staff andf then had WHEN a.staff...; should be one syntax or the other...
second...
March 4, 2009 at 8:22 am
it'd be something like this:
--kick everyone off no matter what!
ALTER DATABASE [YOURDATABASENAME] SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
--make sure it's really just for me
ALTER DATABASE [YOURDATABASENAME] SET SINGLE_USER
GO
--do...
March 4, 2009 at 7:16 am
your question reads like it came straight from a problem in a textbook...telling us what the required results are...are we doing your homework?
what have you tried so far?
I can tell...
March 4, 2009 at 7:07 am
i'd just set the database to single user mode, do my work, and then change it back to multi user;
no fiddling with groups, and you'll know you are the only...
March 3, 2009 at 6:19 pm
Viewing 15 posts - 11,476 through 11,490 (of 13,469 total)