Viewing 15 posts - 61 through 75 (of 178 total)
heh he... I know that feeling, I'm currently hiding out on scc from a overdue web project... I tried to convince myself that I needed to brush up on dynamic...
August 1, 2009 at 9:21 am
Thanks for the information on this type of database design 🙂
Here's the dynamic version:
USE tempdb
IF OBJECT_ID('#sample') IS NOT NULL
DROP TABLE #sample
CREATE TABLE #sample (empid int, attribute...
August 1, 2009 at 9:10 am
Hi there,
I would use a dynamic cross-tab query for this, but I don't see where EMPID is coming from. Can you provide some sample data for this also?
Also, I...
August 1, 2009 at 7:01 am
They are two articles I go back to most often here Jeff, thank you.
///Edit - really off-topic, but it would probably be one I would end up constantly referencing -...
August 1, 2009 at 2:25 am
Jack Corbett (7/31/2009)
Alvin Ramard (7/31/2009)
Allister Reid (7/31/2009)
Here's one for you http://www.sqlservercentral.com/Forums/FindPost763350.aspx, wrong in so many ways I am totally stumped for any response!It boggles the mind, eh?
I provided an answer,...
August 1, 2009 at 2:00 am
I was suggesting making a temporary database with just table with images in it, backing up this database to a .bak file, transferring the bak file (over network/dvd/however) to the...
July 31, 2009 at 5:29 pm
How about (something like)..
On source server:
CREATE DATABASE TempTransfer
CREATE TABLE TempTransfer.dbo.DataToTransfer (ID, ImageBlob)
INSERT INTO TempTransfer.DataToTransfer
SELECT ID, ImageBlob FROM SOURCE
BACKUP DATABASE TempTransfer TO DISK 'C:\TempTransfer.bak'
On destination server:
RESTORE DATABASE TempTransfer FROM DISK...
July 31, 2009 at 4:59 pm
And you can't do a INSERT INTO StagingTable SELECT FROM SourceTable?
July 31, 2009 at 4:01 pm
Hi,
What are you trying to achieve? Has the data to be transferred to another system?
July 31, 2009 at 3:47 pm
Here's one for you http://www.sqlservercentral.com/Forums/FindPost763350.aspx, wrong in so many ways I am totally stumped for any response!
July 31, 2009 at 1:38 pm
Does the database in question have foreign key constraints set up?
July 31, 2009 at 11:10 am
Hi,
here is a solution that relies on a tally table http://www.sqlservercentral.com/articles/T-SQL/62867/ and is based upon the code in http://www.sqlservercentral.com/articles/Crosstab/65048/, these are two excellent articles, and I recommend them both highly,...
July 31, 2009 at 8:01 am
I think you may be better looking at Fulltext indexing for this problem. This will improve performance of searches and give you built in thesauraus, inflectional and word splitting...
July 31, 2009 at 4:12 am
c.vaibhav (7/30/2009)
extra information..the two tables that I am talking about are not physically present but they are created using a select statement..
Thanks..
Vaibhav
Yeah, I guessed that, I think you have only...
July 30, 2009 at 4:28 am
Wow, that was a fast response! Did you have a chance to read the article I referenced above?
Any chance of getting sample data and ddl (create table and insert statements)...
July 30, 2009 at 4:27 am
Viewing 15 posts - 61 through 75 (of 178 total)