Viewing 15 posts - 106 through 120 (of 142 total)
something like this should work for you
DECLARE @Votes table ( VoteId int IDENTITY(1,1) NOT NULL,
Presenter char(3)NOT NULL,
...
October 13, 2007 at 5:55 am
SELECT CAST (0x000000000002F4CE AS DATETIME)
remove the single quote so it is recognized as binary and not text
October 9, 2007 at 10:31 am
you can change your us date to brit format by
convert(char(10), , 103)
or convert to us date using
convert(char(10), , 101)
October 8, 2007 at 10:34 am
select dateadd(ss, 47154, 0 )
ss being seconds
47154 being you time offset.
0 being a date of some sort (0 = 01-01-1900)
search bol for dateadd / convert and you should be able...
October 8, 2007 at 10:27 am
If you just wanted an empty database you could use dts / ssis to import the objects and not the data to a new database.
However, if you want your database...
September 28, 2007 at 5:05 am
check your ascii values. I have seen where spaces and dashes etc were saved with a different ascii value of what you enter to compare with. Though the values visually...
September 21, 2007 at 11:34 am
Some customers might not be a good fit for your business.
However, many organizations are structured such that the sales dept needs the sale to make their numbers. After the sale it becomes...
August 30, 2007 at 5:53 am
There is almost always a way to not use a cursor.
I have used cursors in rare instances to speed up performance when the set based solution of updating millions of...
August 15, 2007 at 10:56 am
you might want to try running profiler over the database to try to figure out what user / procedures are causing the blocking.
Then find out how the user is using...
August 15, 2007 at 10:37 am
If you have 1 connection for each spreadsheet (20)
1 connection for your server
20 transform data tasks (all filling the same table)
Right click on the Transform Data Task and select...
August 9, 2007 at 6:32 am
As Crispin said there are many ways to do this. Here is one.
CREATE TABLE #AppSettings
( SettingCode varchar(4) NOT NULL, SettingValues xml NOT NULL )
INSERT INTO #AppSettings
VALUES ( 'SEC',...
August 8, 2007 at 1:36 pm
Just as a note - In sql management studio 2008 (katmai) you could go to: Tools > Options > Scripting > and set the Script for Server version to 2000.
Script out...
July 24, 2007 at 3:12 pm
Sounds very similar to the process we are trying now.
Our next step will be to create a true "model" database and try some shema compare tool.
The drawback here being...
July 20, 2007 at 8:37 am
Viewing 15 posts - 106 through 120 (of 142 total)