Viewing 15 posts - 3,316 through 3,330 (of 14,953 total)
tim.hulse (9/19/2011)
GSquared (9/19/2011)
tim.hulse (9/19/2011)
kokila.kondasamy (3/23/2011)
Kindly find the sample code...hope this will help u...is there any better way of performing the delete operation, kindly let us know
Declare @count int
set @count...
September 20, 2011 at 6:28 am
SQLTestUser (9/19/2011)
This is what i am trying to do
whenever a product or products are made inactive on the company table i want to make that company...
September 20, 2011 at 6:24 am
In that sample data, what does this part mean?
1
WAL
K11-LMR
1
BS
491588S
2
BS
272653S
7
TEC
430173
1
ORE
97-121
1
LAB
2
1
LAB
1
How would you translate that into rows/columns?
September 20, 2011 at 6:14 am
Alternatively, are there a finite number of variations on the grading tables? If so, make one backup for each common variation.
September 20, 2011 at 6:08 am
tim.hulse (9/19/2011)
kokila.kondasamy (3/23/2011)
Kindly find the sample code...hope this will help u...is there any better way of performing the delete operation, kindly let us know
Declare @count int
set @count =0
while @count<=2000
begin
delete...
September 19, 2011 at 2:17 pm
Miles Neale (9/19/2011)
September 19, 2011 at 11:52 am
I'm not clear on what you're asking.
If you need to know if a trigger on Table A can do things (insert/update/delete) in Table B, then the answer is yes. ...
September 19, 2011 at 11:40 am
Wow. That's a complex way of doing this.
Considering all the overhead built into this, all based on the assumption you don't know what table the trigger is being built...
September 19, 2011 at 11:38 am
Will the objects and the metadata be the same in all of these databases?
If so, save yourself significant time and work, and create one copy of it, then do a...
September 19, 2011 at 11:31 am
Try adding a column like this:
alter table dbo.MyTable
add RID as 'R' + right('00000' + cast(ID as varchar(5)), 5);
You can probably index a column defined that way, if you want to.
September 19, 2011 at 11:28 am
Just to clarify:
Are you using SSIS (Integration Services) to try to import these files, or are you trying to do it via Access, or are you trying to do it...
September 19, 2011 at 11:24 am
sbentz 2061 (9/19/2011)
September 19, 2011 at 11:16 am
Will the letter be auto-generated and incremented? Will it be a meaningful value? (Half the point of an ID column is that it has no business meaning.)
Either way,...
September 19, 2011 at 9:25 am
Yes it is. If you take the DB offline or stop SQL you can edit it. Great for documenting the DB.
Editing the text file will not harm the DB...
September 19, 2011 at 8:27 am
Brandie Tarvin (9/19/2011)
GSquared (9/16/2011)
Brandie Tarvin (9/16/2011)
September 19, 2011 at 6:37 am
Viewing 15 posts - 3,316 through 3,330 (of 14,953 total)