Viewing 15 posts - 166 through 180 (of 2,612 total)
I have also done this in T-SQL generators. It can make things simpler to have an expectation of a WHERE clause on every query.
January 9, 2009 at 12:49 pm
GilaMonster (1/9/2009)
Hmmm.http://www.sqlservercentral.com/Forums/Topic633720-338-1.aspx
I like how the OP re-stated the same non-question. Perhaps it should have been in bold the second time.
January 9, 2009 at 12:45 pm
Dugi - your query looks for tables without an entry in key_constraints - so a heap with no constraints will appear. However, you can have key constraints without an...
January 9, 2009 at 8:21 am
Sure, but try this:
[font="Courier New"]CREATE TABLE MyTable (ID INT)
GO
CREATE CLUSTERED INDEX idxMyTable_CL_ID ON MyTable(ID)
GO
CREATE NONCLUSTERED INDEX idxMyTable_ID ON MyTable(ID)
GO
SELECT c.name, b.name
FROM sys.tables b
INNER JOIN sys.schemas c ON b.schema_id...
January 9, 2009 at 7:54 am
Have to give Lowell some credit in his attempt to figure out what the question might be.
We could start a game show - someone mumbles something related to a question...
January 9, 2009 at 6:47 am
And another great forum "question"...
http://www.sqlservercentral.com/Forums/Topic633285-149-1.aspx?
January 9, 2009 at 6:31 am
manojshyam (1/9/2009)
Values from same logic are truncates in 2005 but are not truncated in 2000
Do you have a question, or is this just a statement?
January 9, 2009 at 6:31 am
Grant Fritchey (1/9/2009)
January 9, 2009 at 5:46 am
Dugi (1/9/2009)
SELECT c.name, b.name
FROM sys.tables b
INNER JOIN sys.schemas c ON b.schema_id = c.schema_id
WHERE b.type...
January 9, 2009 at 5:42 am
Probably best posted in a C# forum.
If EOF and BOF are both true, you have a dataset with no rows.
January 8, 2009 at 8:20 am
In BIDS, when you created the cube you had to create at least one dsv (data source view) that is basically a collection of queries against your data source(s) and...
January 8, 2009 at 7:47 am
You have to use individual logins for your linked server. You can make two logins on ServerB and from the GUI for the linked server, you can map users...
January 8, 2009 at 7:41 am
That old join syntax you are using (table names separated by commas in the FROM and the join fields in the WHERE) is really old. Switch to the new...
January 8, 2009 at 6:18 am
First, here are some tips for posting. Most people don't like to have to write all of the insert scripts to generate test data - spend the time to...
January 8, 2009 at 6:16 am
Binary large object data would typically end up in an image, text or ntext field. varchar(max) and nvarchar(max) are also capable of holding large amounts of data. For...
January 8, 2009 at 5:37 am
Viewing 15 posts - 166 through 180 (of 2,612 total)