Viewing 15 posts - 706 through 720 (of 1,346 total)
It will help in the fact that the indexes you build on each table will be smaller.
But will mainly help if you query by the item you separate the tables...
December 1, 2005 at 10:26 am
November 28, 2005 at 9:32 am
Try
strSelect = "Select * From DocTable1 Where " & @fieldname & " = @text"
November 25, 2005 at 4:10 pm
Does your problem seem to resolve after a server reboot?, or just a sql server service stop and start?
In any case it sounds like you have found the shotgun approach...
November 22, 2005 at 4:33 pm
Small.
For a couple reasons, Isolates code so if there is an error it will be in a single smaller procedure.
Re Use, you can reuse smaller insert/update procedures as singles in...
November 17, 2005 at 2:43 pm
Unfortunatelly you have to perform a union
Select 'First Name' as FieldName, FirstName as Value
From mytable
where id = 1
union
Select 'Last Name', LastName
From mytable
where id = 1
Select 'Gender', Gender
From mytable
where id =...
November 17, 2005 at 2:37 pm
Who is this someone?
And does this someone know that the case statement is the most effective way to implement this?
What does this someone Propose you do instead?
You have the solution,...
November 16, 2005 at 12:43 pm
1) Do I need a developer edition for each computer to use client tools to access the SQL servers with standard edition?
No, Client tools do not require a license. and...
November 15, 2005 at 10:44 am
Look in sql server books online for "Image" Data type
or follow a similar post
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=236476
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/acdata/ac_8_qd_13_8orl.asp
November 12, 2005 at 1:02 pm
WHy is there an issue with having gaps in your student id?
You are creating a ton of additional logic and time keeping the numbers contiguous.
Note: Sql server does not "care"...
November 11, 2005 at 4:19 pm
Look up Text datatype in books online, they are different data types and take additional design and management requirements.
From books online about text:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/acdata/ac_8_qd_13_8orl.asp
I would pass the file information in...
November 11, 2005 at 2:30 pm
November 11, 2005 at 2:26 pm
are there any Null Values?
Select * from po_shipment where container is NULL
November 10, 2005 at 4:25 pm
Sure, just apply a default to the parameter
Create procedure myprocedure @var1 int, @var2 int = 0
as
if @var2 <> 0
begin
Do something
end
Else
Begin
Do something else.
End
For this procedure to execute you Must...
November 10, 2005 at 4:23 pm
Viewing 15 posts - 706 through 720 (of 1,346 total)