Viewing 15 posts - 421 through 435 (of 548 total)
What kind of book is this? If it presents a query like this without a detailed description of the table and some sample data it is impossible understand what it...
February 12, 2007 at 10:54 am
johnsql,
I thought Sergiy was pretty helpful. He saved you a trip to BOL by saying that JOIN is the same as INNER JOIN. In fact, BOL shows [INNER] JOIN which...
February 12, 2007 at 3:43 am
I developed a very simple empirical approach for one of my clients.
It consisted of a Windows scheduled task which fires up from one server (not the SQL Server)
every even hour...
February 12, 2007 at 3:02 am
What a waste to fire a trigger when nothing has really happened. What could you possibly want to do? You have pretty much no information to do anything with.
February 9, 2007 at 12:10 am
Why feel 'vulnerable' when posting real code? Vulnerable to what? Without being cynical, show me an example.
February 8, 2007 at 12:03 am
To automatically get the dbo prefix when creating a table, the login must not be a user of the database. You must also use a system administrator login and run...
February 7, 2007 at 12:32 am
Without your DDL there will not be much forthcoming.
My best guess, about the parameter not working is that in the example above you use a nice clean date (without a...
February 5, 2007 at 12:20 am
I have read this post 3 times now and still don't understand what a fiscal period is.
Must be too early in the morning.
And why no subqueries?
February 1, 2007 at 11:56 pm
I have never 'ripped up' a blob like you want to do. I would stay away from doing
this in a stored procedure - as it would be very slow. Neither...
February 1, 2007 at 5:20 am
So you have
null fid1 fid2 fid3 ...
date1 val11 val12 val13 ...
date2 val21 val22 val23 ...
date3 val31 val32 val33 ...
. . . .
. . . .
. . . .
I presume...
February 1, 2007 at 4:05 am
You need to have a better idea of that 1000x700 matrix. Besides the dimensions changing you need to ask yourself:
How sparse is it?
How many entries change between one day...
January 31, 2007 at 12:58 pm
My eyes pop up whenever my where clause uses an OR. It can be a real performance killer.
January 31, 2007 at 12:51 pm
This works: 'select * from [sheet1$]'
This doesn't work: 'select * from sheet1'
This doesn't work: 'select * from [sheet 1$]'
Neither does this: 'select * from [sheet$1]'
Using the true name of the...
January 31, 2007 at 6:15 am
BOL (SQL Server 2000) states that the last parameter of OPENROWSET is 'query'.
But the only example for Excel demonstrates that the last parameter must be a named range (without quotes). And...
January 31, 2007 at 4:56 am
Just a question. Looking at your syntax where it says [Sheet 1$], is this the way to refer to an entiry sheet? If so, is it the name of the...
January 31, 2007 at 1:19 am
Viewing 15 posts - 421 through 435 (of 548 total)