Viewing 15 posts - 8,371 through 8,385 (of 13,469 total)
When Starship Troopers first came out, I wanted to see it, since i had read the book a long time ago...
took my kids to see it when they were 8...
November 29, 2010 at 11:49 am
here is a simple model that might help: take a look a this thread on a similar subject, where limits were needed to prevent connections from anywhere but the "right"...
November 29, 2010 at 11:34 am
it seems to me that unless you want the name and phone number fields to be null, you have to join to another table (by ID?) to get those other...
November 29, 2010 at 6:15 am
himabindu020 (11/29/2010)
[font="Times New Roman"][/font]
The original poster says he has installed SQL server, but cannot connect via SQL Server Management Studio. He also wants to learn BI, but is just getting...
November 29, 2010 at 6:05 am
Please don't crosspost. It just wastes people's time and fragments replies.
(cross posting is asking the same question multiple times in different forums)
By checking Recent Posts>>Posts Added Today
other forum...
November 29, 2010 at 6:01 am
Not enough information, my friend; remember we can't see the query that you are refering in your question...you'll need to show us the query you started with, so we can...
November 29, 2010 at 5:56 am
I have this snippets saved which might help; it's using a pair of loops table to strip out any comments , so you can then search just the remaining proc...
November 28, 2010 at 12:05 pm
it depends on the source.
any SQL statement that features a FROM Clause can optionally have an INTO NEWTABLENAME in it.
so the trick is to wrap BULK INSERT so it has...
November 25, 2010 at 6:20 am
can you create a couple of views that selects from each of the linked tables, and then grant the AD group select on the view?
that's how I've done it in...
November 25, 2010 at 5:10 am
each destination table needs a separate insert command... so you'll use a WHERE statement to select/filter what goes to each server, instead of a case statement
case statement in SQL is...
November 25, 2010 at 4:56 am
is that characters 10 thru 20 of the whole file, or 10 thru 20 for each row/line in the file? so if the file has 120 lines, you need a...
November 25, 2010 at 4:30 am
well, here's a simple procedure that will return a table with the definitions of just the view/proc/function objects that begin with "KLL" in the correct dependancy order.
you could then...
November 24, 2010 at 9:05 am
i think you want something more like this: the field cannot be trimmed to equal whitespace, and must have at least a letter or number in it
ALTER TABLE [dbo].[IntNotes] WITH...
November 24, 2010 at 6:43 am
Synonyms might fit the task at hand, but a synonym points to an object, not a part of a name.
for example, say your proc is looking for a specific 3...
November 24, 2010 at 5:47 am
Viewing 15 posts - 8,371 through 8,385 (of 13,469 total)