Viewing 15 posts - 646 through 660 (of 680 total)
Have I been asleep at the wheel? I had never heard of Jumpstart TV. This looks like a great resource....
January 25, 2007 at 11:36 am
Just shooting in the dark here, but have you checked the file size of your data file? There is a finite limit on the file size of SSCE, and you...
January 25, 2007 at 11:30 am
Frank,
You have one comma too many within your parentheses:
, Year INT NOT NULL
,
)
Take out the last comma and you're good to go.
hth
Tim
January 25, 2007 at 11:22 am
If I read this correctly, you will actually need two queries - the first to pull the supplemental field names, and the second to pull legitimate data. I don't know...
January 25, 2007 at 8:13 am
I've asked the same question myself, but have never received clarification. Yes, you can install the client tools on another machine without installing SQL Server, but you might be out...
January 25, 2007 at 6:08 am
The full version of SQL Server Management Studio is bundled with all commercial versions of SQL Server 2005. The Express edition is a free download that can be used to...
January 24, 2007 at 6:45 pm
Your source file has column names AND valid data in the first line? How does that work?
January 24, 2007 at 7:33 am
When you use the OleDB provider for .NET and parameterized queries, you'll need to use a little different syntax than you would use directly in Access:
.SelectCommand="SELECT srno, userid, proname, descr,...
January 24, 2007 at 7:26 am
I agree with Lynn. Microsoft certifications have lost much of their value recently, and this is a good step toward making certification a legitimate barometer of one's skills. Though I...
January 23, 2007 at 9:41 pm
If you're moving from one database to another, remember to qualify your identifiers:
INSERT [db1].[dbo].[Table1] (my_column)
SELECT my_column FROM [db2].[dbo].[Table2]
January 23, 2007 at 9:15 pm
Hey Ryan,
I've never tried this, but I don't know of a reason that SSEE would not run side-by-side with SQL Server 7.0. If you have the 7.0 instance configured as...
January 23, 2007 at 9:03 pm
Good morning,
You shouldn't run into any problems using the SQL Server Management Studio to connect to a SQL Server 2000 database. However, your T-SQL capabilities are still limited to those...
January 23, 2007 at 7:43 am
I recently worked up a solution not unlike what you are describing. Essentially, I created a stored procedure that allows the user to pass a comma-separated list for each search parameter. ...
January 15, 2007 at 9:17 pm
Checkout http://forums.asp.net. It's a very busy forum site - it is moderated but the moderators are quick to process new posts. There are a lot of MVPs and Microsofties there,...
January 15, 2007 at 8:39 pm
I used to be one of those "cursor is a four-letter word" people - I avoided them at all costs. Recently though - call it experience or just getting soft...
January 15, 2007 at 8:04 am
Viewing 15 posts - 646 through 660 (of 680 total)