Viewing 15 posts - 3,211 through 3,225 (of 3,366 total)
This is what I thought you are looking for then I saw the previous replies so I left it alone, to apply equality in SQL...
May 1, 2006 at 8:21 am
Try the link below for a walk through. Hope this helps.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/howtosql/ht_7_design_5gvt.asp
Kind regards,
Gift Peddie
May 1, 2006 at 6:53 am
Yes you can install it without VS2003 but don't answer any question Windows ask you during the installation, only answer relevant questions. Hope this helps.
Kind regards,
Gift Peddie
May 1, 2006 at 5:43 am
Try the thread below and read the post from the other forum I posted because it depends on your write users. Hope this helps.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=223444#bm223994
Kind regards,
Gift Peddie
April 28, 2006 at 9:01 am
You have two problems when you import text SQL Server sees null values because of the nature of text so if you import into a table with primary key your import...
April 28, 2006 at 8:12 am
There is install SQL Server Agent with a service account with Admin permissions because when XP_CMDSHELL is running in the context of SQL Server Agent the Agent needs the same...
April 28, 2006 at 6:07 am
Try the link below read it before you plan your DDL (data definition langauge) because there are two time intervals in ANSI SQL Day/Time and Month/Year. If your end time...
April 27, 2006 at 1:49 pm
RPC(remote procedure call) I don't know why you need it in a stored proc is outside your network so you need XP_CMDSHELL with SQL Server Agent installed with service account running...
April 27, 2006 at 12:01 pm
In Enterprise Manager right click at the top and go to Server properties, then Network configurations and make sure you have enabled both Named Pipes and TCP/IP. Then go back...
April 27, 2006 at 9:05 am
Drop the statistics 'AssessorAbbr' before altering the table and recreate the statistics after the alter. Hope this helps.
Kind regards,
Gift Peddie
April 27, 2006 at 7:47 am
I guess we have to disagree because I gave you those solutions for schema change, long resource using code is usually not needed just get the create table statement and...
April 27, 2006 at 5:59 am
All information about indexes are in the sysindex table in every database, so you have some options Index tuning wizard, DBCC SHOW_STATISTICS (table_name , index_name), or just plain UPDATE STATISTICS...
April 26, 2006 at 1:22 pm
ANSI SQL expert Peter Gulutzan says when you create a Cursor a query processor says you have asked me to perform a task I am not equipped to do so...
April 26, 2006 at 7:11 am
I don't think the From clause is the reason for the error, it may be the where clause because technically a JOIN with a where clause is obsolete since...
April 26, 2006 at 7:00 am
I am not a novice, Database schema changes one word ALTER and save as .sql. If database diagramming is simple DDL (data definition langauge) writers will not earn very good living...
April 26, 2006 at 5:51 am
Viewing 15 posts - 3,211 through 3,225 (of 3,366 total)